*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:var(--font-body);
    -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 24px;
}

/* ---------- Header ---------- */
.site-header{
    padding:28px 0 20px;
}
.site-header .container{
    display:flex;
    align-items:center;
    gap:24px;
}
.brand-mark{
    display:flex;
    align-items:center;
    gap:12px;
    white-space:nowrap;
}
.brand-mark .brand-logo{
    height:26px;
    width:auto;
    display:block;
}
.brand-mark .brand-sub{
    font-size:.82rem;
    color:var(--text-soft);
    padding-left:12px;
    border-left:1px solid var(--border);
}
.site-header .rule{
    flex:1;
    height:2px;
    background:var(--primary);
}

/* ---------- Hero ---------- */
.hero{
    padding:20px 0 70px;
}
.hero .container{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:48px;
    align-items:center;
}
.hero h1{
    font-family:var(--font-display);
    font-weight:700;
    font-size:clamp(2.1rem, 4vw, 3.1rem);
    line-height:1.12;
    margin:0 0 20px;
    letter-spacing:-.01em;
}
.hero h1 .hl{color:var(--primary);}
.hero p.lead{
    font-size:1.08rem;
    color:var(--text-soft);
    max-width:460px;
    margin:0 0 30px;
    line-height:1.55;
}
.hero-note{
    font-size:.8rem;
    color:var(--text-soft);
    max-width:460px;
    margin:-16px 0 26px;
    line-height:1.5;
}
/* Seção do carro (landing do carro unida ao fim da página única) */
.carro-intro{
    border-top:1px solid var(--border);
    padding-top:64px;
    scroll-margin-top:20px;
}
.carro-intro .eyebrow{margin-bottom:14px;}
.hero-actions{display:flex;flex-direction:column;align-items:flex-start;gap:14px;}
.hero-actions-row{display:flex;flex-wrap:wrap;align-items:center;gap:14px;}
.hero-figure{position:relative;}
.hero-figure img{
    max-width:100%;
    margin:0 auto;
}
.hero-figure .tag{
    margin:18px auto 0;
    max-width:260px;
    font-size:.85rem;
    font-weight:600;
    color:var(--primary);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    text-align:center;
}
.hero-figure .tag svg{flex:none;transform:rotate(90deg);}
.prize-placeholder{
    aspect-ratio:4/5;
    max-width:340px;
    margin:0 auto;
    border-radius:24px;
    background:var(--muted);
    border:1px dashed var(--border);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--text-soft);
    font-size:.85rem;
    text-align:center;
    padding:20px;
}

/* ---------- Buttons ---------- */
.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 26px;
    border-radius:10px;
    font-family:var(--font-body);
    font-weight:700;
    font-size:.95rem;
    border:none;
    cursor:pointer;
    letter-spacing:.02em;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{
    background:var(--primary);
    color:#fff;
}
.btn-primary:hover{background:var(--primary-dark);}
.btn-outline{
    background:transparent;
    color:var(--ink);
    border:2px solid var(--ink);
    padding:14px 24px;
}
.btn-outline:hover{background:var(--ink);color:#fff;}
.btn-block{width:100%;justify-content:center;}
.link-muted{
    font-size:.92rem;
    font-weight:600;
    color:var(--text-soft);
    display:inline-flex;
    align-items:center;
    gap:6px;
}
.link-muted:hover{color:var(--primary);}

/* ---------- Eyebrow / section headings ---------- */
.eyebrow{
    display:block;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:10px;
}
.section-title{
    font-family:var(--font-display);
    font-weight:700;
    font-size:clamp(1.6rem, 3vw, 2.1rem);
    margin:0 0 14px;
}
.section-head{text-align:center;margin-bottom:44px;}

/* ---------- Como funciona ---------- */
.steps{padding:70px 0;}
.steps-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
    position:relative;
}
.steps-grid--4{grid-template-columns:repeat(4, 1fr);}
/* Telas médias: 4 passos viram 2 em cima + 2 embaixo */
@media(max-width:1040px){
    .steps-grid--4{grid-template-columns:repeat(2, 1fr);}
}
/* 5 passos: 3 em cima + 2 centralizados embaixo (grid de 6 colunas) */
.steps-grid--5{grid-template-columns:repeat(6, 1fr);}
.steps-grid--5 .step-card{grid-column:span 2;}
.steps-grid--5 .step-card:nth-child(4){grid-column:2 / span 2;}
.steps-grid--5 .step-card:nth-child(5){grid-column:4 / span 2;}
.steps-foot{
    margin-top:38px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    text-align:center;
}
.steps-obs{
    margin:0;
    font-size:.9rem;
    color:var(--text-soft);
    max-width:640px;
    line-height:1.55;
}
.steps-obs a{color:var(--primary);font-weight:600;}
.step-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:36px 26px 30px;
    text-align:center;
    position:relative;
}
.step-number{
    width:36px;height:36px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-weight:700;
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 22px;
}
.step-icon{
    width:64px;height:64px;
    border-radius:50%;
    background:rgba(var(--primary-rgb),.1);
    color:var(--primary);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 20px;
}
.step-card h3{font-size:1.05rem;margin:0 0 10px;}
.step-card p{font-size:.92rem;color:var(--text-soft);line-height:1.55;margin:0;}
.step-connector{
    display:none;
}

