:root{
    --navy:#1a1b40;
    --navy-2:#232457;
    --orange:#f76b2f;
    --orange-2:#ff8143;
    --grey-bg:#e7e8e6;
    --white:#ffffff;
    --black:#050505;
    --grey:#b2b1b1;
    --grey-line:#d8d9d6;
    --text-soft:#5b5c72;
    --radius:18px;
    --shadow-lg:0 30px 60px -20px rgba(26,27,64,.35);
    --shadow-sm:0 10px 25px -12px rgba(26,27,64,.25);
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Poppins',sans-serif;
    color:var(--navy);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{
    font-family:'Anton',sans-serif;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:.3px;
    line-height:1.05;
    margin:0;
  }
  p{margin:0;}
  a{text-decoration:none;color:inherit;}
  ul{margin:0;padding:0;list-style:none;}
  img{max-width:100%;display:block;}
  .container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 24px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
    color:var(--orange);
  }
  .eyebrow::before{
    content:"";
    width:22px;height:3px;border-radius:2px;
    background:var(--orange);
    display:inline-block;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 30px;
    border-radius:999px;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:15.5px;
    letter-spacing:.2px;
    cursor:pointer;
    border:2px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
    white-space:nowrap;
  }
  .btn:active{transform:scale(.97);}
  .btn-primary{
    background:var(--orange);
    color:var(--white);
    box-shadow:0 14px 30px -10px rgba(247,107,47,.55);
  }
  .btn-primary:hover{background:var(--orange-2);box-shadow:0 18px 36px -8px rgba(247,107,47,.65);transform:translateY(-2px);}
  .btn-outline{
    background:transparent;
    border-color:rgba(255,255,255,.5);
    color:var(--white);
  }
  .btn-outline:hover{background:rgba(255,255,255,.12);}
  .btn-dark{
    background:var(--navy);
    color:var(--white);
  }
  .btn-dark:hover{background:var(--navy-2);transform:translateY(-2px);}
  .btn svg{width:18px;height:18px;flex-shrink:0;}

  /* ============ TOP BAR ============ */
  .topbar{
    background:var(--navy);
    color:rgba(255,255,255,.82);
    font-size:12.5px;
    font-weight:500;
  }
  .topbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:9px;padding-bottom:9px;
    gap:16px;
  }
  .topbar-msg{display:flex;align-items:center;gap:8px;}
  .topbar-msg svg{width:14px;height:14px;color:var(--orange);flex-shrink:0;}
  .topbar-contacts{display:flex;align-items:center;gap:20px;}
  .topbar-contacts a{display:flex;align-items:center;gap:6px;opacity:.9;}
  .topbar-contacts a:hover{color:var(--orange);}
  .topbar-contacts svg{width:13px;height:13px;}
  @media (max-width:760px){
    .topbar-contacts{display:none;}
    .topbar .container{justify-content:center;}
  }

  /* ============ NAV ============ */
  header.nav{
    position:sticky;top:0;z-index:100;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--grey-line);
  }
  .nav-inner{
    display:flex;align-items:center;justify-content:space-between;
    padding:12px 0;
  }
  .nav-logo img{height:34px;}
  .nav-links{
    display:flex;align-items:center;gap:30px;
    font-size:14px;font-weight:600;
  }
  .nav-links a{opacity:.75;transition:opacity .15s;}
  .nav-links a:hover{opacity:1;color:var(--orange);}
  .nav-cta{display:flex;align-items:center;gap:14px;}
  .nav-burger{display:none;background:none;border:none;cursor:pointer;padding:6px;}
  .nav-burger svg{width:26px;height:26px;color:var(--navy);}
  @media (max-width:920px){
    .nav-links{display:none;}
    .nav-burger{display:block;}
  }
  @media (max-width:520px){
    .nav-cta .btn span.full{display:none;}
  }

  /* ============ HERO ============ */
  .hero{
    position:relative;
    background:var(--navy);
    color:var(--white);
    overflow:hidden;
    padding:64px 0 56px;
  }
  .hero-glow{
    position:absolute;inset:0;
    background:
      radial-gradient(700px 500px at 85% 10%, rgba(247,107,47,.28), transparent 60%),
      radial-gradient(500px 400px at 10% 90%, rgba(247,107,47,.14), transparent 60%);
    pointer-events:none;
  }
  .hero-pattern{
    position:absolute; right:-120px; top:-80px; width:640px; height:640px;
    opacity:.08; pointer-events:none;
  }
  .hero-inner{
    position:relative;z-index:2;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:48px;
    align-items:center;
    padding-bottom:56px;
  }
  .hero h1{
    font-size:clamp(34px,4.6vw,58px);
    line-height:1.22;
    color:var(--white);
  }
  .hero h1 .accent{color:var(--orange);}
  .hero-sub{
    margin-top:20px;
    font-size:17px;
    line-height:1.65;
    color:rgba(255,255,255,.82);
    max-width:520px;
  }
  .hero-actions{
    display:flex;align-items:center;gap:16px;flex-wrap:wrap;
    margin-top:30px;
  }
  .hero-note{
    display:flex;align-items:flex-start;gap:8px;
    font-size:13.5px;color:rgba(255,255,255,.65);
    margin-top:22px;
  }
  .hero-note svg{margin-top:2px;}
  .hero-note svg{width:16px;height:16px;color:var(--orange);}

  .hero-visual{position:relative;display:flex;justify-content:center;align-items:center;min-height:500px;}
  .hero-visual .glow{
    position:absolute;
    width:380px;height:380px;border-radius:50%;
    background:radial-gradient(circle, rgba(247,107,47,.35), rgba(247,107,47,0) 70%);
    filter:blur(4px);
  }
  .hero-visual .hero-icon-img{
    position:relative;z-index:2;width:280px;height:auto;
    filter:drop-shadow(0 25px 40px rgba(0,0,0,.35));
  }
  .hero-product-card{
    position:relative;z-index:2;
    background:linear-gradient(165deg,#ffffff,#eef0f1);
    border-radius:26px;
    padding:20px 22px 34px;
    width:232px;
    box-shadow:0 30px 55px rgba(5,5,20,.4);
  }
  .hero-product-card img.hero-product-img{
    width:100%;height:auto;display:block;
    filter:drop-shadow(0 16px 20px rgba(0,0,0,.28));
  }
  .hero-logo-badge{
    position:absolute;top:-46px;left:-46px;
    width:136px;height:136px;border-radius:50%;
    background:var(--white);padding:5px;
    box-shadow:0 16px 30px rgba(5,5,20,.45);
    border:4px solid var(--orange);
    z-index:4;
  }
  .hero-logo-badge img{width:100%;height:100%;border-radius:50%;display:block;object-fit:cover;}
  .hero-product-tag{
    position:absolute;left:50%;bottom:9px;transform:translateX(-50%);
    background:var(--navy);color:var(--white);
    font-size:11px;font-weight:700;letter-spacing:.2px;
    padding:7px 15px;border-radius:999px;white-space:nowrap;
    box-shadow:var(--shadow-lg);z-index:4;
  }
  .hero-float-card{
    position:absolute;background:var(--white);color:var(--navy);
    border-radius:14px;padding:12px 16px;
    box-shadow:var(--shadow-lg);
    font-size:13px;font-weight:700;
    display:flex;align-items:center;gap:10px;
    z-index:3;
  }
  .hero-float-card svg{width:20px;height:20px;color:var(--orange);flex-shrink:0;}
  .hero-float-card.c1{top:2%;right:-6%;left:auto;}
  .hero-float-card.c2{bottom:2%;right:-10%;}
  .hero-float-card small{display:block;font-weight:500;color:var(--text-soft);font-size:11px;}

  @media (max-width:940px){
    .hero-inner{grid-template-columns:1fr;text-align:center;}
    .hero-sub{margin-left:auto;margin-right:auto;}
    .hero-actions{justify-content:center;}
    .hero-note{justify-content:center;}
    .hero-visual{margin-top:36px;min-height:440px;}
    .hero-float-card.c1{right:2%;}
    .hero-float-card.c2{right:2%;}
  }
  @media (max-width:520px){
    .hero-float-card{display:none;}
  }

  /* ============ STATS BAR ============ */
  .statsbar{
    position:relative;z-index:3;
    background:var(--white);
    margin:0 20px;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    transform:translateY(38px);
    padding:26px 10px;
  }
  .statsbar .container{max-width:1140px;padding:0 20px;}
  .statsbar-grid{
    display:grid;grid-template-columns:repeat(4,1fr);
    gap:10px;
  }
  .stat-item{
    display:flex;align-items:center;justify-content:center;gap:14px;
    padding:6px 14px;
    border-right:1px solid var(--grey-line);
  }
  .stat-item:last-child{border-right:none;}
  .stat-item .ic{
    width:46px;height:46px;border-radius:12px;
    background:var(--grey-bg);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .stat-item .ic svg{width:22px;height:22px;color:var(--orange);}
  .stat-item strong{display:block;font-family:'Anton',sans-serif;font-size:20px;color:var(--navy);letter-spacing:.3px;}
  .stat-item span{font-size:12.5px;color:var(--text-soft);font-weight:500;}
  @media (max-width:900px){
    .statsbar-grid{grid-template-columns:repeat(2,1fr);row-gap:18px;}
    .stat-item:nth-child(2){border-right:none;}
  }
  @media (max-width:520px){
    .statsbar{transform:translateY(28px);padding:20px 6px;}
    .stat-item .ic{width:38px;height:38px;}
    .stat-item strong{font-size:16px;}
  }

  section{padding:120px 0 80px;}
  section.tight{padding-top:80px;}
  .section-head{max-width:680px;margin-bottom:52px;}
  .section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
  .section-head h2{font-size:clamp(28px,3.4vw,42px);margin-top:14px;color:var(--navy);}
  .section-head p{margin-top:16px;font-size:16px;line-height:1.7;color:var(--text-soft);}

  /* ============ LOGO STRIP (early trust) ============ */
  .logostrip{background:var(--grey-bg);padding:36px 0 46px;}
  .logostrip-label{
    text-align:center;font-size:12.5px;font-weight:700;letter-spacing:1.4px;
    text-transform:uppercase;color:var(--text-soft);margin-bottom:26px;
  }
  .brand-wall{
    display:grid;grid-template-columns:repeat(6,1fr);gap:16px;
    align-items:start;
  }
  .brand-card{
    background:var(--white);
    border-radius:14px;
    border:1px solid var(--grey-line);
    overflow:hidden;
  }
  .brand-logo{
    height:76px;
    display:flex;align-items:center;justify-content:center;
    padding:14px 16px;
    border-bottom:1px solid var(--grey-line);
  }
  .brand-logo img{max-width:100%;max-height:100%;object-fit:contain;}
  .brand-logo.ph{
    border-bottom:1.5px dashed var(--grey);
    background:#fafafa;
  }
  .brand-logo.ph span{
    font-family:'Poppins',sans-serif;font-weight:700;font-size:13px;
    color:var(--text-soft);text-align:center;
  }
  /* Logo tiles whose artwork carries its own solid background — match the
     card background to the logo's exact brand red so there's no visible seam. */
  .brand-logo.bg-ifood{background:#fe001a;padding:8px 22px;}
  .brand-logo.bg-mcdonalds{background:#db0008;padding:8px 22px;}
  /* Honda artwork has generous internal whitespace — reduce padding so the mark reads bigger. */
  .brand-logo.lg-logo{padding:6px 20px;}
  .brand-photo{
    aspect-ratio:1/1;
    height:auto;
    background:rgba(178,177,177,.1);
    border:1.5px dashed var(--grey);
    border-top:none;
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:6px;
    color:var(--text-soft);
    position:relative;
    overflow:hidden;
  }
  .brand-photo svg{width:22px;height:22px;color:var(--grey);}
  .brand-photo span{font-size:10.5px;font-weight:600;text-align:center;padding:0 8px;line-height:1.3;}
  .brand-photo.filled{
    background:var(--white);
    border-style:solid;border-color:var(--grey-line);
    display:block;
  }
  .brand-photo.filled img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}
  @media (max-width:980px){.brand-wall{grid-template-columns:repeat(3,1fr);}}
  @media (max-width:560px){.brand-wall{grid-template-columns:repeat(2,1fr);}}

  /* ============ CORRIDAS E EVENTOS ============ */
  .race-wall{
    display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
  }
  .race-card{
    border-radius:14px;
    overflow:hidden;
    border:1px solid var(--grey-line);
    background:var(--white);
  }
  .race-card .race-photo{
    aspect-ratio:1/1;
    height:auto;
    background:rgba(178,177,177,.12);
    border-bottom:1.5px dashed var(--grey);
    display:flex;align-items:center;justify-content:center;
    color:var(--grey);
    position:relative;
    overflow:hidden;
  }
  .race-card .race-photo svg{width:26px;height:26px;}
  .race-card .race-photo.filled{background:var(--white);border-bottom-style:solid;border-bottom-color:var(--grey-line);}
  .race-card .race-photo.filled img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;}
  .race-card .race-name{
    padding:12px 14px;
    font-size:13px;font-weight:700;color:var(--navy);text-align:center;
  }
  .race-card.confirmed .race-name{color:var(--orange);}
  @media (max-width:980px){.race-wall{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.race-wall{grid-template-columns:1fr;}}

  /* ============ PARTNER STATEMENT ============ */
  .statement{
    background:var(--navy);
    color:var(--white);
    position:relative;
    overflow:hidden;
  }
  .statement-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
  }
  .statement h2{
    font-size:clamp(30px,4vw,46px);color:var(--white);
  }
  .statement h2 .hi{color:var(--orange);}
  .statement p{margin-top:22px;font-size:16.5px;line-height:1.75;color:rgba(255,255,255,.78);}
  .statement .checklist{margin-top:28px;display:flex;flex-direction:column;gap:14px;}
  .statement .checklist li{display:flex;gap:12px;align-items:flex-start;font-size:15px;color:rgba(255,255,255,.9);}
  .statement .checklist svg{width:20px;height:20px;color:var(--orange);flex-shrink:0;margin-top:1px;}
  .statement-quote{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    border-radius:var(--radius);
    padding:34px;
  }
  .statement-quote p{
    font-family:'Anton',sans-serif;
    text-transform:none;
    font-size:24px;
    line-height:1.4;
    color:var(--white);
    margin:0;
  }
  .statement-quote p span{color:var(--orange);}
  .statement-quote .who{margin-top:20px;font-family:'Poppins',sans-serif;font-size:13px;color:rgba(255,255,255,.6);font-weight:600;}
  @media (max-width:900px){
    .statement-grid{grid-template-columns:1fr;}
  }

  /* ============ COMO FUNCIONA ============ */
  .steps{
    display:grid;grid-template-columns:repeat(4,1fr);gap:22px;
  }
  .step-card{
    background:var(--white);
    border:1px solid var(--grey-line);
    border-radius:var(--radius);
    padding:30px 24px;
    position:relative;
    transition:box-shadow .2s ease, transform .2s ease;
  }
  .step-card:hover{box-shadow:var(--shadow-sm);transform:translateY(-4px);}
  .step-num{
    font-family:'Anton',sans-serif;font-size:44px;color:var(--grey-bg);
    -webkit-text-stroke:1.5px var(--orange);
    color:transparent;
    line-height:1;
  }
  .step-card h4{margin-top:16px;font-size:19px;color:var(--navy);}
  .step-card p{margin-top:10px;font-size:14px;line-height:1.6;color:var(--text-soft);}
  .step-arrow{position:absolute;top:34px;right:-30px;width:20px;height:20px;color:var(--grey);z-index:2;}
  @media (max-width:980px){
    .steps{grid-template-columns:1fr 1fr;}
    .step-arrow{display:none;}
  }
  @media (max-width:560px){
    .steps{grid-template-columns:1fr;}
  }

  /* ============ MATERIALS ============ */
  .materials{
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  }
  .material-card{
    border-radius:var(--radius);
    background:var(--grey-bg);
    position:relative;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .material-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-sm);}
  .material-card.highlight{
    background:var(--navy);
    color:var(--white);
  }
  .material-photo{
    height:180px;
    background:rgba(178,177,177,.14);
    border-bottom:1.5px dashed var(--grey);
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;
    color:var(--text-soft);
    position:relative;
  }
  .material-card.highlight .material-photo{background:rgba(255,255,255,.06);border-bottom-color:rgba(255,255,255,.25);color:rgba(255,255,255,.6);}
  .material-photo svg{width:26px;height:26px;color:var(--grey);}
  .material-card.highlight .material-photo svg{color:rgba(255,255,255,.4);}
  .material-photo span{font-size:12px;font-weight:600;}
  .material-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
  .material-photo.cutout img{width:auto;height:auto;max-width:76%;max-height:90%;object-fit:contain;position:relative;inset:auto;}
  .material-photo.photo-square{aspect-ratio:1/1;height:auto;}
  .material-photo.photo-square img{object-position:center;}
  .material-body{padding:28px 28px 32px;}
  .material-tag{
    position:absolute;top:18px;right:18px;z-index:2;
    background:var(--orange);color:var(--white);
    font-size:11px;font-weight:800;letter-spacing:.5px;
    padding:5px 12px;border-radius:999px;text-transform:uppercase;
  }
  .material-card .ic{
    width:54px;height:54px;border-radius:14px;
    background:var(--white);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:20px;
  }
  .material-card.highlight .ic{background:rgba(255,255,255,.12);}
  .material-card .ic svg{width:26px;height:26px;color:var(--orange);}
  .material-card h4{font-size:20px;}
  .material-card.highlight h4{color:var(--white);}
  .material-card p{margin-top:12px;font-size:14px;line-height:1.65;color:var(--text-soft);}
  .material-card.highlight p{color:rgba(255,255,255,.78);}
  /* Accent variant (orange) — used for the Munhequeira card, no material is visually "favored" */
  .material-card.accent{background:var(--orange);color:var(--white);}
  .material-card.accent .material-photo{background:rgba(255,255,255,.12);border-bottom-color:rgba(255,255,255,.32);color:rgba(255,255,255,.8);}
  .material-card.accent .material-photo svg{color:rgba(255,255,255,.6);}
  .material-card.accent h4{color:var(--white);}
  .material-card.accent p{color:rgba(255,255,255,.92);}
  @media (max-width:900px){.materials{grid-template-columns:1fr;}}

  /* ============ IDEAL PARA ============ */
  .audience{
    display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  }
  .audience-card{
    border-radius:var(--radius);
    overflow:hidden;
    position:relative;
    min-height:280px;
    display:flex;flex-direction:column;justify-content:flex-end;
    padding:28px 26px;
    color:var(--white);
    isolation:isolate;
  }
  .audience-card::before{
    content:"";position:absolute;inset:0;z-index:-2;
    background:linear-gradient(155deg, var(--navy), #2a2b63);
  }
  .audience-card.alt::before{background:linear-gradient(155deg, var(--orange), #ff8f57);}
  .audience-card::after{
    content:"";position:absolute;inset:0;z-index:-1;
    background:radial-gradient(circle at 85% 15%, rgba(255,255,255,.16), transparent 55%);
  }
  .audience-card .ic{
    width:50px;height:50px;border-radius:12px;
    background:rgba(255,255,255,.15);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
  }
  .audience-card .ic svg{width:24px;height:24px;color:var(--white);}
  .audience-card h4{font-size:21px;color:var(--white);}
  .audience-card p{margin-top:10px;font-size:14px;line-height:1.6;color:rgba(255,255,255,.85);}
  @media (max-width:900px){.audience{grid-template-columns:1fr;}}

  /* ============ DIFERENCIAIS ============ */
  .diff-grid{
    display:grid;grid-template-columns:repeat(5,1fr);gap:20px;
  }
  .diff-card{text-align:center;padding:10px;}
  .diff-card .ic{
    width:64px;height:64px;border-radius:18px;
    background:var(--grey-bg);
    display:flex;align-items:center;justify-content:center;
    margin:0 auto 16px;
  }
  .diff-card .ic svg{width:28px;height:28px;color:var(--orange);}
  .diff-card h4{font-size:15.5px;color:var(--navy);}
  .diff-card p{margin-top:8px;font-size:13px;line-height:1.55;color:var(--text-soft);}
  @media (max-width:980px){.diff-grid{grid-template-columns:repeat(3,1fr);row-gap:32px;}}
  @media (max-width:600px){.diff-grid{grid-template-columns:repeat(2,1fr);}}

  /* ============ PRODUÇÃO REAL / GALERIA ============ */
  .social{background:var(--grey-bg);}
  .photo-wall{
    display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
    grid-auto-rows:280px;
  }
  .photo-wall .lg{grid-column:span 2;grid-row:span 2;}
  .photo-slot{
    background:var(--white);
    border-radius:14px;
    border:1.5px dashed var(--grey);
    display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
    color:var(--text-soft);
    overflow:hidden;
    position:relative;
  }
  .photo-slot svg{width:30px;height:30px;color:var(--grey);}
  .photo-slot span{font-size:12.5px;font-weight:600;text-align:center;padding:0 14px;}
  .photo-slot img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
  .photo-slot.filled{border-style:solid;border-color:var(--grey-line);}
  .photo-slot.filled .caption{
    position:absolute;left:0;right:0;bottom:0;z-index:2;
    padding:22px 18px 14px;
    background:linear-gradient(to top, rgba(5,5,15,.75), rgba(5,5,15,0));
  }
  .photo-slot.filled .caption span{color:var(--white);font-size:13px;padding:0;text-align:left;}
  .logo-note{
    margin-top:20px;text-align:center;font-size:12.5px;color:var(--text-soft);
  }
  @media (max-width:900px){.photo-wall{grid-template-columns:repeat(2,1fr);}.photo-wall .lg{grid-column:span 2;}}
  @media (max-width:560px){.photo-wall{grid-template-columns:1fr;grid-auto-rows:300px;}.photo-wall .lg{grid-column:span 1;grid-row:span 1;}}

  /* ============ DEPOIMENTOS (chat) ============ */
  .chat-wall{
    display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
  }
  .chat-card{
    background:var(--white);
    border-radius:var(--radius);
    border:1px solid var(--grey-line);
    padding:26px;
    box-shadow:var(--shadow-sm);
  }
  .chat-card .chat-head{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
  .chat-card .chat-head .dot{width:9px;height:9px;border-radius:50%;background:#25D366;}
  .chat-card .chat-head span{font-size:12px;font-weight:700;color:var(--text-soft);letter-spacing:.3px;text-transform:uppercase;}
  .bubble{
    background:var(--grey-bg);
    border-radius:14px 14px 14px 4px;
    padding:14px 16px;
    font-size:14.5px;line-height:1.55;
    color:var(--navy);
    max-width:92%;
    margin-bottom:10px;
  }
  .bubble:last-child{margin-bottom:0;}
  .bubble time{display:block;text-align:right;font-size:10.5px;color:var(--text-soft);margin-top:6px;}
  @media (max-width:800px){.chat-wall{grid-template-columns:1fr;}}

  /* ============ GARANTIAS ============ */
  .guarantee{
    background:var(--navy);
    border-radius:24px;
    padding:44px 40px;
    display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
    color:var(--white);
  }
  .guarantee-item{display:flex;flex-direction:column;gap:10px;}
  .guarantee-item .ic{width:44px;height:44px;border-radius:12px;background:rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;}
  .guarantee-item .ic svg{width:22px;height:22px;color:var(--orange);}
  .guarantee-item h4{font-family:'Poppins',sans-serif;font-weight:700;font-size:15px;color:var(--white);}
  .guarantee-item p{font-size:13px;color:rgba(255,255,255,.72);line-height:1.5;}
  @media (max-width:900px){.guarantee{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.guarantee{grid-template-columns:1fr;padding:34px 24px;}}

  /* ============ FAQ ============ */
  .faq-list{max-width:820px;margin:0 auto;}
  .faq-item{
    border-bottom:1px solid var(--grey-line);
  }
  .faq-q{
    width:100%;text-align:left;background:none;border:none;cursor:pointer;
    display:flex;align-items:center;justify-content:space-between;gap:20px;
    padding:22px 4px;
    font-family:'Poppins',sans-serif;font-weight:600;font-size:16px;color:var(--navy);
  }
  .faq-q svg{width:20px;height:20px;color:var(--orange);flex-shrink:0;transition:transform .25s ease;}
  .faq-item[data-open="true"] .faq-q svg{transform:rotate(45deg);}
  .faq-a{
    max-height:0;overflow:hidden;transition:max-height .3s ease;
  }
  .faq-a-inner{padding:0 4px 22px;font-size:14.5px;line-height:1.7;color:var(--text-soft);}

  /* ============ FINAL CTA ============ */
  .cta-final{
    background:linear-gradient(120deg, var(--orange), #ff8a4d 60%, var(--orange-2));
    color:var(--white);
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .cta-final .container{position:relative;z-index:2;}
  .cta-final h2{font-size:clamp(26px,4vw,44px);color:var(--white);}
  .cta-final p{margin-top:16px;font-size:16px;color:rgba(255,255,255,.92);max-width:560px;margin-left:auto;margin-right:auto;}
  .cta-final .btn-primary{background:var(--navy);box-shadow:0 16px 34px -10px rgba(0,0,0,.4);margin-top:30px;}
  .cta-final .btn-primary:hover{background:var(--navy-2);}
  .cta-badges{margin-top:26px;display:flex;justify-content:center;gap:26px;flex-wrap:wrap;font-size:12.5px;font-weight:600;}
  .cta-badges span{display:flex;align-items:center;gap:7px;color:rgba(255,255,255,.92);}
  .cta-badges svg{width:15px;height:15px;}

  /* ============ FOOTER ============ */
  footer{background:var(--black);color:rgba(255,255,255,.65);padding:64px 0 26px;}
  .footer-top{
    display:grid;grid-template-columns:1.3fr repeat(3,1fr);gap:40px;
    padding-bottom:44px;border-bottom:1px solid rgba(255,255,255,.1);
  }
  .footer-top img{height:30px;margin-bottom:16px;}
  .footer-top p{font-size:13.5px;line-height:1.7;color:rgba(255,255,255,.5);max-width:280px;}
  .footer-social{display:flex;gap:10px;margin-top:18px;}
  .footer-social a{
    width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);
    display:flex;align-items:center;justify-content:center;
  }
  .footer-social a:hover{background:var(--orange);}
  .footer-social svg{width:16px;height:16px;color:var(--white);}
  .footer-col h5{font-family:'Poppins',sans-serif;color:var(--white);font-size:13.5px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;margin-bottom:18px;}
  .footer-col ul{display:flex;flex-direction:column;gap:11px;}
  .footer-col a{font-size:14px;color:rgba(255,255,255,.6);}
  .footer-col a:hover{color:var(--orange);}
  .footer-bottom{
    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
    padding-top:26px;font-size:12px;color:rgba(255,255,255,.42);
  }
  @media (max-width:900px){
    .footer-top{grid-template-columns:1fr 1fr;row-gap:32px;}
  }
  @media (max-width:560px){
    .footer-top{grid-template-columns:1fr;}
  }

  /* ============ WHATSAPP FLOAT ============ */
  .wa-float{
    position:fixed;bottom:24px;right:24px;z-index:200;
    width:60px;height:60px;border-radius:50%;
    background:#25D366;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 14px 30px -8px rgba(37,211,102,.6);
    animation:pulse 2.4s infinite;
  }
  .wa-float svg{width:30px;height:30px;color:var(--white);}
  @keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(37,211,102,.55);}
    70%{box-shadow:0 0 0 16px rgba(37,211,102,0);}
    100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
  }

  /* ============ MOBILE NAV DRAWER ============ */
  .mobile-drawer{
    position:fixed;inset:0;background:var(--navy);z-index:150;
    display:flex;flex-direction:column;
    padding:26px 26px 40px;
    transform:translateX(100%);
    transition:transform .28s ease;
  }
  .mobile-drawer.open{transform:translateX(0);}
  .mobile-drawer-top{display:flex;justify-content:space-between;align-items:center;}
  .mobile-drawer-top img{height:30px;}
  .mobile-drawer-top button{background:none;border:none;cursor:pointer;}
  .mobile-drawer-top svg{width:28px;height:28px;color:var(--white);}
  .mobile-drawer nav{margin-top:50px;display:flex;flex-direction:column;gap:26px;}
  .mobile-drawer nav a{font-family:'Anton',sans-serif;font-size:26px;color:var(--white);text-transform:uppercase;}
  .mobile-drawer .btn{margin-top:40px;width:100%;}

  .reveal{opacity:1;}
