:root{
  --brand: #124D55;                 /* cor da marca */
  --bg: #fff;
  --text: #1b1b1b;
  --muted: #4b4b4b;
  --container: 1200px;
  --hero-h-d: 100dvh;               /* hero ocupa 100% da página */
  --hero-h-m: 100dvh;
  --overlay: linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.40));
  /* ===== ÂNCORA: altura do header para compensar o offset ===== */
  --nav-h: 72px;                    /* ajuste conforme a altura real do header */
--float-size: 56px;
    --float-bg: #10b981;   /* verde */
    --float-fg: #fff;      /* ícone */
    --float-bg-hover: #0ea371;
    --float-shadow: 0 10px 20px rgba(0, 0, 0, 0.384), 0 6px 6px rgba(0, 0, 0, 0.247);
    --float-z: 9999;
    --float-offset: 20px;  /* margem da borda */
}

/* Reset mínimo */
*{ box-sizing: border-box }
html,body{ margin:0; padding:0; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }  /* ⚠️ tira os pontos do UL */
body{
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* ===== Ajuste de âncoras atrás do header sticky ===== */
html{ scroll-behavior: smooth; }            /* opcional: rolagem suave */
[id]{ scroll-margin-top: var(--nav-h); }    /* compensa o header em todos os alvos com id */

/* Se precisar, você pode usar a classe abaixo em casos específicos:
.anchor-offset::before{
  content:""; display:block;
  height: var(--nav-h);
  margin-top: calc(var(--nav-h) * -1);
}
*/

@media (max-width: 900px){
  /* header costuma ficar um pouco menor no mobile */
  :root{ --nav-h: 64px; }
}

/* ================= NAV ================= */
.nav{
  position: sticky; top: 0; z-index: 1000;
  background: var(--brand); color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.nav__container{
  max-width: var(--container); margin:0 auto; padding:.75rem 1rem;
  display:grid; grid-template-columns: 1fr auto auto; align-items:center; gap:1rem;
}
.nav__brand{ display:inline-flex; align-items:center; text-decoration:none }
.nav__logo{ height:auto; width:210px }

.nav__checkbox{ position:absolute; left:-9999px } /* para o label funcionar */
.nav__toggle{
  display:none; width:40px; height:40px; cursor:pointer;
  align-items:center; justify-content:center;
  border-radius:.75rem; border:1px solid rgba(255,255,255,.24);
}
.nav__bar{ display:block; width:22px; height:2px; background:#fff; }
.nav__bar:nth-child(2){ margin:6px 0 }

.nav__menu{ display:flex; align-items:center; gap:1.25rem; }
.nav__links{
  display:flex; gap:2rem; font-weight:700; letter-spacing:.2px;
}
.nav__link{ color:#fff; text-decoration:none; font-size:1.05rem; padding:.5rem .25rem }
.nav__link:hover{ text-decoration:underline; text-underline-offset:4px }

.nav__social{ display:flex; gap:.75rem; margin-left:.5rem }
.nav__icon{
  width:24px; height:24px; display:inline-flex; align-items:center; justify-content:center; color:#fff; text-decoration:none; fill: #fff;
}

@media (max-width: 900px){
  .nav__container{ grid-template-columns: 1fr auto; position:relative; }
  .nav__toggle{ display:inline-flex; z-index:1001; }
  .nav__menu{
    position:absolute; top:100%; left:0; right:0; z-index:1000;
    background: var(--brand);
    display:grid; grid-template-columns:1fr; gap:1rem;
    max-height:0; overflow:hidden; padding:0; border-top:0;
    transition: max-height .28s ease, padding .28s ease, opacity .2s ease;
    opacity:0; visibility:hidden;
  }
  .nav__links{ flex-direction:column; gap:.75rem; padding-top:.25rem }
  .nav__link{ font-size:1.125rem; padding:.5rem 0 }
  .nav__social{ margin:.25rem 0 .25rem 0; }
  .nav__checkbox:checked ~ .nav__menu{
    max-height:70vh; padding:1rem 1rem 1.25rem; border-top:1px solid rgba(255,255,255,.12);
    opacity:1; visibility:visible;
  }
}

/* ================= HERO ================= */
.hero{ background: var(--brand); color:#fff; }
.hero__viewport{
  position: relative; overflow: hidden;
  height: var(--hero-h-d);
  cursor: pointer; outline:none;
}
@media (max-width: 900px){ .hero__viewport{ height: var(--hero-h-m); } }

.hero__track{
  display: grid; grid-auto-flow: column; grid-auto-columns: 100%;
  height: 100%; transform: translateX(0); transition: transform .5s ease;
}
.hero__slide{ position: relative; height:100%; }
.hero__figure{ position: relative; height:100%; margin:0; isolation:isolate; }
.hero__image{ width:100%; height:100%; object-fit:cover; object-position:center; }
.hero__figure::after{ content:""; position:absolute; inset:0; background: var(--overlay); z-index:1; }
.hero__caption{
  position:absolute; inset:0; z-index:2;
  display:grid; align-content:center; padding: clamp(16px, 4vw, 48px);
}
.hero__title{
  margin:0 0 .25em 0; color:#fff; font-weight:900; line-height:.95;
  font-size: clamp(2rem, 6vw, 4.5rem);
}
.hero__subtitle{
  margin:0; color: rgba(255,255,255,.92);
  font-weight:500; font-size: clamp(1rem, 2.6vw, 1.5rem);
  max-width: 60ch;
}
.hero__viewport:focus-visible{ outline:2px dashed #fff; outline-offset:4px }

/* ================= SUBTÍTULO ================= */
.subheading{
  background:#f7f7f7; padding: 1.5rem 0;
  border-top:1px solid #ececec; border-bottom:1px solid #ececec;
}
.subheading__title{
  margin:0; text-align:center; font-weight:800; letter-spacing:.2px; color: var(--brand);
  font-size: 2rem;
}

/* ================= FEATURES ================= */
.feature{ padding: clamp(2rem, 6vw, 4rem) 0; }
.feature__grid{
    height: 230px;
  display:grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.25rem, 4vw, 3rem); align-items:center;
}
.feature--alt .feature__grid{ grid-template-columns: .95fr 1.05fr; }

@media (max-width: 900px){
  /* no mobile a imagem vem antes do texto sempre */
  .feature__grid, .feature--alt .feature__grid{ grid-template-columns:1fr; }
  .feature__media{ order: -1; }
}

.feature__title{
  margin:0 0 .5rem; color: var(--brand);
  font-weight:900; line-height:1.1; font-size: clamp(1.4rem, 3.2vw, 2.2rem);
}
.feature__tag{ font-weight:800; font-size:.8em; opacity:.95 }
.feature__desc{
  margin:0; color: var(--muted);
  font-weight:500; line-height:1.7; font-size: clamp(1rem, 2.2vw, 1.125rem);
}
.feature__media{ margin:0 }
.feature__img{
  width:100%; object-fit:cover; object-position:center;
}

/* ================= BADGES (3 quadrados, horizontais, sem ícones) ================= */
  /* ===== BENEFÍCIOS — alinhado e espaçado como você pediu ===== */
.badges{
   margin-top: clamp(15rem, 3vw, 2.5rem);
   margin-bottom: clamp(8rem, 3vw, 2.5rem);
}

.badges__row{
  position: relative;
  display: flex !important;
  align-items: center;                 /* alinha vertical dos três */
  justify-content: space-evenly;       /* espaçamento horizontal igual */
  gap: clamp(2rem, 5vw, 3rem);         /* folga entre colunas (referência p/ os pontos) */
  --sep-gap: clamp(2rem, 5vw, 3rem);   /* mesma folga usada no ponto */
  text-align: center;                  /* centro em todos */
}

/* cada bloco vira uma coluninha, centralizado */
.badge{
  position: relative;
  flex: 0 1 28rem;                     /* largura parecida; ajusta se quiser */
  display: flex;
  flex-direction: column;
  align-items: center;
  color:#124D55;
}

/* título grande bem próximo do subtítulo */
.badge__title{
  margin: 0;                           /* cola no topo */
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.5px;
 
}

.badge__desc{
  margin: .25rem 0 0;                  /* aproxima do título */
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.15;
}

/* “mancha” atrás (mesmo visual) */
.badge::before{
  content:"";
  position:absolute;
  z-index:-1;
  width: clamp(220px, 36vw, 380px);
  height: clamp(220px, 36vw, 380px);
  border-radius: 50%;
  background:
    radial-gradient(60% 60% at 40% 40%, rgba(196,188,165,.35) 0%, rgba(196,188,165,.18) 55%, rgba(196,188,165,0) 75%),
    radial-gradient(60% 60% at 70% 60%, rgba(196,188,165,.22) 0%, rgba(196,188,165,0) 70%);
  left: 50%;
  top: 0;
  transform: translate(-50%, -18%);
}

/* ordem visual do print (se quiser manter seu HTML como está)
   1º do HTML (100%) → meio | 2º (zero corantes) → esquerda | 3º (zero transgênicos) → direita */
.badge:nth-child(1){ order: 2; }
.badge:nth-child(2){ order: 1; }
.badge:nth-child(3){ order: 3; }

/* pontos separadores exatamente no centro do vão */
.badge:not(:last-child)::after{
  content: "•";
  position: absolute;
  top: 50%;
  right: calc(-.5 * var(--sep-gap));
  transform: translate(50%, -50%);
  color:#124D55;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  opacity: .95;
  pointer-events: none;
}

/* mobile: empilha e remove pontos */
/* ===== FIX MOBILE: empilhado compacto no #beneficios ===== */
@media (max-width: 900px){
  /* seção com pouco respiro */
  #beneficios.badges{
    margin-top: .4rem !important;
    padding: .5rem 0 .6rem !important;
  }

  /* empilha, centraliza e usa espaços mínimos */
  #beneficios .badges__row{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: .3rem !important;                 /* ajuste fino do espaço entre blocos */
    text-align: center;
  }

  /* ⚠️ remove o flex-basis de 28rem que estourava a altura */
  #beneficios .badge{
    flex: 0 0 auto !important;             /* altura passa a ser só do conteúdo */
    width: 100% !important;
    margin-top: 8em !important;
    padding: 0 !important;
  }

  /* títulos e descrições bem próximos e menores */
  #beneficios .badge__title{
    margin: 0 !important;
    font-size: clamp(3rem, 7.2vw, 2.2rem) !important;
    line-height: 1 !important;
    letter-spacing: -.3px;
    text-transform: lowercase;
  }
  #beneficios .badge__desc{
    margin: .08rem 0 0 !important;
    font-size: clamp(.9rem, 3.4vw, 1rem) !important;
    line-height: 1.15 !important;
  }

  /* mancha menor para não empurrar a altura */
  #beneficios .badge::before{
    width: min(40vw, 140px);
    height: min(40vw, 140px);
    left: 50%;
    top: 0;
    transform: translate(-50%, -10%) !important;
  }

  /* sem pontos quando empilha */
  #beneficios .badge:not(:last-child)::after{
    display: none !important;
  }
}