/* ---------- Benefícios (bloco escuro) ---------- */
.benefits{
    background:var(--ink);
    color:#fff;
    padding:60px 0;
}
.benefits .section-head .eyebrow{color:var(--primary);}
.benefits .section-title{color:#fff;}
.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:0;
}
.benefit{
    padding:0 22px;
    border-left:1px solid rgba(255,255,255,.12);
}
.benefit:first-child{border-left:none;padding-left:0;}
.benefit-icon{color:var(--primary);margin-bottom:16px;}
.benefit h4{font-size:1rem;margin:0 0 10px;}
.benefit p{font-size:.88rem;color:rgba(255,255,255,.65);line-height:1.55;margin:0;}

/* ---------- Cross-promo (iPhone -> Carro) ---------- */
.cross-promo{padding:0 0 70px;}
.cross-promo-inner{
    background:var(--muted);
    border-radius:18px;
    padding:34px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    flex-wrap:wrap;
}
.cross-promo-copy h3{
    font-size:1.2rem;
    margin:6px 0 8px;
}
.cross-promo-copy p{
    margin:0;
    max-width:560px;
    color:var(--text-soft);
    font-size:.92rem;
    line-height:1.5;
}
.cross-promo .btn-outline{flex:none;}

/* ---------- FAQ ---------- */
.faq{padding:70px 0;}
.faq-cols{
    max-width:1000px;
    margin:36px auto 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 24px;
    align-items:start;
}
.faq-col{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.faq-list{
    max-width:820px;
    margin:36px auto 0;
    display:flex;
    flex-direction:column;
    gap:12px;
}
@media(max-width:760px){
    .faq-cols{grid-template-columns:1fr;}
}
.faq-item{
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
    overflow:hidden;
}
.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:18px 22px;
    background:none;
    border:none;
    text-align:left;
    font-family:var(--font-body);
    font-weight:700;
    font-size:.96rem;
    color:var(--text);
    cursor:pointer;
}
.faq-question svg{flex:none;color:var(--primary);transition:transform .2s ease;}
.faq-item.open .faq-question svg{transform:rotate(90deg);}
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    padding:0 22px;
}
.faq-answer p{margin:0 0 12px;color:var(--text-soft);font-size:.9rem;line-height:1.6;}
.faq-item.open .faq-answer{max-height:1600px;}

/* Conteúdo formatado da resposta (editor rich-text do Painel) */
.faq-answer-body{
    margin:0 0 20px;
    color:var(--text-soft);
    font-size:.9rem;
    line-height:1.6;
}
.faq-answer-body > *:first-child{margin-top:0;}
.faq-answer-body > *:last-child{margin-bottom:0;}
.faq-answer-body p,
.faq-answer-body div{margin:0 0 12px;}
.faq-answer-body ul,
.faq-answer-body ol{margin:0 0 12px;padding-left:22px;}
.faq-answer-body li{margin:0 0 6px;}
.faq-answer-body a{color:var(--primary);font-weight:600;text-decoration:underline;}
.faq-answer-body strong,
.faq-answer-body b{color:var(--text);font-weight:700;}
.faq-answer-body em,
.faq-answer-body i{font-style:italic;}
.faq-answer-body h1,
.faq-answer-body h2,
.faq-answer-body h3{font-size:1rem;margin:0 0 8px;color:var(--text);}

