:root{
    /* ===== Design tokens — paleta amarela vibrante ===== */
    --sky-deep:   #1B2A4A;  /* neutro escuro para seções de contraste (prova social) */
    --cloud:      #FFFBF0;  /* branco quente — fundo das seções claras */
    --accent:     #FFC93C;  /* amarelo vibrante — cor de destaque do site */
    --accent-deep:#E3A008;  /* amarelo mais escuro — hover, textos sobre fundo claro */
    --accent-soft:#FFF3C4;  /* amarelo bem claro — fundos suaves, selos */
    --ink:        #2E2A25;  /* texto principal, carvão quente (não preto puro) */
    --ink-soft:   #6b6259;

    --display: 'Fraunces', serif;
    --body: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;

    --radius: 14px;
    --container: 1180px;
  }

  *,*::before,*::after{ box-sizing: border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0; font-family:var(--body); color:var(--ink); background:var(--cloud);
    -webkit-font-smoothing:antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  .wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }
  .eyebrow{
    font-family:var(--mono); font-size:12px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--accent-deep); display:flex; align-items:center; gap:10px; margin:0 0 18px;
  }
  .eyebrow .bicon{ width:16px; height:16px; flex:none; }
  h1,h2,h3{ font-family:var(--display); font-weight:600; margin:0; color:var(--ink); }
  h1 em, h2 em{ font-style:italic; font-weight:500; color:var(--accent-deep); }
  .btn{
    display:inline-flex; align-items:center; gap:10px; font-family:var(--body); font-weight:600;
    padding:15px 28px; border-radius:100px; font-size:15px; cursor:pointer; border:1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{ background:var(--accent); color:var(--ink); box-shadow:0 8px 24px -8px rgba(227,160,8,.5); }
  .btn-primary:hover{ box-shadow:0 12px 28px -8px rgba(227,160,8,.6); }
  .btn-ghost{ background:transparent; border-color:rgba(46,42,37,.25); color:var(--ink); }
  .btn-ghost:hover{ border-color:var(--ink); }
  .btn-on-dark{ border-color:rgba(255,255,255,.55); color:#fff; }
  .btn-on-dark:hover{ border-color:#fff; }
  section{ padding:96px 0; position:relative; }
  @media(max-width:720px){ section{ padding:64px 0; } }

  /* trilha pontilhada decorativa ligando as seções (motivo de "rota de voo") */
  .flightpath{
    position:absolute; left:50%; top:0; bottom:0; width:2px; transform:translateX(-50%);
    background-image:linear-gradient(rgba(46,42,37,.14) 60%, transparent 0%);
    background-position:top; background-size:2px 14px; background-repeat:repeat-y;
    z-index:0; pointer-events:none;
  }
  @media(max-width:720px){ .flightpath{ display:none; } }

  /* ===== Nav ===== */
  header{
    position:sticky; top:0; z-index:50; background:rgba(255,246,234,.88); backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(46,42,37,.08);
  }
  .nav{ display:grid; grid-template-columns:auto 1fr auto; align-items:center; padding:14px 24px; max-width:var(--container); margin:0 auto; column-gap:18px; }
  .nav .brand{ display:flex; align-items:center; gap:10px; font-family:var(--display); font-weight:600; font-size:19px; justify-self:start; }
  .nav .brand img{ height:44px; width:auto; transition:transform .2s ease; }
  .nav .brand:hover img{ transform:scale(1.035); }
  .nav-center{ justify-self:center; min-width:0; }
  .nav ul{ list-style:none; display:flex; gap:30px; margin:0; padding:0; font-size:14.5px; font-weight:500; }
  .nav ul a{ opacity:.82; transition:opacity .15s ease, color .15s ease; padding:6px 2px; border-bottom:2px solid transparent; }
  .nav ul a:hover, .nav ul a:active, .nav ul a:focus-visible{ opacity:1; color:var(--accent-deep); border-bottom-color:var(--accent); }
  .nav ul a.active{ opacity:1; color:var(--accent-deep); border-bottom-color:var(--accent); }
  .nav-actions{ display:flex; align-items:center; gap:8px; justify-self:end; }
  .nav-toggle{ display:none; background:none; border:0; font-size:22px; cursor:pointer; transition:color .15s ease; color:var(--ink); }
  .nav-toggle:hover, .nav-toggle:active{ color:var(--accent-deep); }
  @media(max-width:860px){
    .nav-center{ display:none; }
    .nav-toggle{ display:block; }
  }
  @media(max-width:520px){
    header .icon-row{ display:none; }
  }
  .mnav{ display:none; flex-direction:column; padding:0 24px 18px; gap:2px; }
  .mnav a{ padding:12px 4px; border-top:1px solid rgba(46,42,37,.08); font-size:15px; font-weight:500; transition:color .15s ease, background .15s ease; }
  .mnav a:hover, .mnav a:active{ color:var(--accent-deep); background:var(--accent-soft); }
  .mnav.open{ display:flex; }

  /* ===== Hero — carrossel de fotos ===== */
  .hero{
    position:relative; overflow:hidden; min-height:92vh; display:flex; align-items:flex-end;
    background:var(--sky-deep); /* cor de fallback enquanto as fotos carregam */
  }
  .hero-slide{
    position:absolute; inset:0; background-size:cover; background-position:center 55%;
    opacity:0; animation:heroFade 20s infinite;
  }
  .hero-slide:nth-child(1){ animation-delay:0s; }
  .hero-slide:nth-child(2){ animation-delay:5s; }
  .hero-slide:nth-child(3){ animation-delay:10s; }
  .hero-slide:nth-child(4){ animation-delay:15s; }
  @keyframes heroFade{
    0%{ opacity:0; }
    4%{ opacity:1; }
    23%{ opacity:1; }
    27%{ opacity:0; }
    100%{ opacity:0; }
  }
  .hero-scrim{
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(15,17,15,.82) 0%, rgba(15,17,15,.38) 45%, rgba(15,17,15,.05) 72%);
  }
  .hero-content{
    position:relative; z-index:2; padding:0 24px 84px; max-width:var(--container); margin:0 auto; width:100%;
    color:#fff; opacity:0; transform:translateY(18px); animation: fadeUp .8s ease .5s forwards;
  }
  @keyframes fadeUp{ to{ opacity:1; transform:none; } }
  .hero h1{ font-size:clamp(34px,6vw,64px); line-height:1.06; color:#fff; max-width:16ch; letter-spacing:-.01em; }
  .hero p.lead{ font-size:18px; max-width:46ch; color:rgba(255,255,255,.88); margin:20px 0 32px; line-height:1.55; }
  .hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }
  .hero .eyebrow{ color:var(--accent); }

  /* ===== Controles do carrossel da home ===== */
  .hero-carousel{ touch-action:pan-y; }
  .hero-carousel.carousel-ready .hero-slide{
    animation:none!important; opacity:0; transition:opacity .75s ease, transform 6s ease;
    transform:scale(1.025);
  }
  .hero-carousel.carousel-ready .hero-slide.is-active{ opacity:1; transform:scale(1); }
  .hero-carousel-ui{
    position:absolute; z-index:5; inset:0; pointer-events:none; color:#fff;
  }
  .hero-carousel-arrow{
    position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; padding:0;
    border:1px solid rgba(255,255,255,.3); border-radius:50%; background:rgba(18,17,15,.28);
    color:#fff; display:grid; place-items:center; font-size:22px; line-height:1; cursor:pointer;
    pointer-events:auto; opacity:0; transition:background .18s ease,opacity .2s ease,transform .18s ease;
  }
  .hero-carousel-prev{ left:24px; }
  .hero-carousel-next{ right:24px; }
  .hero-carousel:hover .hero-carousel-arrow,.hero-carousel:focus-within .hero-carousel-arrow{ opacity:1; }
  .hero-carousel-arrow:hover{ background:rgba(18,17,15,.55); transform:translateY(-50%) scale(1.06); }
  .hero-carousel-dots{
    position:absolute; left:50%; bottom:64px; transform:translateX(-50%); display:flex; align-items:center; gap:7px;
    padding:9px 12px; border:1px solid rgba(255,255,255,.25); border-radius:100px;
    background:rgba(18,17,15,.32); backdrop-filter:blur(10px); pointer-events:auto;
  }
  .hero-carousel-dot{
    width:8px; height:8px; padding:0; border:0; border-radius:50%; background:rgba(255,255,255,.45);
    cursor:pointer; transition:width .22s ease,background .22s ease;
  }
  .hero-carousel-dot.is-active{ width:24px; border-radius:10px; background:var(--accent); }
  .hero-carousel-arrow:focus-visible,.hero-carousel-dot:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
  .sr-only{ position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }

  /* ===== Banners internos ===== */
  .inner-hero{ min-height:clamp(340px,44vh,500px)!important; }
  .inner-hero .hero-slide{ background-position:center 46%; transform:scale(1.015); }
  .inner-hero .hero-scrim{
    background:linear-gradient(90deg,rgba(18,17,15,.78) 0%,rgba(18,17,15,.46) 46%,rgba(18,17,15,.12) 76%),
               linear-gradient(0deg,rgba(18,17,15,.56),transparent 58%);
  }
  .inner-hero .hero-content{ padding-bottom:clamp(48px,7vw,76px)!important; }
  .inner-hero h1{ max-width:14ch; text-wrap:balance; text-shadow:0 3px 24px rgba(0,0,0,.28); }
  .inner-hero p.lead{ max-width:42ch; margin-bottom:0; }

  @media (prefers-reduced-motion: reduce){
    .hero-slide{ animation:none !important; }
    .hero-slide:first-child{ opacity:1 !important; }
  }

  /* ===== Barra de estatísticas (flutuante sobre a virada do hero) ===== */
  .stats-bar{
    position:relative; z-index:5; max-width:var(--container); margin:-46px auto 0; padding:0 24px;
  }
  .stats-bar .inner{
    background:#fff; border-radius:18px; box-shadow:0 24px 48px -20px rgba(27,42,74,.28);
    display:grid; grid-template-columns:repeat(3,1fr); padding:30px 20px;
  }
  @media(max-width:720px){ .stats-bar .inner{ grid-template-columns:1fr; gap:22px; text-align:center; } }
  .stat{ text-align:center; padding:0 10px; position:relative; }
  .stat + .stat::before{ content:''; position:absolute; left:0; top:8px; bottom:8px; width:1px; background:rgba(46,42,37,.1); }
  @media(max-width:720px){ .stat + .stat::before{ display:none; } }
  .stat b{ display:block; font-family:var(--display); font-size:30px; color:var(--accent-deep); font-weight:700; }
  .stat span{ font-size:13px; color:var(--ink-soft); }

  /* ===== Confiança ===== */
  .trust{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
  @media(max-width:860px){ .trust{ grid-template-columns:1fr; gap:36px; } }
  .trust-photo{ border-radius:var(--radius); overflow:hidden; aspect-ratio:4/3.2; }
  .trust-photo img{ width:100%; height:100%; object-fit:cover; }
  .seal{
    display:inline-flex; align-items:center; gap:10px; background:var(--accent-soft); color:#7a5900;
    font-family:var(--mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
    padding:8px 16px; border-radius:100px; margin-bottom:22px; font-weight:500;
  }
  .trust h2{ font-size:clamp(26px,4vw,38px); margin-bottom:18px; line-height:1.15; }
  .trust p.lead{ color:var(--ink-soft); font-size:16.5px; line-height:1.6; margin-bottom:28px; }
  .trust-points{ list-style:none; margin:0; padding:0; display:grid; gap:16px; }
  .trust-points li{ display:flex; gap:14px; align-items:flex-start; font-size:15px; color:var(--ink); }
  .trust-points .ico{
    flex:none; width:30px; height:30px; border-radius:50%; background:rgba(227,160,8,.16); color:var(--accent-deep);
    display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700;
  }

  /* ===== Pacotes — cartão de embarque ===== */
  .section-head{ display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:44px; gap:20px; flex-wrap:wrap; }
  .section-head h2{ font-size:clamp(26px,4vw,36px); }
  .pkg-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
  @media(max-width:640px){ .pkg-grid{ grid-template-columns:1fr; } }

  .ticket{
    background:#fff; border-radius:var(--radius); overflow:hidden; position:relative;
    box-shadow:0 1px 3px rgba(46,42,37,.06); border:1px solid rgba(46,42,37,.08);
    transition:transform .2s ease, box-shadow .2s ease; display:flex; flex-direction:column;
  }
  .ticket-photo img{ transition:transform .45s ease; }
  .ticket:hover .ticket-photo img{ transform:scale(1.035); }
  .ticket:hover{ transform:translateY(-5px); box-shadow:0 20px 34px -16px rgba(46,42,37,.24); }
  .ticket-photo{ aspect-ratio:4/3; overflow:hidden; position:relative; }
  .ticket-photo img{ width:100%; height:100%; object-fit:cover; }
  .ticket-stamp{
    position:absolute; top:12px; right:12px; background:rgba(255,255,255,.94); border-radius:100px;
    padding:6px 12px; font-size:12px; font-weight:600; display:flex; align-items:center; gap:5px;
    box-shadow:0 4px 10px rgba(0,0,0,.15); color:var(--ink);
  }
  .ticket-stamp .st{ color:var(--accent-deep); }
  .ticket-body{ padding:22px 22px 24px; position:relative; }
  .ticket-body::before{
    content:''; position:absolute; top:-1px; left:0; right:0; height:0;
    border-top:2px dashed rgba(46,42,37,.16);
  }
  .ticket-tag{ font-family:var(--mono); font-size:11px; color:var(--ink-soft); letter-spacing:.06em; text-transform:uppercase; }
  .ticket h3{ font-size:20px; margin:8px 0 8px; }
  .ticket p{ font-size:14.5px; color:var(--ink-soft); line-height:1.5; margin:0 0 18px; min-height:44px; }
  .ticket .btn{ padding:11px 20px; font-size:14px; width:100%; justify-content:center; }
  .ticket .stub{
    border-top:2px dashed rgba(46,42,37,.16); margin-top:2px; padding-top:16px;
  }
  .rating{ display:flex; align-items:center; gap:6px; font-size:13px; color:var(--ink-soft); margin-bottom:2px; }
  .rating .stars{ color:var(--accent-deep); letter-spacing:1px; }

  .see-all{ text-align:center; margin-top:44px; }

  /* ===== Galeria preview ===== */
  .gal-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; }
  @media(max-width:860px){ .gal-grid{ grid-template-columns:repeat(3,1fr); } }
  .gal-item{ aspect-ratio:1/1.1; border-radius:10px; overflow:hidden; }
  .gal-item img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
  .gal-item:hover img{ transform:scale(1.07); }
  .gal-grid .gal-item{ cursor:zoom-in; position:relative; }
  .gal-grid .gal-item:focus-visible{ outline:3px solid var(--accent-deep); outline-offset:4px; }

  /* ===== Visualizador de fotos compartilhado ===== */
  body.lightbox-open{ overflow:hidden; }
  .lightbox{
    position:fixed; inset:0; z-index:100; display:flex; align-items:center; justify-content:center;
    padding:clamp(18px,4vw,54px); background:rgba(12,14,18,.96); backdrop-filter:blur(16px);
    opacity:0; visibility:hidden; transition:opacity .25s ease,visibility .25s ease;
  }
  .lightbox.open{ opacity:1; visibility:visible; }
  .lightbox-stage{ margin:0; display:grid; justify-items:center; gap:14px; max-width:100%; }
  .lightbox-stage img{
    max-width:min(88vw,1320px); max-height:82vh; width:auto; height:auto; object-fit:contain;
    border-radius:10px; box-shadow:0 32px 80px rgba(0,0,0,.45);
  }
  .lightbox-stage figcaption{ color:rgba(255,255,255,.72); font-family:var(--mono); font-size:12px; letter-spacing:.12em; }
  .lightbox-close,.lightbox-prev,.lightbox-next{
    position:absolute; width:48px; height:48px; border:1px solid rgba(255,255,255,.24); border-radius:50%;
    background:rgba(255,255,255,.1); color:#fff; display:grid; place-items:center; font-size:26px;
    cursor:pointer; transition:background .2s ease,color .2s ease,transform .2s ease;
  }
  .lightbox-close{ top:20px; right:20px; font-size:18px; }
  .lightbox-prev{ left:22px; top:50%; transform:translateY(-50%); }
  .lightbox-next{ right:22px; top:50%; transform:translateY(-50%); }
  .lightbox-close:hover,.lightbox-prev:hover,.lightbox-next:hover,
  .lightbox-close:focus-visible,.lightbox-prev:focus-visible,.lightbox-next:focus-visible{
    background:var(--accent); color:var(--ink); outline:none;
  }
  @media(max-width:700px){
    .lightbox{ padding:64px 12px 76px; }
    .lightbox-stage img{ max-width:96vw; max-height:76vh; }
    .lightbox-close{ top:12px; right:12px; }
    .lightbox-prev,.lightbox-next{ top:auto; bottom:14px; transform:none; }
    .lightbox-prev{ left:calc(50% - 58px); }
    .lightbox-next{ right:calc(50% - 58px); }
  }

  /* ===== Prova social ===== */
  .social{
    background:var(--sky-deep); color:#fff; border-radius:24px; padding:64px 48px; text-align:center;
    max-width:var(--container); margin:0 auto;
  }
  @media(max-width:640px){ .social{ padding:44px 22px; } }
  .social .stars-big{ color:var(--accent); font-size:26px; letter-spacing:4px; margin-bottom:18px; }
  .social h2{ color:#fff; font-size:clamp(24px,4vw,34px); max-width:20ch; margin:0 auto 14px; }
  .social p{ color:rgba(255,255,255,.72); max-width:52ch; margin:0 auto 30px; font-size:15.5px; }

  /* ===== CTA final ===== */
  .cta-final{
    text-align:center; background:linear-gradient(135deg, var(--accent), var(--accent-deep));
    border-radius:24px; padding:70px 32px; color:var(--ink); max-width:var(--container); margin:0 auto;
  }
  .cta-final h2{ color:var(--ink); font-size:clamp(26px,4.5vw,40px); max-width:18ch; margin:0 auto 16px; }
  .cta-final p{ color:rgba(46,42,37,.78); margin:0 auto 30px; max-width:48ch; }
  .cta-final .btn-primary{ background:var(--ink); color:var(--accent); box-shadow:0 10px 26px -10px rgba(0,0,0,.35); }
  .cta-final .fine{ margin-top:22px; font-size:13px; color:rgba(46,42,37,.7); }
  .cta-final .fine a{ text-decoration:underline; color:var(--ink); }

  /* ===== Footer ===== */
  footer{ background:linear-gradient(145deg,#292520,#34302b); color:rgba(255,246,234,.72); padding:64px 0 28px; }
  .foot-grid{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; margin-bottom:40px; }
  @media(max-width:720px){ .foot-grid{ grid-template-columns:1fr; gap:28px; } }
  footer h4{ color:#fff; font-family:var(--body); font-size:13px; letter-spacing:.06em; text-transform:uppercase; margin:0 0 16px; font-weight:600; }
  footer .brand{ font-family:var(--display); color:#fff; font-size:20px; margin-bottom:12px; }
  footer ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; font-size:14.5px; }
  footer ul a{ transition:color .15s ease, transform .15s ease; display:inline-block; }
  footer ul a:hover{ color:var(--accent); transform:translateX(3px); }
  .foot-bottom{ border-top:1px solid rgba(255,255,255,.12); padding-top:22px; font-size:13px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

  /* ===== Ícones de contato (WhatsApp / Instagram) ===== */
  .icon-row{ display:flex; align-items:center; gap:8px; }
  .icon-btn{
    width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    background:var(--accent-soft); color:var(--ink); transition:background .15s ease, transform .15s ease, color .15s ease;
    flex:none; border:1.5px solid rgba(46,42,37,.12);
  }
  .icon-btn svg{ width:22px; height:22px; }
  .icon-btn[aria-label="Falar no WhatsApp"] svg{ display:none; }
  .icon-btn[aria-label="Falar no WhatsApp"]::before{
    content:""; width:22px; height:22px; background:currentColor;
    -webkit-mask:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTIuMDQgMmE5Ljg0IDkuODQgMCAwIDAtOC41IDE0Ljc4TDIgMjJsNS4zNi0xLjQ4QTkuOTggOS45OCAwIDEgMCAxMi4wNCAyWm0wIDE3Ljk2YTguMSA4LjEgMCAwIDEtNC4xMy0xLjEzbC0uMy0uMTgtMy4xOC44OC44NS0zLjEtLjItLjMyQTguMDggOC4wOCAwIDEgMSAxMi4wNCAyMFptNC40NC02LjA2Yy0uMjQtLjEyLTEuNDQtLjcxLTEuNjYtLjc5LS4yMi0uMDgtLjM4LS4xMi0uNTUuMTItLjE2LjI0LS42Mi43OS0uNzYuOTUtLjE0LjE2LS4yOC4xOC0uNTMuMDYtLjI0LS4xMi0xLjAyLS4zOC0xLjk1LTEuMmE3LjMgNy4zIDAgMCAxLTEuMzUtMS42OGMtLjE0LS4yNC0uMDItLjM3LjEtLjQ5LjExLS4xMS4yNS0uMjguMzctLjQyLjEyLS4xNC4xNi0uMjQuMjQtLjQxLjA4LS4xNi4wNC0uMy0uMDItLjQyLS4wNi0uMTItLjU1LTEuMzEtLjc1LTEuOC0uMi0uNDctLjQtLjQtLjU1LS40MWgtLjQ3Yy0uMTYgMC0uNDMuMDYtLjY1LjMtLjIyLjI0LS44NS44My0uODUgMi4wMnMuODcgMi4zNC45OSAyLjVjLjEyLjE2IDEuNzEgMi42MSA0LjE0IDMuNjYuNTguMjUgMS4wMy40IDEuMzguNTEuNTguMTggMS4xMS4xNiAxLjUzLjEuNDctLjA3IDEuNDQtLjU5IDEuNjQtMS4xNi4yLS41Ny4yLTEuMDYuMTQtMS4xNi0uMDYtLjEtLjIyLS4xNi0uNDYtLjI4WiIvPgo8L3N2Zz4K") center/contain no-repeat;
    mask:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+CiAgPHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTIuMDQgMmE5Ljg0IDkuODQgMCAwIDAtOC41IDE0Ljc4TDIgMjJsNS4zNi0xLjQ4QTkuOTggOS45OCAwIDEgMCAxMi4wNCAyWm0wIDE3Ljk2YTguMSA4LjEgMCAwIDEtNC4xMy0xLjEzbC0uMy0uMTgtMy4xOC44OC44NS0zLjEtLjItLjMyQTguMDggOC4wOCAwIDEgMSAxMi4wNCAyMFptNC40NC02LjA2Yy0uMjQtLjEyLTEuNDQtLjcxLTEuNjYtLjc5LS4yMi0uMDgtLjM4LS4xMi0uNTUuMTItLjE2LjI0LS42Mi43OS0uNzYuOTUtLjE0LjE2LS4yOC4xOC0uNTMuMDYtLjI0LS4xMi0xLjAyLS4zOC0xLjk1LTEuMmE3LjMgNy4zIDAgMCAxLTEuMzUtMS42OGMtLjE0LS4yNC0uMDItLjM3LjEtLjQ5LjExLS4xMS4yNS0uMjguMzctLjQyLjEyLS4xNC4xNi0uMjQuMjQtLjQxLjA4LS4xNi4wNC0uMy0uMDItLjQyLS4wNi0uMTItLjU1LTEuMzEtLjc1LTEuOC0uMi0uNDctLjQtLjQtLjU1LS40MWgtLjQ3Yy0uMTYgMC0uNDMuMDYtLjY1LjMtLjIyLjI0LS44NS44My0uODUgMi4wMnMuODcgMi4zNC45OSAyLjVjLjEyLjE2IDEuNzEgMi42MSA0LjE0IDMuNjYuNTguMjUgMS4wMy40IDEuMzguNTEuNTguMTggMS4xMS4xNiAxLjUzLjEuNDctLjA3IDEuNDQtLjU5IDEuNjQtMS4xNi4yLS41Ny4yLTEuMDYuMTQtMS4xNi0uMDYtLjEtLjIyLS4xNi0uNDYtLjI4WiIvPgo8L3N2Zz4K") center/contain no-repeat;
  }
  .icon-btn:hover{ background:var(--accent-deep); color:#fff; border-color:var(--accent-deep); transform:translateY(-2px); }
  footer .icon-btn{ background:rgba(255,255,255,.14); color:#fff; border-color:rgba(255,255,255,.28); }
  footer .icon-btn:hover{ background:var(--accent); color:var(--ink); border-color:var(--accent); }

  /* ===== Botão voltar ao topo ===== */
  .top-float{
    position:fixed; right:22px; bottom:88px; z-index:60; background:#fff; color:var(--ink); width:44px; height:44px;
    border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 20px -6px rgba(0,0,0,.28);
    font-size:18px; border:1px solid rgba(46,42,37,.1); transition:transform .18s ease, opacity .25s ease;
    opacity:0; pointer-events:none; transform:translateY(8px);
  }
  .top-float.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
  .top-float:hover{ transform:translateY(-2px); }

  /* ===== WhatsApp flutuante ===== */
  .wa-float{
    position:fixed; right:22px; bottom:22px; z-index:60; background:#25D366; color:#fff; width:58px; height:58px;
    border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 24px -6px rgba(0,0,0,.35);
    font-size:28px; transition:transform .18s ease;
  }
  .wa-float:hover{ transform:scale(1.07); }
  .wa-float svg{ width:30px; height:30px; fill:currentColor; }
  .wa-float:focus-visible, .icon-btn:focus-visible, .btn:focus-visible{
    outline:3px solid #fff; outline-offset:3px;
    box-shadow:0 0 0 5px var(--accent-deep);
  }

  @media(max-width:720px){
    .nav{ padding-top:11px; padding-bottom:11px; }
    .nav .brand img{ height:40px; }
    .inner-hero{ min-height:310px!important; }
    .inner-hero .hero-content{ padding-bottom:42px!important; }
    .hero-carousel-arrow{ display:none; }
    .hero-carousel .hero-content{ padding-bottom:126px; }
    .hero-carousel-dots{ bottom:64px; padding:9px 11px; }
  }

  @media (prefers-reduced-motion: reduce){
    .hero-carousel.carousel-ready .hero-slide{ transition:none; transform:none; }
  }

  /* ===== Consentimento e privacidade ===== */
  .cookie-banner{
    position:fixed; z-index:120; left:50%; bottom:18px; width:min(1120px,calc(100% - 32px));
    transform:translate(-50%,calc(100% + 40px)); opacity:0; pointer-events:none;
    display:flex; align-items:center; justify-content:space-between; gap:28px; padding:22px 24px;
    border:1px solid rgba(46,42,37,.12); border-radius:20px; background:rgba(255,255,255,.97);
    box-shadow:0 24px 70px -24px rgba(20,18,15,.5); backdrop-filter:blur(14px);
    transition:transform .3s ease,opacity .3s ease;
  }
  .cookie-banner.is-visible{ transform:translate(-50%,0); opacity:1; pointer-events:auto; }
  .cookie-banner-copy{ max-width:650px; }
  .cookie-banner-copy strong{ display:block; font-family:var(--display); font-size:20px; margin-bottom:5px; }
  .cookie-banner-copy p{ margin:0; color:var(--ink-soft); font-size:14px; line-height:1.55; }
  .cookie-banner-copy a,.cookie-policy-link a{ color:#7a5900; text-decoration:underline; text-underline-offset:3px; }
  .cookie-actions,.cookie-dialog-actions{ display:flex; align-items:center; gap:9px; flex-wrap:wrap; }
  .cookie-btn{ min-height:42px; padding:10px 17px; border-radius:100px; font:600 13px var(--body); cursor:pointer; }
  .cookie-btn-primary{ border:1px solid var(--accent); background:var(--accent); color:var(--ink); }
  .cookie-btn-secondary{ border:1px solid rgba(46,42,37,.2); background:#fff; color:var(--ink); }
  .cookie-btn:hover{ transform:translateY(-1px); }
  .cookie-btn:focus-visible,.cookie-close:focus-visible{ outline:3px solid var(--accent-deep); outline-offset:2px; }
  .cookie-modal{ position:fixed; z-index:130; inset:0; display:none; place-items:center; padding:20px; background:rgba(18,17,15,.66); }
  .cookie-modal.is-open{ display:grid; }
  .cookie-modal-open{ overflow:hidden; }
  .cookie-dialog{ position:relative; width:min(620px,100%); max-height:min(760px,calc(100vh - 40px)); overflow:auto; padding:34px; border-radius:24px; background:#fff; box-shadow:0 30px 90px rgba(0,0,0,.35); }
  .cookie-dialog h2{ font-size:clamp(26px,4vw,34px); margin-bottom:10px; }
  .cookie-intro{ color:var(--ink-soft); line-height:1.6; margin:0 0 24px; }
  .cookie-close{ position:absolute; top:16px; right:16px; width:38px; height:38px; border:0; border-radius:50%; background:var(--accent-soft); color:var(--ink); font-size:24px; cursor:pointer; }
  .cookie-option{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:20px; padding:18px 0; border-top:1px solid rgba(46,42,37,.1); }
  .cookie-option strong{ display:block; margin-bottom:5px; }
  .cookie-option p{ margin:0; max-width:44ch; color:var(--ink-soft); font-size:13.5px; line-height:1.5; }
  .cookie-required{ flex:none; color:#6f580a; font-size:12px; font-weight:700; }
  .cookie-option input{ position:absolute; opacity:0; pointer-events:none; }
  .cookie-switch{ flex:none; width:46px; height:26px; padding:3px; border-radius:100px; background:#c9c4bc; cursor:pointer; transition:background .2s ease; }
  .cookie-switch::after{ content:""; display:block; width:20px; height:20px; border-radius:50%; background:#fff; box-shadow:0 2px 7px rgba(0,0,0,.22); transition:transform .2s ease; }
  .cookie-option input:checked + .cookie-switch{ background:var(--accent-deep); }
  .cookie-option input:checked + .cookie-switch::after{ transform:translateX(20px); }
  .cookie-option input:focus-visible + .cookie-switch{ outline:3px solid rgba(227,160,8,.35); outline-offset:2px; }
  .cookie-dialog-actions{ justify-content:flex-end; margin-top:24px; }
  .cookie-policy-link{ text-align:center; margin:20px 0 0; font-size:13px; }
  .cookie-settings{ border:0; padding:0; background:none; color:inherit; font:inherit; cursor:pointer; text-decoration:underline; text-underline-offset:3px; }
  @media(max-width:760px){
    .cookie-banner{ align-items:stretch; flex-direction:column; gap:16px; padding:20px; bottom:10px; }
    .cookie-actions{ display:grid; grid-template-columns:1fr 1fr; }
    .cookie-actions .cookie-btn-primary{ grid-column:1/-1; grid-row:1; }
    .cookie-dialog{ padding:28px 22px 24px; }
  }

  section .wrap > .section-head + .pkg-grid, .gal-grid{ }