/* ================= PRODUTOS ================= */
.products{ padding: clamp(2rem, 6vw, 4rem) 0; }
.products__title{
  margin: 0 0 1.25rem; text-align:center; color: var(--brand);
  font-weight: 900; font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}
.products__grid{
  display:grid; gap: 1.25rem;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1140px){ .products__grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px){
    .products__grid{ grid-template-columns: repeat(2, 1fr); }
        .feature__grid { height: auto;}
    .badges{ margin-top: auto; }
    
}
@media (max-width: 520px){ 
    .products__grid{ grid-template-columns: 1fr; } 
        .feature__grid { height: auto;}
    .badges{ margin-top: auto; }
    
}

.product{ display:grid; gap:.75rem; }

.product__img{
  width:100%;  object-fit:cover; object-position:center;
}
.product__card{
  background:#fff; border:1px solid #bebebe; border-radius:12px;
  padding: .85rem; display:grid; gap:.5rem; text-align:center;
  height: 220px;
}
.product__name{
  margin:0; font-weight:800; letter-spacing:.2px; color:#222; font-size:1.05rem;
}
.btn{
  display:inline-block; padding:.6rem 1rem; border-radius: 999px;
  text-decoration:none; font-weight:700; letter-spacing:.2px;
  border:2px solid var(--brand); color: var(--brand); background:#fff;
}
.btn:hover{ background: var(--brand); color: #fff; }
.btn--solid{ background: var(--brand); color:#fff; border-color: var(--brand); }
.btn--solid:hover{ filter: brightness(1.05); }

/* ================= MAPA ================= */
.map{ padding: clamp(2rem, 6vw, 4rem) 0; background:#f7f7f7; }
.map__frame{
  border-radius: 14px; overflow: hidden; border:1px solid #e6e6e6;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.map__frame iframe{ display:block; width:100%; height: 420px; border:0 }
@media (max-width: 900px){ .map__frame iframe{ height: 320px; } }

/* ================= BANNER (imagem com texto sobreposto) ================= */
.banner{ position: relative; color:#fff; }
.banner__media{ position:relative; }
.banner__img{ width:100%; height: clamp(320px, 38vw, 520px); object-fit:cover; object-position:center; display:block; }
.banner__overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.35)); }
.banner__content{
  position:absolute; inset:0; display:grid; align-content:center;
  padding: clamp(16px, 4vw, 48px);
}
.banner__title{
  margin:0 0 .25em; font-weight:900; line-height:1; font-size: clamp(1.6rem, 4vw, 2.6rem);
}
.banner__subtitle{ margin:0; font-weight:500; font-size: clamp(1rem, 2.6vw, 1.2rem); max-width: 60ch; }

/* ================= CONTATO ================= */
.contact{ padding: clamp(2rem, 6vw, 4rem) 0;}
.contact__grid{
  display:grid; gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: .9fr 1.1fr; align-items:start;
}
@media (max-width: 900px){ .contact__grid{ grid-template-columns: 1fr; } }

.form{ display:grid; gap: .9rem; }
.form__row{ display:grid; gap:.35rem; }
.form__label{ font-weight:700; color:#222; }
.form__input, .form__textarea{
  width:100%; padding:.8rem 1rem; border-radius:12px; border:1px solid #ddd; font: inherit;
  background:#fff;
}
.form__input:focus, .form__textarea:focus{
  outline: 2px solid var(--brand); border-color: var(--brand);
}

/* ================= FOOTER ================= */
.footer{
  background: var(--brand); color: #fff;
  padding: 3rem 1rem 1.25rem;
}
.footer__container{
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.footer__logo img{ height: auto; width: 220px; display:block; }
.footer__tagline{
  margin: .75rem 0 0; font-weight: 900; letter-spacing: .6px; text-transform: uppercase;
}
.footer__heading{
  margin: 0 0 .8rem; font-weight: 700; font-size: 1.4rem;
}
.footer__links{ display: grid; gap: .5rem; }
.footer__links a{
  color: rgba(255,255,255,.96); text-decoration: none; font-weight: 500;
}
.footer__links a:hover{ text-decoration: underline; text-underline-offset: 3px; }
.footer__contactList{ display: grid; gap: .6rem; }
.footer__contactItem{
  display: grid; grid-template-columns: 22px 1fr; gap: .6rem; align-items: start;
  color: rgba(255,255,255,.95); font-weight: 500;
}
.footer__contactItem svg{ width:22px; height:22px }
.footer__contactItem a{ color:inherit; text-decoration:none }
.footer__contactItem a:hover{ text-decoration: underline; text-underline-offset: 3px }
.footer address{ font-style: normal }

.footer__bottom{
  max-width: var(--container); margin: 1.25rem auto 0; padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.25); text-align: center;
}
.footer__bottom p{ margin:0 }
.footer__bottom a{ color:#fff; text-decoration:none }
.footer__bottom a:hover{ text-decoration: underline; text-underline-offset: 3px }

@media (max-width: 900px){
  .footer__container{
    grid-template-columns: 1fr; gap: 2rem; text-align: center;
  }
}

/* Nº 5 (badges) empilhado no mobile */
@media (max-width: 900px){
  .badges__row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;       /* tira o scroll horizontal */
    padding-bottom: 0;
  }
  .badge{ min-width: 0; }    /* libera a largura total */
}


/* ===== Reveal (animações de entrada) ===== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
  transition-delay: var(--reveal-delay, 15s);
}
.reveal--up{ transform: translateY(18px); }
.reveal--left{ transform: translateX(-18px); }
.reveal--right{ transform: translateX(18px); }
.reveal.is-inview{
  opacity: 1;
  transform: translate(0,2);
}

/* Respeita redução de movimento do usuário */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
}

/* Meta dos produtos (sabor e peso) */
.product__meta{
  display: flex;
  gap: .6rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #555;
  font-weight: 600;
  font-size: .95rem;
  margin: .1rem 0 .2rem;
}
.product__meta span{
  background: #f6f6f6;
  border: 1px solid #eee;
  border-radius: 999px;
  padding: .35rem .65rem;
  line-height: 1;
}
.products__grid{
  /* em vez de repeat(5, 1fr) */
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  justify-content: center;              /* centraliza o bloco de colunas */
  justify-items: stretch;               /* cada card ocupa a coluna toda */
}

/* Garantir bom empilhamento no mobile */
@media (max-width: 520px){
  .products__grid{
    grid-template-columns: minmax(240px, 1fr);
  }
}





/* cole no seu CSS global */
:focus:not(:focus-visible){ outline: none !important; }

/* e, quando o script adiciona tabindex=-1, não mostrar outline */
[tabindex="-1"]:focus{ outline: none !important; }

/* opcional: define um outline bonito para teclado */
:root{
  --anchor-focus-outline: 2px dashed #124D55;
  --anchor-focus-offset: 4px;
}
:focus-visible{
  outline: var(--anchor-focus-outline);
  outline-offset: var(--anchor-focus-offset);
}
.float-btn{
   color:#e9e9e9; text-decoration:none; fill: #e9e9e9;
    position: fixed;
    right: var(--float-offset);
    bottom: calc(var(--float-offset) + env(safe-area-inset-bottom, 0));
    width: var(--float-size);
    height: var(--float-size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--float-bg);
    color: var(--float-fg);
    box-shadow: var(--float-shadow);
    text-decoration: none;
    z-index: var(--float-z);
    transition: transform .15s ease, filter .2s ease, background .2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .float-btn:hover{ transform: translateY(-2px); background: var(--float-bg-hover); }
  .float-btn:active{ transform: translateY(0); filter: brightness(.95); }
  .float-btn:focus-visible{
    outline: 3px solid #a7f3d0; outline-offset: 3px;
  }

  /* Opcional: esconder em impressões */
  @media print { .float-btn{ display: none; } }

  /* Opcional: reduzir em telas muito pequenas */
  @media (max-width: 380px){
    :root{ --float-size: 50px; --float-offset: 16px; }
  }



  /* */



  /* Centraliza verticalmente e ancora à esquerda */
.hero__caption {
  position: absolute;
  top: 50%;
  left: clamp(16px, 4vw, 64px);
  transform: translateY(-50%);
  right: auto;
  bottom: auto;

  text-align: left;
  display: grid;
  gap: 0.5rem;

  /* dimensão/legibilidade */
  max-width: min(720px, 90%);
  padding: 0; /* já temos respiro pela "left" responsiva */
  background: none; /* remova o gradiente do rodapé */
  color: #fff;
}

/* Títulos alinhados à esquerda */
.banner__title { margin: 0 0 .25em; }
.hero__subtitle { margin: 0; }

/* Em telas bem estreitas, garante respiro lateral */
@media (max-width: 480px) {
  .hero__caption {
    left: 16px;
    right: 16px;                 /* evita colar na borda direita */
    max-width: calc(100% - 32px);
  }
}

/* Base: mantém alinhado à esquerda e centralizado verticalmente */
.hero__caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(16px, 4vw, 64px);
  right: auto;
  max-width: min(720px, 90%);
  display: grid;
  gap: 0.6rem;              /* espaço entre título e subtítulo */
  text-align: left;
  color: #fff;
}

/* ✅ Mobile: adiciona respiro e ajusta tipografia */
@media (max-width: 480px) {
  .hero__caption {
    left: 16px;
    right: 16px;                         /* evita colar na borda */
    max-width: calc(100% - 32px);
    padding: clamp(10px, 4vw, 18px);     /* espaço interno */
    border-radius: 8px;
    gap: 0.75rem;                        /* um pouco mais de espaço entre linhas */
    line-height: 1.2;                    /* melhora legibilidade */
    text-wrap: pretty;                   /* quebra de linha mais agradável */
    hyphens: auto;
    white-space: normal;
  }

  .banner__title {
    margin: 0;
    font-size: clamp(1.2rem, 6.2vw, 1.6rem);
    line-height: 1.1;
  }
  .hero__subtitle {
    margin: 0;
    font-size: clamp(.95rem, 4.5vw, 1.1rem);
    line-height: 1.25;
    opacity: .95;
  }
}

/* Se usar áreas seguras (iOS notch), dá um bônus de respiro */
@supports (padding: max(0px)) {
  @media (max-width: 480px) {
    .hero__caption {
      padding-left: max(16px, env(safe-area-inset-left));
      padding-right: max(16px, env(safe-area-inset-right));
    }
  }
}

/* ===== MOBILE: IMAGEM ACIMA DO TEXTO, 100% DA LARGURA ===== */
@media (max-width: 900px) {
  .feature__grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* força imagem acima do texto */
  .feature__media {
    order: -1 !important;
    width: 100% !important;
    margin: 0 0 15px 0 !important;
  }

  .feature__img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .feature__text {
    text-align: center !important;
    padding: 0 15px !important;
  }

  .feature__title,
  .feature__desc {
    text-align: center !important;
  }
}
/* Apenas para as seções feature no mobile */
@media (max-width: 768px) {
  .feature__grid {
    flex-direction: column;
  }

  .feature__media img {
    width: 100%;
    height: auto;
  }
}

.hero img {
  width: 100vw; /* 100% da tela */
  height: auto;
  display: block;
}