/* ---------- Acesso / Login ---------- */
.access{padding:80px 0;}
.access .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;
}
.access p.lead{color:var(--text-soft);line-height:1.6;max-width:440px;}
.notice{
    display:flex;
    gap:14px;
    background:rgba(var(--primary-rgb),.07);
    border:1px solid rgba(var(--primary-rgb),.2);
    border-radius:12px;
    padding:18px 20px;
    margin-top:26px;
}
.notice svg{flex:none;color:var(--primary);margin-top:2px;}
.notice strong{display:block;margin-bottom:4px;font-size:.95rem;}
.notice p{margin:0;font-size:.86rem;color:var(--text-soft);line-height:1.5;}

.login-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:38px;
    box-shadow:0 20px 45px rgba(15,15,20,.08);
}
.login-card h2{
    font-family:var(--font-display);
    font-size:1.5rem;
    margin:0 0 22px;
}
.field{margin-bottom:16px;}
.field label{
    display:block;
    font-size:.82rem;
    font-weight:700;
    margin-bottom:8px;
    color:var(--text-soft);
}
.input-group{
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid var(--border);
    border-radius:10px;
    padding:12px 14px;
    background:var(--muted);
}
.input-group svg{flex:none;color:var(--text-soft);}
.input-group input{
    border:none;
    background:transparent;
    outline:none;
    font-family:var(--font-body);
    font-size:.98rem;
    width:100%;
    color:var(--text);
}
.input-group button.toggle-pass{
    border:none;background:none;cursor:pointer;color:var(--text-soft);display:flex;
}
.form-actions{margin-top:22px;}
.form-foot{text-align:center;margin-top:16px;}
.form-alert{
    border-radius:10px;
    padding:14px 16px;
    font-size:.9rem;
    margin-bottom:18px;
}
.form-alert.error{background:#fdecec;color:#a30f0f;border:1px solid #f3c6c6;}
.form-alert.success{background:#eafbea;color:#146c2e;border:1px solid #bfe8c6;}

/* ---------- Footer ---------- */
.site-footer-top{
    border-top:1px solid var(--border);
    padding:44px 0;
}
.site-footer-top .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:32px;
    flex-wrap:wrap;
}
.regulamento-btn{margin-top:22px;}
.footer-tagline{
    font-size:.85rem;
    color:var(--text-soft);
    line-height:1.5;
}
.footer-tagline strong{color:var(--primary);}
.footer-badges{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}
.footer-badge{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:.82rem;
    font-weight:600;
    color:var(--text-soft);
}
.footer-badge svg{color:var(--primary);flex:none;}
.legal-disclaimer{
    border-top:1px solid var(--border);
    padding:16px 0;
}
.legal-disclaimer p{
    margin:0;
    font-size:.72rem;
    line-height:1.5;
    color:var(--text-soft);
    text-align:center;
}
.site-footer-bottom{
    background:var(--ink);
    color:rgba(255,255,255,.7);
    padding:18px 0;
    font-size:.82rem;
}
.site-footer-bottom .container{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}
.site-footer-bottom a{color:#fff;font-weight:600;}
.dev-credit{
    justify-content:center;
    align-items:center;
    gap:48px;
    flex-wrap:wrap;
    margin-top:16px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.12);
}
.dev-cred{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:.7rem;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.5);
}
.dev-cred img{display:block;width:auto;}
.dev-credit-logo{width:auto;}
.dev-credit-logo--ozaca{height:24px;}
.dev-credit-logo--fiedler{height:34px;}
@media(max-width:560px){
    .dev-credit{gap:24px;flex-direction:column;}
}

