/* ========================6ª FPSS 2027==========================
   HERO.CSS LIMPO • 6ª FPSS 2027
================================================== */

/* ==================================================
   HERO DESKTOP
================================================== */

.hero-master{
    width:100%;
    padding:34px 20px 18px;
    display:flex;
    justify-content:center;
}

.hero-grid{
    width:100%;
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr;

    gap:40px;
}

.hero-left{
    width:100%;
    max-width:1280px;

    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;
}

.hero-left h2{
    font-size:clamp(34px,5vw,58px);
    line-height:1.02;
    font-weight:900;
    color:#7a0000;
    margin-bottom:18px;
    letter-spacing:-1.8px;
    max-width:900px;
}

.hero-left p{
    font-size:18px;
    line-height:1.75;
    color:#4b5563;
    margin-bottom:28px;
    max-width:760px;
    text-align:center;
}

/* ==================================================
   CONTADOR DESKTOP
================================================== */

.countdown-container{
    max-width:680px;
    width:100%;
    margin:30px auto;
    padding:22px;
    border-radius:20px;
    background:#f8f8f8;
    border:1px solid #ececec;
}

.countdown-label{
    display:block;
    text-align:center;
    margin-bottom:14px;
    font-size:14px;
    font-weight:800;
    color:#a16207;
    letter-spacing:.5px;
}

.countdown-timer{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:nowrap;
}

.time-block{
    width:110px;
    min-height:110px;
    background:#ffffff;
    border-radius:16px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.time-block span{
    font-size:52px;
    font-weight:900;
    color:#8b1111;
    line-height:1;
}

.time-block p{
    margin-top:8px;
    font-size:15px;
    color:#555;
    font-weight:600;
}

/* ==================================================
   BOTÕES HERO
================================================== */

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-top:16px;
}

.hero-actions .btn{
    min-height:52px;
    padding:14px 24px;
    border-radius:12px;
    font-size:15px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width:768px){

/* HERO */

.hero-master{
    padding:10px 14px 18px;
}

.hero-grid{
    gap:20px;
}

.hero-left{
    max-width:100%;
    padding:0;
}

.hero-left h2{
    font-size:clamp(26px,8vw,38px);
    line-height:1.08;
    margin-bottom:14px;
    letter-spacing:-1.2px;
}

.hero-left p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:18px;
    max-width:100%;
}

/* CONTADOR */

.countdown-container{
    width:100%;
    padding:16px 12px;
    border-radius:18px;
    margin:12px auto;
}

.countdown-label{
    font-size:12px;
    margin-bottom:10px;
}

.countdown-timer{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.time-block{
    width:100%;
    min-height:78px;
    border-radius:12px;
    padding:10px 4px;
}

.time-block span{
    font-size:28px;
}

.time-block p{
    font-size:11px;
    margin-top:6px;
}

/* BOTÕES */

.hero-actions{
    flex-direction:column;
    width:100%;
    gap:10px;
    margin-top:14px;
}

.hero-actions .btn{
    width:100%;
    min-height:48px;
    font-size:14px;
    padding:13px 16px;
    border-radius:12px;
}

}

/* ==================================================
   HERO DESKTOP SCALE
================================================== */

@media (min-width:1200px){

.hero-master{
    padding:70px 0 40px;
}

.hero-master h1{
    font-size:72px;
    line-height:1.05;
    max-width:1100px;
    margin:auto;
}

.hero-master p{
    font-size:28px;
    max-width:950px;
    margin:25px auto;
}

.countdown-container{
    max-width:900px;
    margin:45px auto;
}

.countdown-timer{
    justify-content:center;
    gap:25px;
}

.time-block{
    width:160px;
    height:160px;
}

.time-block span{
    font-size:68px;
}

.time-label{
    font-size:22px;
}

}

/* ==================================================
   BOTÕES HERO • CTA
================================================== */

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

    margin-top:34px;
}

/* =========================================
   CARTELA
========================================= */

.btn-cartela{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:290px;

    padding:18px 28px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #8b1111 0%,
    #c61f1f 100%
    );

    color:#fff !important;

    font-size:16px;
    font-weight:900;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.4px;

    box-shadow:
    0 14px 34px rgba(139,17,17,.24);

    transition:.25s ease;

    position:relative;

    overflow:hidden;
}

.btn-cartela:hover{
    transform:
    translateY(-4px)
    scale(1.03);

    box-shadow:
    0 22px 42px rgba(139,17,17,.34);

    filter:brightness(1.04);
}

/* =========================================
   CAMISETA
========================================= */

.btn-camiseta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-width:290px;

    padding:18px 28px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #16a34a 0%,
    #22c55e 100%
    );

    color:#fff !important;

    font-size:16px;
    font-weight:900;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.4px;

    box-shadow:
    0 14px 34px rgba(34,197,94,.24);

    transition:.25s ease;

    position:relative;

    overflow:hidden;
}

.btn-camiseta:hover{
    transform:
    translateY(-4px)
    scale(1.03);

    box-shadow:
    0 22px 42px rgba(34,197,94,.34);

    filter:brightness(1.04);
}

/* =========================================
   BRILHO
========================================= */

.btn-cartela::before,
.btn-camiseta::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:90%;
    height:100%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
    );

    transition:.7s;
}

.btn-cartela:hover::before,
.btn-camiseta:hover::before{
    left:130%;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){

.hero-buttons{
    gap:12px;
}

.btn-cartela,
.btn-camiseta{
    width:100%;

    min-width:0;

    padding:15px 18px;

    font-size:14px;

    border-radius:14px;
}

}

/* ==================================================
   HERO CINEMATOGRÁFICO
================================================== */