/* ---------- Ganhadores ---------- */
.winners-section{padding:70px 0 90px;}
.winners-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:36px;
}
.winner-card{
    display:grid;
    grid-template-columns:1.6fr 1fr 1.3fr 1fr 1fr;
    gap:18px;
    align-items:center;
    padding:20px 24px;
    border:1px solid var(--border);
    border-radius:12px;
    background:#fff;
}
.winner-card .label{
    display:block;
    font-size:.72rem;
    color:var(--text-soft);
    text-transform:uppercase;
    letter-spacing:.04em;
    margin-bottom:4px;
}
.winner-card .value{
    font-weight:700;
    font-size:.95rem;
    color:var(--text);
}
@media(max-width:900px){
    .winner-card{grid-template-columns:1fr 1fr;row-gap:14px;}
}

/* ---------- Utility pages (esqueci senha / redefinir) ---------- */
.auth-page{
    min-height:calc(100vh - 96px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    background:var(--muted);
}
.auth-footer .dev-credit{margin-top:0;border-top:none;}
.reg-options{display:flex;flex-direction:column;gap:12px;margin-bottom:6px;}
.reg-options .btn{justify-content:center;}
.auth-page .login-card{width:100%;max-width:440px;}
.auth-page .back-link{margin-top:18px;display:inline-flex;}

/* ---------- Responsive ---------- */
@media(max-width:900px){
    .hero .container{grid-template-columns:1fr;}
    .hero-figure{order:-1;max-width:320px;margin:0 auto;}
    .benefits-grid{grid-template-columns:1fr 1fr;row-gap:32px;}
    .benefit{border-left:none;padding-left:0;}
    .access .container{grid-template-columns:1fr;}
}
/* Celular: todos os passos empilhados, 1 por linha */
@media(max-width:760px){
    .steps-grid,
    .steps-grid--3,
    .steps-grid--4,
    .steps-grid--5{grid-template-columns:1fr;}
    .steps-grid--5 .step-card,
    .steps-grid--5 .step-card:nth-child(4),
    .steps-grid--5 .step-card:nth-child(5){grid-column:auto;}
}
@media(max-width:560px){
    .benefits-grid{grid-template-columns:1fr;}
    .site-footer-top .container{flex-direction:column;align-items:flex-start;}
}

/* ---------- Co-branding por rede (Assurant + MFS/CN) ---------- */
.brand-mark .brand-logo--rede{height:26px;}
.brand-mark .brand-plus{
    color:var(--text-soft);
    font-weight:400;
    font-size:1rem;
    line-height:1;
}
.brand-mark .brand-realizacao{
    font-size:.72rem;
    color:var(--text-soft);
    padding-left:12px;
    border-left:1px solid var(--border);
}
.site-footer-top .brand-mark .brand-realizacao{border-left-color:rgba(255,255,255,.18);}
.site-footer-top .brand-mark .brand-plus{color:rgba(255,255,255,.6);}

/* ---------- Seletor de rede (na landing neutra) ---------- */
.redes-switch{
    margin-top:8px;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.redes-switch-label{
    font-size:.82rem;
    font-weight:600;
    color:var(--text-soft);
}
.redes-switch-row{display:flex;flex-wrap:wrap;gap:12px;}
.btn-rede{padding:11px 18px;font-size:.9rem;gap:12px;}
.btn-rede-logo{height:20px;width:auto;display:block;flex:none;}
/* Mantém a logo visível no hover (o btn-outline padrão inverteria pra fundo escuro) */
.btn-rede:hover{background:var(--muted);color:var(--ink);}
.redes-back{margin-top:6px;}

/* ---------- Cronograma ---------- */
.cronograma{padding:70px 0;background:var(--muted);}
.section-intro{
    max-width:640px;
    margin:0 auto;
    color:var(--text-soft);
    font-size:.95rem;
    line-height:1.55;
}
.cronograma-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:24px;
    margin-top:8px;
}
.crono-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:28px 26px;
}
.crono-card-title{
    font-family:var(--font-display);
    font-size:1.1rem;
    margin:0 0 18px;
    padding-bottom:14px;
    border-bottom:1px solid var(--border);
    color:var(--ink);
}
.crono-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px;}
.crono-list li{display:flex;gap:14px;align-items:flex-start;}
.crono-list li span:last-child{font-size:.9rem;color:var(--text-soft);line-height:1.5;}
.crono-list li strong{color:var(--text);font-weight:700;}
.crono-list a{color:var(--primary);font-weight:600;}
.crono-icon{
    flex:none;
    width:38px;height:38px;
    border-radius:50%;
    background:rgba(var(--primary-rgb),.1);
    color:var(--primary);
    display:flex;align-items:center;justify-content:center;
}
.crono-card-foot{
    margin-top:30px;
    padding-top:26px;
    border-top:1px solid var(--border);
}

/* ---------- Hub da raiz (escolha da rede) ---------- */
.hub-body{background:var(--muted);}
.hub{
    min-height:calc(100vh - 260px);
    display:flex;
    align-items:center;
    padding:70px 0;
}
.hub .container{width:100%;}
.hub-head{text-align:center;margin-bottom:40px;}
.hub-head h1{
    font-family:var(--font-display);
    font-size:clamp(1.9rem, 3.4vw, 2.7rem);
    line-height:1.15;
    margin:14px 0 16px;
    color:var(--ink);
}
.hub-head h1 .hl{color:var(--primary);}
.hub-redes{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:24px;
    max-width:760px;
    margin:0 auto;
}
.hub-rede-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:38px 28px;
    text-decoration:none;
    color:var(--text);
    box-shadow:0 14px 34px rgba(15,15,20,.06);
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hub-rede-card:hover{
    transform:translateY(-3px);
    border-color:rgba(var(--primary-rgb),.45);
    box-shadow:0 20px 44px rgba(15,15,20,.12);
}
.hub-rede-logo{height:38px;width:auto;display:block;}
.hub-rede-marcas{
    font-size:.95rem;
    font-weight:700;
    color:var(--text-soft);
    text-align:center;
}
.hub-rede-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.06em;
    color:var(--primary);
}
.hub-foot{
    text-align:center;
    margin:40px 0 0;
    font-size:.88rem;
    color:var(--text-soft);
}
.hub-foot a{color:var(--primary);font-weight:600;}

/* Cabeçalho do hub em destaque: por pedido do jurídico (Eric, 19/08/2026), a
   página principal precisa deixar claro de cara que a campanha é da Assurant. */
.hub-header{
    padding:34px 0 22px;
    background:#fff;
    border-bottom:1px solid var(--border);
}
.hub-header .container{
    flex-direction:column;
    align-items:center;
    gap:12px;
}
.brand-mark--hub{gap:18px;}
.brand-mark--hub .brand-logo{height:40px;}
.brand-mark--hub .brand-sub{
    font-family:var(--font-display);
    font-size:1.05rem;
    font-weight:700;
    color:var(--ink);
    padding-left:18px;
}
.hub-realizacao{
    margin:0;
    font-size:.84rem;
    color:var(--text-soft);
}
.hub-realizacao strong{color:var(--primary);font-weight:700;}
.hub-header .rule{
    flex:none;
    width:100%;
    max-width:460px;
    height:2px;
}
.hub-head h1{margin-top:0;}

/* Chamada do carro no hub: prêmio único, comum a todas as redes. */
.hub-carro{
    display:flex;
    align-items:center;
    gap:22px;
    max-width:760px;
    margin:24px auto 0;
    padding:18px 26px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    text-decoration:none;
    color:var(--text);
    transition:border-color .18s ease, box-shadow .18s ease;
}
.hub-carro:hover{
    border-color:rgba(var(--primary-rgb),.45);
    box-shadow:0 14px 32px rgba(15,15,20,.08);
}
.hub-carro-figura{
    flex:none;
    width:96px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.hub-carro-figura img{max-width:100%;height:auto;display:block;}
.hub-carro-texto{
    flex:1;
    font-size:.86rem;
    line-height:1.5;
    color:var(--text-soft);
}
.hub-carro-texto strong{
    display:block;
    font-family:var(--font-display);
    font-size:1rem;
    color:var(--ink);
    margin-bottom:4px;
}
.hub-carro-link{
    flex:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.76rem;
    font-weight:700;
    letter-spacing:.06em;
    color:var(--primary);
}
@media(max-width:560px){
    .hub-carro{flex-direction:column;text-align:center;gap:14px;}
}