.hero-master{
    position:relative;
    overflow:hidden;
    padding:90px 0 70px;
    min-height:760px;
    display:flex;
    align-items:center;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.58) 45%,
        rgba(0,0,0,.72) 100%
    );
    z-index:2;
}

.hero-master .wrap{
    position:relative;
    z-index:5;
}

.hero-grid-novo{
    display:grid;
    grid-template-columns:1.1fr .85fr;
    gap:50px;
    align-items:center;
}

/* ESQUERDA */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.hero-left h2{
    font-size:72px;
    line-height:.95;
    font-weight:900;
    color:#fff;
    margin-bottom:24px;
    text-transform:uppercase;
    max-width:760px;
}

.hero-left h2 span{
    color:#ffd54f;
    display:block;
}

.hero-description{
    color:rgba(255,255,255,.88);
    font-size:22px;
    line-height:1.7;
    max-width:700px;
    margin-bottom:34px;
}

/* MINI INFOS */

.hero-mini-infos{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:36px;
}

.mini-info-card{
    padding:14px 20px;
    border-radius:14px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(10px);
    color:#fff;
    font-weight:700;
    font-size:14px;
}

/* BOTÕES */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-cartela,
.btn-camiseta{
    padding:18px 34px;
    border-radius:16px;
    font-size:15px;
    font-weight:900;
    text-decoration:none;
    transition:.25s;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.btn-cartela{
    background:linear-gradient(135deg,#b80f0f,#7f0000);
    color:#fff;
}

.btn-camiseta{
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:#fff;
}

.btn-cartela:hover,
.btn-camiseta:hover{
    transform:translateY(-5px) scale(1.03);
}

/* DIREITA */

.hero-right{
    display:flex;
    flex-direction:column;
    gap:26px;
}

/* COUNTDOWN */

.countdown-container{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    border-radius:28px;
    padding:30px;
}

.countdown-label{
    display:block;
    color:#ffd54f;
    font-size:15px;
    font-weight:800;
    margin-bottom:20px;
    text-align:center;
}

.countdown-timer{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.time-block{
    background:#fff;
    border-radius:18px;
    padding:20px 10px;
    text-align:center;
}

.time-block span{
    display:block;
    font-size:54px;
    line-height:1;
    font-weight:900;
    color:#8b1111;
}

.time-block p{
    margin-top:10px;
    font-size:20px;
    font-weight:700;
    color:#374151;
}

/* SHOW */

.show-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.14);
    backdrop-filter:blur(14px);
    border-radius:28px;
    padding:28px;
    text-align:center;
}

.show-top{
    display:inline-block;
    background:#ffd54f;
    color:#000;
    font-weight:900;
    font-size:12px;
    padding:8px 14px;
    border-radius:999px;
    margin-bottom:18px;
}

.show-dupla{
    width:100%;
    max-width:380px;
    object-fit:contain;
    margin:0 auto 18px;
    display:block;
    filter:drop-shadow(0 18px 30px rgba(0,0,0,.35));
}

.show-card h3{
    color:#fff;
    font-size:34px;
    margin-bottom:12px;
}

.show-card p{
    color:rgba(255,255,255,.82);
    line-height:1.6;
}

/* MOBILE */

@media (max-width:991px){

.hero-master{
    min-height:auto;
    padding:80px 0 50px;
}

.hero-grid-novo{
    grid-template-columns:1fr;
}

.hero-left h2{
    font-size:44px;
}

.hero-description{
    font-size:18px;
}

.countdown-timer{
    grid-template-columns:repeat(2,1fr);
}

.time-block span{
    font-size:42px;
}

}

/* ========================================
   HERO CINEMATOGRÁFICO REAL
======================================== */

.hero-master::before{
    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top left,
        rgba(255,196,0,.22),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(255,0,0,.18),
        transparent 35%
    );

    z-index:3;

    pointer-events:none;
}

/* VÍDEO */

.hero-video{
    filter:
    brightness(.48)
    saturate(1.15)
    contrast(1.08);

    transform:scale(1.03);
}

/* OVERLAY */

.hero-overlay{
    background:
    linear-gradient(
        90deg,
        rgba(8,0,0,.92) 0%,
        rgba(8,0,0,.72) 40%,
        rgba(8,0,0,.50) 100%
    );
}

/* TÍTULO CINEMA */

.hero-left h2{
    text-shadow:
    0 8px 35px rgba(0,0,0,.55);

    letter-spacing:-2px;
}

/* GLOW DOURADO */

.hero-left h2 span{
    color:#ffd54f;

    text-shadow:
    0 0 22px rgba(255,213,79,.45);
}

/* CARD FLUTUANTE */

.countdown-container,
.show-card{

    box-shadow:
    0 30px 70px rgba(0,0,0,.38);

    border:
    1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);
}

/* HOVER BOTÕES */

.btn-cartela,
.btn-camiseta{

    position:relative;
    overflow:hidden;
}

.btn-cartela::before,
.btn-camiseta::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:70%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.32),
        transparent
    );

    transition:.8s;
}

.btn-cartela:hover::before,
.btn-camiseta:hover::before{
    left:130%;
}

/* MINI CARDS */

.mini-info-card{

    transition:.3s;
}

.mini-info-card:hover{

    transform:
    translateY(-4px);

    background:
    rgba(255,255,255,.18);
}

/* FLOAT SUAVE */

.show-card{
    animation:
    floatHero 5s ease-in-out infinite;
}

@keyframes floatHero{

0%{
    transform:translateY(0px);
}

50%{
    transform:translateY(-8px);
}

100%{
    transform:translateY(0px);
}

}