/* =========================================================
   RESET + TOKENS
   ========================================================= */

:root{
  /* Paleta (ajuste se quiser) */
  --bg: #f3ead9;
  --bg-2:#f8f6f2;
  --card:#ffffff;

  --text:#561E11;
  --muted:#7b6a5f;

  --line: rgba(75, 42, 24, .12);

  --accent:#DBA043;
  --accent-2:#b18457;

  --shadow: 0 18px 36px rgba(73, 12, 12, 0.12);
  --shadow-soft: 0 14px 26px rgba(0,0,0,.10);

  --radius: 18px;
  --radius-lg: 28px;

  --container: 1120px;
  --pad: clamp(16px, 3vw, 28px);

  --font: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-2);
  line-height: 1.55;

  /* ✅ evita “cortar” quando navega por # */
  scroll-padding-top: calc(var(--header-h) + 18px);
   overflow-x: hidden;
}

/* ✅ evita o título ficar embaixo do menu quando clica no link */
section[id]{
  scroll-margin-top: calc(var(--header-h) + 18px);
}



img{ max-width:100%; display:block; }

a{ color: inherit; text-decoration: none; }

/* focus outlines for keyboard users */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;

  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Acessibilidade */
.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left: 16px; }

/* Tipografia */
h1, h2, h3{
  margin: 0 0 10px 0;
  line-height: 1.15;
}

h1{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
}

h2{
  font-size: clamp(24px, 2.4vw, 54px);
  font-weight: 800;
}

h3{
  font-size: 18px;
  font-weight: 800;
}

.lead{
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
}

.lead-2{
  font-size: 14px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}


.muted{ color: var(--muted); }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  will-change: transform;
}

.essence-cta{
  margin-top: 18px;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: #B18457;
  color: #f5f5f5;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}
.btn-primary:hover{ background:var(--accent); }

.btn-ghost{
  background: #FBE3B6;
  border-color:#C29C74;
}
.btn-ghost:hover{
  background: rgba(255,255,255,.55);
}

.btn-primary-guia{
  background: #B18457;
  color: #f5f5f5;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
  margin: 0 auto;
}



/* =========================================================
   HEADER / NAV
   ========================================================= */
/* ===== Topbar ===== */

.topbar{
  padding: 14px 0;
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Pill do menu */
.nav-pill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  /* ✅ garante que tudo fique na mesma linha */
  flex-wrap: nowrap;

  /* ✅ dá mais respiro pro botão não “escapar” */
  padding: 14px 24px;
  position: relative;

  border-radius: 999px;
  background: rgba(184, 146, 106, 0.85); /* 85% opacidade */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);             /* cor da pill (ajuste pro seu tom) */
  box-shadow: 0 14px 28px rgba(0,0,0,.10);
}

/* Logo + nome */
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.brand-logo{
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 999px;
}

.brand-text{
  white-space: nowrap;
}

/* Links centralizados */
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

.nav-links a{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  padding: 8px 6px;
  border-radius: 10px;
  transition: background .18s ease, opacity .18s ease;
}

.nav-links a:hover{
  background: rgba(255,255,255,.14);
}

/* Ações à direita */
.nav-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex: 0 0 auto;
  margin-left: 16px;
}

/* Botão Contato igual ao print */
.btn-contact{
  background: #f2b13a;
  color: #3b240f;
  font-weight: 900;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
  white-space: nowrap;
  flex: 0 0 auto;
}

.btn-contact:hover{
  filter: brightness(.97);
}

/* Hamburguer (só mobile) */
.nav-toggle{
  display: none; /* desktop */
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  cursor: pointer;

  align-items: center;
  justify-content: center;
}

.nav-toggle span{
  display:block;
  height: 2px;
  width: 18px;
  background: rgba(255,255,255,.95);
  margin: 4px auto;
  border-radius: 999px;
}

.nav-mobile{
  display: none;
  position: absolute;           /* fica preso na pill */
  top: calc(100% + 10px);       /* logo abaixo */
  right: 0;                     /* cola na direita */
  width: min(320px, 92vw);      /* não explode no tamanho */
  padding: 12px;
  border-radius: 18px;

  background: rgba(184, 146, 106, .96);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 18px 30px rgba(0,0,0,.14);
  backdrop-filter: blur(10px);

  z-index: 999;
}

.nav-mobile.is-open{ display: block; }

.nav-mobile a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.95);
  font-weight: 800;
}

.nav-mobile a:hover{
  background: rgba(255,255,255,.12);
}

/* botão contato dentro do dropdown */
.nav-mobile .btn-contact.mobile{
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* ===== Responsivo ===== */

/* Quando ficar apertado, esconde os links e mostra o hamburguer */
@media (max-width: 980px){
  .nav-links{ display:none; }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .brand{ min-width: auto; }
}

/* Ajuste fino pro mobile */
@media (max-width: 520px){
  .nav-pill{
    padding: 12px 14px;
    gap: 10px;
  }
  .brand-text{ font-size: 14px; }
  .btn-contact{ display:none; } /* no mobile o contato fica no dropdown */
  .brand-logo{ width: 36px; height: 36px; }
}

.historia-badge .fa-paw{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:grid;
  font-size: 25px;
  place-items:center;
  background: rgba(177,132,87,.18);
  border: 1px solid rgba(177,132,87,.35);
  color: rgba(75,42,24,.75);
}


/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding: clamp(28px, 5vw, 56px) 0 0;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(22px, 4vw, 54px);
  align-items:center;
  padding-bottom: clamp(24px, 4vw, 36px);
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(251,227,182,100%);
  border: 1px solid rgba(194, 156, 116, .20);
  font-weight: 800;
  font-size: 12px;
  gap: 5px;
  letter-spacing: .4px;
  color: var(--text);
  margin-bottom: 12px;
}

.highlight{
  color: var(--accent);
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ===== HERO IMAGENS ESTILO POLAROIDE ===== */

.hero-photos{
  position: relative;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

/* base das imagens */
.hero-img{
  position: relative;
  width: 220px;
  border-radius: 18px;
  overflow: hidden;

  background: #fff;
  padding: 6px; /* borda branca */
  box-shadow: 0 22px 40px rgba(0,0,0,.15);
  transition: transform .3s ease;
}

.hero-img img{
  width: 100%;
  height: 300px;
  object-fit: fill;
  border-radius: 14px;
  display: block;
}

/* imagem esquerda */
.hero-img-left{
  transform: rotate(-6deg);
}

/* imagem direita */
.hero-img-right{
  transform: rotate(5deg);
  margin-top: 30px; /* desce um pouco */
}

/* leve efeito ao passar mouse (opcional) */
.hero-img:hover{
  transform: rotate(0deg) scale(1.03);
}

/* Trustbar */
.trust{
  padding: 28px 0 0;
}

.trust-kicker{
  text-align: center;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  color: rgba(75,42,24,.60);
}

/* faixa clara */
.trust-bar{
  background: rgba(184, 146, 106, 0.85); /* bege clarinho */
  border-top: 1px solid rgba(75,42,24,.06);
  border-bottom: 1px solid rgba(75,42,24,.06);
}

/* itens no centro */
.trust-items{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 16px 0;
  font-weight: 900;
  color: var(--bg-2);
}

/* separador vertical */
.trust-sep{
  width: 1px;
  height: 18px;
  background: rgba(22, 21, 21, 0.2);
}

/* ========================================
   FILHOTES PREVIEW
======================================== */

.puppies-preview{
  padding: 70px 0;
}

.puppies-grid{
  margin-top: 30px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.puppy-card{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(75,42,24,.08);
}

.puppy-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition: transform .35s ease;
}

.puppy-card:hover img{
  transform: scale(1.08);
}

.puppies-cta{
  margin-top: 30px;
  text-align:center;
}

.mobile-hint{
  display:none;
  text-align:center;
  font-size:12px;
  color:rgba(75,42,24,.55);
  margin-bottom:10px;
}

@media (max-width:640px){
  .mobile-hint{
    display:block;
  }
}

@media (max-width:980px){

  .puppies-grid{
    grid-template-columns: repeat(3,1fr);
  }

}

@media (max-width:640px){

  .puppies-grid{
    grid-template-columns: repeat(2,1fr);
  }

}


@media (max-width:640px){

  .puppies-grid{
    display:flex;
    overflow-x:auto;
    gap:16px;
    padding-bottom:10px;
    scroll-snap-type:x mandatory;
  }

  .puppies-grid::-webkit-scrollbar{
    display:none;
  }

  .puppy-card{
    flex:0 0 70%;
    scroll-snap-align:start;
  }

  .puppy-card img{
    height:240px;
  }

}

/* ========================================
   FILHOTES NA PÁGINA DA RAÇA
======================================== */

.puppies-preview{
  padding: 22px 0 70px;
}

.puppies-grid{
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.puppy-card{
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(75,42,24,.08);
  background: #fff;
}

.puppy-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.puppy-card:hover img{
  transform: scale(1.06);
}

.puppies-cta{
  margin-top: 28px;
  text-align: center;
}

.mobile-hint{
  display: none;
  text-align: center;
  font-size: 12px;
  color: rgba(75,42,24,.55);
  margin-top: 10px;
}

.filhotes-empty-card{
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 42px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 0%, #fbf7ef 100%);
  border: 1px solid rgba(177,132,87,.20);
  box-shadow: 0 18px 36px rgba(0,0,0,.07);
  margin-top: 8px;
}

.filhotes-empty-card.is-visible{
  display: flex;
}

.filhotes-empty-icon{
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(177,132,87,.14);
  border: 1px solid rgba(177,132,87,.25);
  color: #8a521d;
  font-size: 24px;
  margin-bottom: 16px;
}

.filhotes-empty-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(251,227,182,1);
  border: 1px solid rgba(194,156,116,.20);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #7a4a1d;
  margin-bottom: 14px;
}

.filhotes-empty-title{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.3vw, 30px);
  color: #561E11;
}

.filhotes-empty-text{
  margin: 0 auto;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(75,42,24,.62);
}

.filhotes-empty-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 13px 22px;
  border-radius: 12px;
  background: #B18457;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 10px 22px rgba(177,132,87,.24);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.filhotes-empty-btn:hover{
  background: #DBA043;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(177,132,87,.30);
}

/* tablet */
@media (max-width: 980px){
  .puppies-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobile */
@media (max-width: 640px){
  .mobile-hint{
    display: block;
  }

  .puppies-grid{
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    margin-top: 22px;
  }

  .puppies-grid::-webkit-scrollbar{
    display: none;
  }

  .puppy-card{
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .puppy-card img{
    height: 240px;
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section{
  padding: clamp(40px, 6vw, 78px) 0;
}

.section-alt{
  background: rgba(177, 132, 87, .10);
  border-top: 1px solid rgba(75, 42, 24, .06);
  border-bottom: 1px solid rgba(75, 42, 24, .06);
}

.section-head{
  text-align:center;
  margin-bottom: 26px;
}

.kicker{
  display:block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  color: rgba(75, 42, 24, .55);
  margin-bottom: 10px;
}

/* Split (imagem + texto) */
.split{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(20px, 4vw, 60px);
  align-items:center;
}

/* =========================================================
   PHOTO STACK (igual à sua referência)
   ========================================================= */
.photo-stack{
  position: relative;
  width: min(300px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.stack{
  position:absolute;
  inset: 0;
  border-radius: 34px;
}

.stack-3{
  background: #f3ede6;
  transform: rotate(-2.2deg) scale(1.02);
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.10));
}

.stack-2{
  inset: 18px;
  background: #fbf7f2;
  border-radius: 30px;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.08));
}

.stack-1{
  inset: 34px;
  background: #fff;
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}

.stack-1 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   RAÇAS — ESTILO IGUAL AO PRINT
   ========================================================= */

#racas.section-alt{
  background:var(--bg-2); /* fundo clarinho do print */
  border: 0;
}

#racas .section-head{
  margin-bottom: 34px;
}

#racas .cards-grid{
  /* cards mais “contidos” e centralizados */
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 34px;
  margin-top: 18px;
}

#racas .breed-card{
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(75, 42, 24, .10);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
}

/* imagem com margem interna (igual ao print) */
#racas .breed-cover{
  height: 210px;
  margin: 16px 16px 0;
  border-radius: 14px;
  overflow: hidden;
}

#racas .breed-cover img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* tag menor e mais “clean” */
#racas .tag{
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(219, 160, 67, .22);
  border: 1px solid rgba(219, 160, 67, .35);
}

#racas .breed-body{
  padding: 14px 16px 16px;
}

#racas .breed-body h3{
  font-size: 16px;
  margin: 10px 0 8px;
}

#racas .breed-body p{
  font-size: 12.5px;
  line-height: 1.7;
  margin: 0 0 10px;
  color: rgba(75,42,24,.65);
}

/* chips menores */
#racas .chip-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
  align-items: center;
}

#racas .chip{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(251,247,239,.9);
  border: 1px solid rgba(75,42,24,.10);
  white-space: nowrap;
}

@media (max-width: 640px){
  #racas .chip-row{
    justify-content: flex-start;
    gap: 8px;
  }

  #racas .chip{
    font-size: 12px;
    padding: 8px 12px;
  }
}


/* botão outline full width (igual ao print) */
#racas .breed-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  padding: 10px 12px;
  border-radius: 10px;

  font-weight: 900;
  font-size: 12px;

  background: transparent;
  border: 1.5px solid rgba(177,132,87,.70);
  color: rgba(75,42,24,.85);

  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

#racas .breed-cta:hover{
  background: rgba(243, 234, 217, .65);
  border-color: rgba(177,132,87,.95);
  transform: translateY(-1px);
}

/* responsivo: 1 card por linha */
@media (max-width: 860px){
  /* one card per row in the breeds section, with a bit of breathing room */
  #racas .cards-grid{
    grid-template-columns: minmax(0, 420px);
    gap: 22px;
  }

  /* adjustments that previously lived in a late "fix" block */
  #racas .breed-card{
    padding: 14px;
    border-radius: 18px;
  }

  /* ensure the image fills the white header area without leaving gaps */
  #racas .breed-cover{
    margin: 0;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
  }
  #racas .breed-cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }

  /* increase readability for tablet */
  #racas .breed-body h3{
    font-size: 18px;
  }
  #racas .breed-body p{
    font-size: 14px;
  }
  #racas .chip{
    font-size: 12px;
    padding: 7px 12px;
  }
  #racas .breed-cta{
    margin-top: 10px;
    font-size: 13px;
    padding: 12px 14px;
  }

  #racas .tag{
    left: 10px;
    bottom: 10px;
  }
  #racas .breed-body{
    padding: 12px 2px 0;
  }
}

/* =========================================================
   FEATURES (4 cards em linha)
   ========================================================= */
.features-row{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.feature{
  background: var(--card);
  border: 1px solid rgba(75, 42, 24, .08);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,.05);
}

.feature-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: #B18457;
  border: 1px solid rgba(242, 177, 58, .35);
  margin-bottom: 10px;
}

.feature-list{
  margin: 10px 0 0;
  padding-left: 16px;
  color: rgba(75,42,24,.85);
}
.feature-list li{
  margin: 6px 0;
  font-size: 13px;
}

/* =========================================================
   EXTRAS (card + accordion)
   ========================================================= */
.extras-wrap{
  display:flex;
  justify-content:center;
  padding: 0 16px;
  margin-top: 24px; /* separa dos cards acima */
}

.extras{
  width: min(420px, 100%);
  border-radius: 26px;
  border: 1.5px solid rgba(177,132,87,.55);
  background: #fff;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,.06);
}

/* Remove a setinha padrão do <summary> */
.extras summary::-webkit-details-marker,
.extra-item summary::-webkit-details-marker{
  display:none;
}
.extras summary,
.extra-item summary{
  list-style:none;
  cursor:pointer;
}

/* Cabeçalho do card */
.extras-head{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  color: var(--accent-2);
  padding: 4px 2px 14px;
}

/* + / - */
.extras-plus{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(177,132,87,.18);
  border: 1px solid rgba(177,132,87,.35);
  font-weight: 900;
  line-height: 1;
}
.extras-plus::before{
  content: "+";
  color: rgba(75,42,24,.75);
}
.extras[open] .extras-plus::before{
  content: "−";
}

/* Lista */
.extras-body{
  display:grid;
  gap: 12px;
}

/* Item: vira CARD quando abre (não fica pill gigante) */
.extra-item{
  border-radius: 22px; /* ✅ card normal */
  border: 1.5px solid rgba(177,132,87,.55);
  background: rgba(251,247,239,.8);
  overflow:hidden;
}

/* Summary: pill quando fechado */
.extra-item > summary{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  font-weight: 800;
  color: rgba(75,42,24,.88);
  border-radius: 999px; /* ✅ pill */
}

/* Quando abre: summary vira topo do card */
.extra-item[open] > summary{
  border-radius: 22px 22px 0 0; /* ✅ topo */
  background: rgba(251,247,239,.95);
}

/* check */
.check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(177,132,87,.75);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 auto;
}

.extra-panel{
  padding: 12px 16px 14px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid rgba(177,132,87,.25);
  background: rgba(255,255,255,.55);
}

.extra-item .extra-panel{
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  padding-top: 0;
  padding-bottom: 0;
  transition: max-height .3s ease, opacity .2s ease, transform .2s ease, padding .2s ease;
}

.extra-item[open] .extra-panel{
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 12px;
  padding-bottom: 14px;
}

.extra-panel p{
  margin: 0;
  overflow-wrap: break-word;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  margin-top: 34px;
  background: rgba(177, 132, 87, .70);
  color: #fff;
  border-radius: 22px;
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

.cta-banner .muted{ color: rgba(255,255,255,.85); }

.cta-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--bg-2);
  padding: 34px 0 0;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 42px;
  align-items: start;
  padding-bottom: 26px;
}

/* --- Coluna marca --- */
.f-brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.f-logo{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
}

.f-name{
  font-weight: 800;
  color: rgba(75,42,24,.90);
  font-size: 14px;
}

.f-text{
  margin: 0;
  max-width: 42ch;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(75,42,24,.55);
}

.f-social{
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.f-social-btn{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(177,132,87,.18);
  border: 1px solid rgba(75,42,24,.10);
  color: rgba(75,42,24,.75);
  transition: transform .18s ease, background .18s ease;
}

.f-social-btn:hover{
  transform: translateY(-1px);
  background: rgba(177,132,87,.26);
}

/* --- Coluna contato --- */
.f-title{
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  color: rgba(75,42,24,.65);
}

.f-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.f-list li{
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  color: rgba(75,42,24,.55);
}

.f-list i{
  margin-top: 2px;
  color: rgba(177,132,87,.95);
  font-size: 12px;
}

/* --- Coluna mapa --- */
.visit-card{
  position: relative;
  height: 118px;
  border-radius: 12px;
  overflow: hidden;
  background: #e9e9e9;
  border: 1px solid rgba(75,42,24,.10);
}

.visit-map{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(.95) brightness(1.05);
  opacity: .85;
}


.visit-btn:hover{
  background: rgba(255,255,255,.98);
  transform: translate(-50%, -50%) scale(1.02);
}

/* --- Linha fina + copyright --- */
.footer-bottom{
  border-top: 1px solid rgba(75,42,24,.10);
  padding: 14px 0 18px;
}

.footer-bottom small{
  color: rgba(75,42,24,.55);
  font-size: 11px;
}

.visit-map{
  width:100%;
  height:100%;
  border:0;
  filter: grayscale(1) contrast(.95) brightness(1.05);
  opacity:.9;
}

/* =========================================================
   HERO COM IMAGEM ÚNICA + CARD FLUTUANTE
   ========================================================= */

.hero-single-media{
  display: flex;
  justify-content: center;
}

.hero-single-box{
  position: relative;
  width: min(100%, 430px);
}

.hero-single-image{
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(198, 184, 118, 0.12);
}

.hero-single-image-filhotes{
  width: 100%;
  height: 300px;
  object-fit: cover; 
  align-items: center;
  border-radius: 18px;
  border: 2px solid var(--accent-2);
  box-shadow: 0 24px 40px rgba(198, 184, 118, 0.12);
}

/* card flutuante */
.hero-floating-card{
  position: absolute;
  left: -18px;
  bottom: -16px;
  width: 158px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(75,42,24,.08);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 18px 30px rgba(0,0,0,.14);
}

.hero-card-top{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-card-icon{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f6e3c3;
  color: #8a521d;
  font-size: 13px;
  flex-shrink: 0;
}

.hero-card-copy{
  display: grid;
  gap: 2px;
}

.hero-card-label{
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(138,82,29,.55);
}

.hero-card-title{
  display: block;
  font-size: 14px;
  color: #8a521d;
}

.hero-card-bottom span{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  color: rgba(86,30,17,.62);
}

.hero-card-bar{
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(138,82,29,.14);
  overflow: hidden;
}

.hero-card-bar span{
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  background: #8a521d;
  border-radius: 999px;
}

.sobre-h2{
  margin: 0 0 14px;
  font-size: 3rem;
}




/* =========================================================
   CREDIBILIDADE
   ========================================================= */

.credibilidade{
  background: var(--bg--2);
  padding: 70px 0 42px;
}

.cred-head,
.process-head{
  text-align: center;
  margin-bottom: 34px;
}

.cred-kicker{
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(177,132,87,.55);
}



.cred-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.cred-card{
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(177,132,87,.18);
  border-radius: 14px;
  padding: 20px 18px;
  min-height: 118px;
}

.cred-badge{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.cred-badge.cbkc{
  background: #003a82;
  border: 3px solid #f0b449;
}

.cred-badge.fci{
  background: #005eb8;
}

.cred-badge.alkc{
  background: #46bf5b;
}

.cred-copy h3{
  margin: 0 0 4px;
  font-size: 14px;
  color: #8a521d;
}

.cred-copy span{
  display: block;
  margin-bottom: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(177,132,87,.70);
}

.cred-copy p{
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(86,30,17,.58);
}

/* =========================================================
   PROCESSO DE VENDA
   ========================================================= */

.processo-venda{
  background:var(--bg);
  padding: 52px 0 80px;
}

.processo-linha{
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr 120px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 50px;
}

.step-line{
  height: 2px;
  width: 100%;
  background: rgba(177,132,87,.40);
}

.process-step{
  text-align: center;
  max-width: 180px;
  margin: 0 auto;
}

.step-circle{
  width: 90px;
  height: 90px;
  border-radius: 999px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: #be8d56;
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}

.step-circle.done{
  background: #39c85a;
  font-size: 30px;
}

.process-step h3{
  margin-top: 16px;
  font-size: 18px;
  color: #8a521d;
}

.process-step p{
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(86,30,17,.56);
}

/* =========================================================
   SOBRE - COMPROMISSO COM A QUALIDADE
   ========================================================= */

.qualidade-section{
  padding: 50px 0 80px;
}

.qualidade-box{
  background: #b88a58;
  border-radius: 38px;
  padding: 72px 58px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  position: relative;
  overflow: hidden;
}

.qualidade-cards{
  display: grid;
  gap: 50px;
  align-content: start;
  padding-top: 6px;
}

.qualidade-card{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  min-height: 104px;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 16px;
  background: transparent;
}

.qualidade-icon{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f1bc4f;
  color: #8a521d;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: -1px;
}

.qualidade-card-copy h3{
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.qualidade-card-copy p{
  margin: 0;
  max-width: 28ch;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
}

.qualidade-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}

.qualidade-texto h2{
  margin: 0 0 16px;
  font-size: clamp(25px, 2vw, 46px);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
}

.qualidade-texto p{
  margin: 0;
  max-width: 39ch;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.93);
}

.qualidade-quote{
  position: relative;
  width: min(100%, 440px);
  background: #e3aa3f;
  border-radius: 16px;
  padding: 28px 28px 26px;
  overflow: hidden;
}

.qualidade-quote p{
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 18ch;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
  font-weight: 800;
  color: #874e19;
}

.quote-paw{
  position: absolute;
  right: 18px;
  bottom: 10px;
  font-size: 86px;
  color: rgba(255, 226, 164, .55);
  transform: rotate(-10deg);
  z-index: 1;
}

/* =========================================================
   SEÇÃO LOCALIZAÇÃO
   ========================================================= */

.localizacao-section{
  padding: 0 0 90px;
}

.localizacao-card{
  display: grid;
  grid-template-columns: 370px 1fr;
  min-height: 420px;
  background: #f4efe8;
  border: 1px solid rgba(75,42,24,.10);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

/* lado esquerdo */
.localizacao-info{
  padding: 38px 34px;
  background: #f4efe8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.localizacao-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #7A4A1D;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.localizacao-info h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 1vw, 38px);
  line-height: 1.05;
  color: #B18457;
}

.localizacao-endereco{
  margin: 0 0 28px;
  max-width: 28ch;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(75,42,24,.58);
}

.localizacao-lista{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.localizacao-lista li{
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(75,42,24,.72);
  font-size: 13px;
}

.localizacao-lista i{
  width: 16px;
  text-align: center;
  color: #8a521d;
  font-size: 12px;
}

.localizacao-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 6px;
  background: #7A4A1D;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: .2s ease;
}

.localizacao-btn:hover{
  background: #744316;
}

/* lado direito */
.localizacao-mapa{
  position: relative;
  min-height: 420px;
  background: #d8e3cf;
}

.localizacao-mapa iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.75) contrast(.96) brightness(1.02);
}

/* pin central */
.mapa-pin{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mapa-pin-icon{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid #8a521d;
  color: #8a521d;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  font-size: 18px;
}

.mapa-pin span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  color: #8a521d;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* =========================================================
   FILHOTES
   ========================================================= */

.titulos{
  margin: 0 30px 14px;
}


.guia-h2{
  font-size: clamp(28px, 3vw, 35px);
  line-height: 1.05;
  font-weight: 800;
  text-align: center;
  color: #8a521d;
}

.lead-guia{
  margin: 0 auto;
  max-width: 80ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(75,42,24,.62);
  text-align: center;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 16px;
  margin-top: 50px;
}



.card{
  background: #fff;
  border: 1px solid rgba(177,132,87,.18);
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
}

.icon-guia{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(249, 194, 93, 0.2);
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 10px;
}

.hero-guia{
      padding: clamp(28px, 5vw, 56px) 0 0;
    }

    .hero-guia{
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding-bottom: clamp(24px, 4vw, 36px);
      gap: 14px;
    }

    .pill-guia{
      display:inline-flex; align-items:center; padding: 5px 13px;
      border-radius: 999px; background: rgba(251,227,182,100%);
      border: 1px solid rgba(194, 156, 116, .20); font-weight: 800;
      font-size: 12px; gap: 5px; letter-spacing: .4px; color: var(--text); margin-bottom: 12px;
    }

    .guia-h2{ margin: 0 0 14px; font-size: 3rem; }


    /* =========================================================
       SEÇÃO HISTÓRIA
       ========================================================= */
    .historia-section{
      padding: clamp(48px, 7vw, 96px) 0;
      background-color: var(--bg-2);
    }

    .historia-grid{
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: clamp(28px, 5vw, 72px);
      align-items: center;
    }

    .historia-img-wrap{
      position: relative;
    }

    .historia-img{
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 22px;
      display: block;
      box-shadow: 0 24px 48px rgba(75,42,24,.14);
    }

    .historia-badge{
      position: absolute;
      bottom: -18px;
      right: -18px;
      width: 88px;
      height: 88px;
      background: #B18457;
      border-radius: 999px;
      display: grid;
      place-items: center;
      text-align: center;
      color: #fff;
      font-size: 30px;
      font-weight: 800;
      letter-spacing: .10em;
      text-transform: uppercase;
      border: 4px solid #fff;
      box-shadow: 0 12px 22px rgba(0,0,0,.12);
      line-height: 1.4;
      padding: 8px;
    }

    .historia-kicker{
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 800; letter-spacing: .22em;
      text-transform: uppercase; color: rgba(177,132,87,.75);
      margin-bottom: 14px;
    }

    .historia-kicker::before{
      content: "";
      display: block; width: 28px; height: 2px;
      background: var(--accent); border-radius: 999px;
    }

    .historia-titulo{
      font-size: clamp(26px, 3vw, 40px);
      font-weight: 800;
      color: var(--text);
      margin: 0 0 20px;
      line-height: 1.08;
    }

    .historia-texto{
      font-size: 14.5px;
      line-height: 1.75;
      color: rgba(75,42,24,.68);
      margin: 0 0 20px;
    }

    /* =========================================================
       SEÇÃO RECONHECIMENTO
       ========================================================= */
    .reconhecimento-section{
      padding: clamp(40px, 6vw, 78px) 0;
      background: rgba(243, 234, 217, .45);
      border-top: 1px solid rgba(75,42,24,.07);
      border-bottom: 1px solid rgba(75,42,24,.07);
    }

    .recon-grid{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(28px, 5vw, 60px);
      align-items: center;
    }

    .recon-kicker{
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 800; letter-spacing: .22em;
      text-transform: uppercase; color: rgba(177,132,87,.75);
      margin-bottom: 14px;
    }

    .recon-kicker::before{
      content: ""; display: block; width: 28px; height: 2px;
      background: var(--accent); border-radius: 999px;
    }

    .recon-titulo{
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 800;
      color: var(--text);
      margin: 0 0 16px;
      line-height: 1.1;
    }

    .recon-texto{
      font-size: 14px;
      line-height: 1.75;
      color: rgba(75,42,24,.68);
      margin: 0 0 14px;
    }

    .recon-texto strong{
      color: #8a521d;
      font-weight: 800;
    }

    .cert-card {
  position: relative;         /* ancora o SVG de fundo */
  background: #fff;
  border: 1px solid rgba(177, 132, 87, .18);
  border-radius: 22px;
  padding: 40px 36px 28px;
  box-shadow:
    0 2px 0 rgba(177,132,87,.10),   /* borda-sombra inferior suave */
    0 18px 40px rgba(0, 0, 0, .07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  overflow: hidden;           /* garante que o SVG não "vaze" */
  text-align: center;
}

/* ── Fundo hexagonal ── */
.cert-hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Tudo acima do SVG */
.cert-card > *:not(.cert-hex-bg) {
  position: relative;
  z-index: 1;
}

/* ── Linha de badges ── */
.cert-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* ── Badge individual ── */
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Wrapper do ícone SVG */
.cert-icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(251, 227, 182, .45);
  border: 1px solid rgba(177, 132, 87, .20);
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}

.cert-badge:hover .cert-icon {
  background: rgba(251, 227, 182, .75);
  transform: translateY(-2px);
}

/* Label */
.cert-label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(75, 42, 24, .80);
  letter-spacing: .04em;
}

/* ── Linha divisória vertical ── */
.cert-divider {
  width: 1px;
  height: 56px;
  background: rgba(177, 132, 87, .22);
  border-radius: 999px;
  flex-shrink: 0;
}

/* ── Rodapé em itálico ── */
.cert-footer {
  margin: 0;
  font-size: 12px;
  font-style: italic;
  color: rgba(75, 42, 24, .45);
  letter-spacing: .01em;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 520px) {
  .cert-card {
    padding: 32px 20px 22px;
    gap: 22px;
  }

  .cert-badges-row {
    gap: 22px;
  }

  .cert-icon {
    width: 58px;
    height: 58px;
  }
}

    /* =========================================================
       QUOTE SECTION
       ========================================================= */
    .quote-section{
      padding: clamp(40px, 6vw, 72px) 0;
    }

    .quote-box{
      background: #b88a58;
      border-radius: 26px;
      padding: clamp(36px, 5vw, 62px) clamp(28px, 5vw, 72px);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .quote-box::before{
      content: "\201C";
      position: absolute;
      font-size: 260px;
      font-family: Georgia, serif;
      top: -40px;
      left: 20px;
      line-height: 1;
      color: rgba(255,255,255,.08);
      pointer-events: none;
    }

    .quote-paw-bg{
      position: absolute;
      right: 30px;
      bottom: 10px;
      font-size: 100px;
      color: rgba(255,226,164,.28);
      transform: rotate(-10deg);
      pointer-events: none;
    }

    .quote-text{
      position: relative;
      z-index: 2;
      font-size: clamp(19px, 2.4vw, 28px);
      font-weight: 800;
      line-height: 1.45;
      color: #fff;
      max-width: 70ch;
      margin: 0 auto 20px;
    }

    .quote-line{
      display: inline-block;
      width: 48px;
      height: 4px;
      background: #f2b13a;
      border-radius: 999px;
    }

    /* =========================================================
       CARACTERÍSTICAS (cards pequenos)
       ========================================================= */
    .caract-section{
      padding: clamp(40px, 6vw, 78px) 0;
    }

    .section-head{
      text-align:center;
      margin-bottom: 34px;
    }

    .section-kicker{
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 800; letter-spacing: .22em;
      text-transform: uppercase; color: rgba(177,132,87,.75);
      margin-bottom: 10px;
    }

    .section-titulo{
      font-size: clamp(24px, 2.5vw, 36px);
      font-weight: 800; color: var(--text); margin: 0 0 10px; line-height: 1.1;
    }

    .section-lead{
      font-size: 14px; color: rgba(75,42,24,.60);
      max-width: 55ch; margin: 0 auto;
    }

    .caract-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
      margin-top: 36px;
    }

    .caract-card{
      background: #fff;
      border: 1px solid rgba(177,132,87,.18);
      border-radius: 18px;
      box-shadow: 0 14px 26px rgba(0,0,0,.06);
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .caract-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 22px 38px rgba(0,0,0,.10);
    }

    .caract-icon{
      width: 52px; height: 52px; border-radius: 999px;
      background: rgba(249, 194, 93, 0.20);
      display: grid; place-items: center;
      font-size: 22px; margin-bottom: 6px;
    }

    .caract-card h3{
      font-size: 16px; font-weight: 800; color: var(--text); margin: 0;
    }

    .caract-card p{
      font-size: 13px; line-height: 1.65; color: rgba(75,42,24,.62); margin: 0;
    }

    /* =========================================================
   SEÇÃO CURIOSIDADES & CUIDADOS
   ========================================================= */

/* Kicker da seção */
.cultura-section .cultura-kicker {
  text-align: left;
  margin-bottom: 14px;
}

/* Grid principal 2 colunas */
.cultura-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ── ESQUERDA: Cultura Popular ── */
.cultura-titulo {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.1;
}

.cultura-cards {
  display: grid;
  gap: 18px;
}

/* Card individual (imagem + texto lado a lado) */
.cultura-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(75, 42, 24, .08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.cultura-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .09);
}

.cultura-card-img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0e8dc;
}

.cultura-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cultura-card-copy h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.2;
}

.cultura-card-copy p {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(75, 42, 24, .62);
  margin: 0;
}

/* ── DIREITA: Cuidados Essenciais ── */
.cuidados-titulo {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.1;
}

.cuidados-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.cuidado-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(75, 42, 24, .08);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cuidado-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .07);
}

.cuidado-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(249, 194, 93, .20);
  border: 1px solid rgba(177, 132, 87, .25);
  display: grid;
  place-items: center;
  font-size: 15px;
  color: #8a521d;
  flex-shrink: 0;
}

.cuidado-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cuidado-copy strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.cuidado-copy p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(75, 42, 24, .60);
}

/* =========================================================
   SEÇÃO FAQ (Dúvidas Frequentes)
   ========================================================= */
.faq-section {
  background: rgba(243, 234, 217, .40);
  border-top: 1px solid rgba(75, 42, 24, .07);
  border-bottom: 1px solid rgba(75, 42, 24, .07);
}

.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

/* Coluna esquerda */
.faq-titulo {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.15;
}

.faq-lead {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(75, 42, 24, .58);
  margin: 0 0 18px;
  max-width: 28ch;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 800;
  color: #8a521d;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(177, 132, 87, .50);
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}

.faq-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.faq-link i {
  font-size: 11px;
  transition: transform .18s ease;
}

.faq-link:hover i {
  transform: translateX(3px);
}

/* ── Accordion ── */
.faq-acordeao {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(75, 42, 24, .10);
}

.faq-item:first-child {
  border-top: 1px solid rgba(75, 42, 24, .10);
}

/* Remove seta nativa */
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
  color: rgba(75, 42, 24, .88);
  user-select: none;
  transition: color .18s ease;
}

.faq-item > summary:hover {
  color: #8a521d;
}

/* Chevron */
.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(177, 132, 87, .14);
  border: 1px solid rgba(177, 132, 87, .28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #8a521d;
  transition: transform .25s ease, background .18s ease;
}

.faq-item[open] > summary .faq-chevron {
  transform: rotate(180deg);
  background: rgba(177, 132, 87, .24);
}

/* Painel */
.faq-panel {
  padding: 0 4px 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(75, 42, 24, .62);

  /* Animação de abertura */
  animation: faqFadeIn .22s ease forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   SEÇÃO CTA FINAL — Smooth Fox Terrier
   ========================================================= */

.cta-fox-section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #1e1208;
  position: relative;
  overflow: hidden;
}

/* Pata decorativa de fundo */
.cta-fox-section::before {
  content: "\f1b0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 420px;
  color: rgba(255, 255, 255, .025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Wrapper centralizado */
.cta-fox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Ícone da pata */
.cta-fox-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(219, 160, 67, .18);
  border: 1px solid rgba(219, 160, 67, .35);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #DBA043;
  margin-bottom: 4px;
}

/* Título */
.cta-fox-titulo {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  max-width: 22ch;
}

/* Lead */
.cta-fox-lead {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .60);
  max-width: 46ch;
  margin: 0;
}

/* Botões */
.cta-fox-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Botão primário — dourado */
.cta-fox-btn-primary {
  background: #DBA043;
  color: #3b1f06;
  font-weight: 900;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  box-shadow: 0 10px 24px rgba(219, 160, 67, .30);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  gap: 8px;
}

.cta-fox-btn-primary:hover {
  background: #f2b13a;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(219, 160, 67, .40);
}

.cta-fox-btn-primary:active {
  transform: translateY(0);
}

/* Botão ghost — outline claro */
.cta-fox-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .28);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.cta-fox-btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .55);
  transform: translateY(-2px);
}

.cta-fox-btn-ghost:active {
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 640px) {
  .cta-fox-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .cta-fox-btn-primary,
  .cta-fox-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .cta-fox-titulo {
    font-size: 22px;
  }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

/* Tablet */
@media (max-width: 980px) {
  .cultura-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-lead {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .cultura-card {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .cultura-card-img {
    width: 80px;
    height: 68px;
  }

  .cuidados-titulo,
  .cultura-titulo {
    font-size: 20px;
  }

  .faq-titulo {
    font-size: 20px;
  }

  .faq-item > summary {
    font-size: 13.5px;
    padding: 15px 2px;
  }

}

/* =========================================================
   ANIMAÇÃO DE ENTRADA (ativada via JS + IntersectionObserver)
   ========================================================= */
.cultura-card,
.cuidado-item,
.faq-item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .38s ease,
    transform .38s ease,
    box-shadow .22s ease; /* mantém hover transition */
}

.cultura-card.is-visible,
.cuidado-item.is-visible,
.faq-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}


    /* =========================================================
       RESPONSIVO
       ========================================================= */
    @media (max-width: 980px){
      .historia-grid{ grid-template-columns: 1fr; gap: 32px; }
      .historia-img{ height: 300px; }
      .historia-badge{ bottom: -14px; right: -10px; width: 72px; height: 72px; font-size: 8px; }

      .recon-grid{ grid-template-columns: 1fr; gap: 32px; }

      .caract-grid{ grid-template-columns: 1fr 1fr; }

      .footer-grid{ grid-template-columns: 1fr; gap: 22px; }

      .cta-banner{ flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 720px){
      .hero-grid{ grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 20px; }
      .hero-copy{ max-width: 36ch; }
      .hero-copy .pill{ margin: 0 auto 12px; }
      .hero-copy .lead{ margin: 10px auto 0; }
      .hero-actions{ width: 100%; max-width: 340px; margin: 16px auto 0; flex-direction: column; align-items: stretch; gap: 10px; }
      .hero-actions .btn{ width: 100%; justify-content: center; }
      .sobre-h2{ font-size: 2.2rem; }

      .caract-grid{ grid-template-columns: 1fr; }

      .quote-text{ font-size: 17px; }
    }

    @media (max-width: 520px){
      .cert-badges-row{ flex-wrap: wrap; gap: 16px; }
    }



/* =========================================================
   RESPONSIVO LOCALIZAÇÃO
   ========================================================= */

@media (max-width: 980px){
  .localizacao-card{
    grid-template-columns: 1fr;
  }

  .localizacao-info{
    padding: 32px 24px;
  }

  .localizacao-mapa{
    min-height: 340px;
  }
}

@media (max-width: 640px){
  .localizacao-section{
    padding-bottom: 56px;
  }

  .localizacao-info h2{
    font-size: 28px;
  }

  .localizacao-endereco{
    font-size: 14px;
  }

  .localizacao-lista li{
    font-size: 13px;
  }

  .localizacao-btn{
    width: 100%;
    max-width: 180px;
  }

  .localizacao-mapa{
    min-height: 280px;
  }

  .mapa-pin-icon{
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

/* =========================================================
   RESPONSIVO SOBRE - COMPROMISSO COM A QUALIDADE
   ========================================================= */

@media (max-width: 980px){
  .qualidade-box{
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 42px 28px;
    border-radius: 28px;
  }

  .qualidade-cards{
    gap: 18px;
  }

  .qualidade-content{
    gap: 24px;
  }

  .qualidade-texto h2{
    font-size: clamp(28px, 6vw, 40px);
  }

  .qualidade-texto p{
    max-width: none;
    font-size: 15px;
  }

  .qualidade-quote{
    width: 100%;
    max-width: 430px;
  }

  .qualidade-quote p{
    max-width: 16ch;
  }
}

@media (max-width: 640px){
  .qualidade-section{
    padding-bottom: 56px;
  }

  .qualidade-box{
    padding: 26px 18px;
    border-radius: 24px;
    gap: 26px;
  }

  .qualidade-card{
    padding: 16px;
    gap: 12px;
    min-height: auto;
    border-radius: 14px;
  }

  .qualidade-icon{
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .qualidade-card-copy h3{
    font-size: 16px;
  }

  .qualidade-card-copy p{
    font-size: 11px;
    max-width: none;
  }

  .qualidade-texto h2{
    font-size: 28px;
    line-height: 1.08;
  }

  .qualidade-texto p{
    font-size: 14px;
    line-height: 1.65;
  }

  .qualidade-quote{
    padding: 22px 18px 22px;
    border-radius: 14px;
  }

  .qualidade-quote p{
    max-width: 18ch;
    font-size: 18px;
    line-height: 1.15;
  }

  .quote-paw{
    right: 10px;
    bottom: 8px;
    font-size: 62px;
  }
}

/* =========================================================
   RESPONSIVO CREDIBILIDADE + PROCESSO DE VENDA
   ========================================================= */

@media (max-width: 980px){
  .cred-grid{
    grid-template-columns: 1fr;
  }

  .processo-linha{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-line{
    width: 1px;
    height: 26px;
    margin: 0 auto;
  }

  .process-step{
    max-width: 260px;
  }
}

@media (max-width: 640px){
  .credibilidade{
    padding: 54px 0 32px;
  }

  .processo-venda{
    padding: 40px 0 56px;
  }

  .cred-card{
    align-items: flex-start;
    padding: 18px 16px;
  }

  .step-circle{
    width: 68px;
    height: 68px;
    font-size: 26px;
  }

  .process-step h3{
    font-size: 15px;
  }

  .process-step p{
    font-size: 12px;
  }
}

/* =========================================================
   HERO SINGLE RESPONSIVO
   ========================================================= */

@media (max-width: 980px){
  .hero-single-box{
    width: min(100%, 400px);
  }

  .hero-single-image{
    height: 470px;
  }

  .hero-floating-card{
    left: 12px;
    bottom: -16px;
  }
}

@media (max-width: 720px){
  .hero-single-media{
    width: 100%;
    justify-content: center;
  }

  .hero-single-box{
    width: min(100%, 320px);
  }

  .hero-single-image{
    height: 360px;
    border-radius: 16px;
  }

  .hero-floating-card{
    width: 140px;
    padding: 12px;
    left: 10px;
    bottom: -14px;
  }

  .hero-card-title{
    font-size: 13px;
  }

  .sobre-h2{
    font-size: 2.25rem;
  }
}




/* =========================================================
   RESPONSIVO (Mobile-first + breakpoints)
   ========================================================= */

/* Tablet */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-photos{ justify-content:start; grid-template-columns: 1fr 1fr; }
  .photo-card img{ height: 230px; }

  .split{ grid-template-columns: 1fr; }

  .features-row{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .testimonials-grid{ grid-template-columns: 1fr; }
  .ebook{ grid-template-columns: 1fr; }
  .ebook-media{ justify-content:flex-start; }
}

/* Mobile */
@media (max-width: 720px){
  /* Menu vira drawer */
  .nav-toggle{ display:inline-flex; }

  .nav{
    position: absolute;
    top: 62px;
    right: var(--pad);
    left: var(--pad);
    background: rgba(251, 247, 239, .96);
    border: 1px solid rgba(75, 42, 24, .10);
    border-radius: 18px;
    padding: 12px;
    display:none; /* abre via JS */
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: 0 18px 26px rgba(0,0,0,.08);
  }

  .nav.is-open{ display:flex; }

  .nav-cta{
    margin-left: 0;
    text-align:center;
  }

  /* more breathing room on mobile sides */
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-photos{
    grid-template-columns: 1fr 1fr;
  }

  .photo-card--offset{ transform: translateY(14px); }

  .cta-banner{
    flex-direction: column;
    align-items:flex-start;
  }
}

/* Preferência do usuário: reduzir animações */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .btn{ transition: none; }
}

/* HERO - layout do mobile igual à referência */
@media (max-width: 720px){

  /* centraliza tudo */
  .hero-grid{
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 20px;
  }

  /* texto com largura confortável */
  .hero-copy{
    max-width: 36ch;
  }

  .hero-copy .pill{
    margin: 0 auto 12px;
  }

  .hero-copy h1{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy .lead{
    margin: 10px auto 0;
  }

  /* botões empilhados e "largos" */
  .hero-actions{
    width: 100%;
    max-width: 340px;
    margin: 16px auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }

  /* fotos embaixo: esquerda menor, direita maior */
  .hero-photos{
    justify-content: center;
    gap: 18px;
  }

  .hero-img{
    width: 160px;
  }

  .hero-img img{
    height: 210px;
  }

  .hero-img-right{
    margin-top: 18px;
  }

   /* quebra o layout em 1 coluna e centraliza */
  .split{
    grid-template-columns: 1fr;
    gap: 22px;
    justify-items: center;
    text-align: center;
  }

  /* imagem centralizada */
  .essence-media{
    width: 100%;
    display: grid;
    place-items: center;
  }

  /* controla tamanho do stack pra não ficar gigante */
  .photo-stack{
    width: min(280px, 92vw);
  }

  /* texto centralizado e com largura confortável */
  .essence-copy{
    width: 100%;
    max-width: 40ch;
    margin: 0 auto;
  }

  /* mantém o kicker e o título com espaçamento bonito */
  .essence-copy .kicker{
    margin-bottom: 10px;
  }

  .essence-copy h2{
    margin-left: auto;
    margin-right: auto;
  }

  /* parágrafos com leitura boa */
  .essence-copy p{
    margin-left: auto;
    margin-right: auto;
  }

   .essence-copy h2{
    position: relative;
    padding-bottom: 14px;
  }
  .essence-copy h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent);
  }

  .essence-cta{
    display: inline-flex;
    margin: 22px auto 0;
  }



  .breed-card{
    border-radius: 24px;
    padding: 18px;
  }

  .breed-cover{
    height: 320px;                 /* imagem maior */
    border-radius: 20px;
    overflow: hidden;
  }

  .breed-cover img{
    height: 100%;
    object-fit: cover;
  }

  /* Badge mais elegante */
  .tag{
    left: 16px;
    bottom: 16px;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 999px;
  }

  .breed-body{
    padding: 18px 6px 0 6px;
  }

  .breed-body h3{
    font-size: 22px;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .breed-body p{
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .chip-row{
    margin: 14px 0 20px;
    gap: 10px;
  }

  #racas .chip{
  font-size: 9px;
}

  /* Botão full width elegante */
  .breed-actions{
    flex-direction: column;
    gap: 10px;
  }

  .breed-actions .btn{
    width: 100%;
    justify-content: center;
    border-radius: 14px;
    padding: 14px 16px;
  }

  .breed-actions .btn-ghost{
    border: 1.5px solid #5a2d1d;
    font-weight: 800;
  }

  .features-row{
    grid-template-columns: 1fr;   /* 1 card por linha */
    gap: 28px;
    padding: 0 18px;
  }

  .feature{
    position: relative;
    padding: 28px 22px 26px;
    border-radius: 34px;
    border: 1.5px solid rgba(177,132,87,.45);
    background: #fff;
    box-shadow: 0 18px 36px rgba(0,0,0,.06);
    overflow: hidden;
  }

  /* círculo decorativo no canto */
  .feature::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    border-radius: 50%;
    background: rgba(177,132,87,.18);
  }

  /* ícone */
  .feature-icon{
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 20px;
    margin-bottom: 18px;
  }

  .feature h3{
    font-size: 20px;
    margin-bottom: 14px;
  }

  /* lista */
  .feature-list{
    padding-left: 0;
    list-style: none;
  }

  .feature-list li{
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 15px;
  }

  /* bolinha verde estilo print */
  .feature-list li::before{
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }

}

@media (max-width: 1180px){
  .nav-links{ gap: 14px; }
  .nav-links a{ font-size: 12px; }
}

@media (min-width: 861px){
  #racas .cards-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px)); /* igual ao print */
    justify-content: center;
    gap: 34px;
    align-items: stretch;
  }

  #racas .breed-cover{
    height: 210px;
  }
}

/* =========================================================
   FIX FINAL — #RACAS no MOBILE (ganha de qualquer regra global)
   ========================================================= */
@media (max-width: 860px){

  /* garante 1 coluna e respiro */
  #racas .cards-grid{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 0 12px !important;
    justify-content: stretch !important;
  }

  /* card com “almofada” e sem ficar colado */
  #racas .breed-card{
    padding: 14px !important;
    border-radius: 18px !important;
  }

  /* imagem dentro do card, com respiro e altura menor */
  #racas .breed-cover{
    margin: 0 !important;        /* usa o padding do card */
    height: 190px !important;    /* menor pra não ficar gigante */
    border-radius: 14px !important;
  }

  /* tag não encosta */
  #racas .tag{
    left: 10px !important;
    bottom: 10px !important;
  }

  /* texto com padding leve */
  #racas .breed-body{
    padding: 12px 5px 0 !important;
  }

  /* botão com respiro */
  #racas .breed-cta{
    margin-top: 20px !important;
  }
}

@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .visit-card{ height: 130px; }
}

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 28px;

  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .40);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .50);
}

/* =========================================================
   FAIXA DE PREÇO ABAIXO DA HERO
   ========================================================= */
.price-strip{
  padding: 8px 0 50px;
}

.price-strip-card{
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(251,227,182,.65));
  border: 1px solid rgba(177,132,87,.20);
  box-shadow: 0 18px 34px rgba(75,42,24,.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-strip-card::before{
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(219,160,67,.08);
  top: -60px;
  right: -40px;
}

.price-strip-card::after{
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(177,132,87,.08);
  bottom: -50px;
  left: -30px;
}

.price-strip-badge{
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(177,132,87,.14);
  border: 1px solid rgba(177,132,87,.24);
  font-size: 12px;
  font-weight: 800;
  color: #8a521d;
  margin-bottom: 14px;
}

.price-strip-title{
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  color: #561E11;
}

.price-strip-title strong{
  color: #8a521d;
}

.price-strip-text{
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(75,42,24,.66);
}

.price-strip-text strong{
  color: #7a4a1d;
}

.price-strip-actions{
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.price-strip-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: #B18457;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
  transition: transform .18s ease, background .18s ease;
}

.price-strip-btn:hover{
  background: #DBA043;
  transform: translateY(-2px);
}

/* HERO + PREÇO */

.hero-price{
  padding: 30px 0 50px;
  padding-top: 40px;
}

/* titulo da raça */
.price-hero-title{
  font-size: clamp(34px,4vw,52px);
  font-weight: 800;
  margin: 6px 0 18px;
  color: #7a4a1d;
}

/* ajusta badge guia */
.pill-guia{
  margin: 0 auto 6px;
}

/* badge de info */
.price-strip-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 14px;
  border-radius:999px;
  background: rgba(177,132,87,.18);
  border:1px solid rgba(177,132,87,.25);
  font-size:12px;
  font-weight:800;
  color:#8a521d;
  margin-bottom:16px;
}

@media (max-width: 640px){
  .price-strip{
    padding: 6px 0 28px;
  }

  .price-strip-card{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .price-strip-title{
    font-size: 24px;
  }

  .price-strip-text{
    font-size: 14px;
  }

  .price-strip-btn{
    width: 100%;
    max-width: 280px;
  }
}

/* =========================================================
   FILHOTES — FILTROS + GRID
   ========================================================= */

.filhotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 8px;
}


/* Barra de filtros */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  border: 1.5px solid rgba(177,132,87,.35);
  background: transparent;
  color: rgba(75,42,24,.72);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
  font-family: var(--font);
  white-space: nowrap;
}

.filter-btn:hover {
  background: rgba(177,132,87,.10);
  border-color: rgba(177,132,87,.60);
}

.filter-btn.active {
  background: #B18457;
  color: #fff;
  border-color: #B18457;
  box-shadow: 0 6px 16px rgba(177,132,87,.28);
}

/* ── Card base (independente do #racas) ── */
.filhotes-grid .breed-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(75, 42, 24, .10);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.filhotes-grid .breed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 44px rgba(0,0,0,.12);
}

/* ── Imagem com margem interna ── */
.filhotes-grid .breed-cover {
  position: relative;
  height: 200px;
  margin: 12px 12px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #f3ead9;
}

.filhotes-grid .breed-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Tags sobre a imagem ── */
.filhotes-grid .tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 11px;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
  backdrop-filter: blur(6px);
}

/* Tag de raça — tom âmbar (Beagle) */
.filhotes-grid .tag-raca {
  background: rgba(219,160,67,.22);
  border: 1px solid rgba(219,160,67,.45);
  color: #7a4a1d;
}

/* Tag de raça — tom escuro (Fox Terrier) */
.filhotes-grid .tag-raca-fox {
  background: rgba(86,30,17,.14);
  border: 1px solid rgba(86,30,17,.28);
  color: #561E11;
}

/* Tag de status — canto direito */
.filhotes-grid .tag-status {
  left: auto;
  right: 10px;
  bottom: 10px;
}

.filhotes-grid .tag-disponivel {
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.38);
  color: #166534;
}

.filhotes-grid .tag-reservado {
  background: rgba(239,68,68,.13);
  border: 1px solid rgba(239,68,68,.30);
  color: #991b1b;
}

/* ── Corpo do card ── */
.filhotes-grid .breed-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.filhotes-grid .breed-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: #561E11;
  margin: 8px 0 6px;
}

.filhotes-grid .breed-body p {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(75,42,24,.65);
  margin: 0 0 10px;
}

/* ── Chips ── */
.filhotes-grid .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0 12px;
}

.filhotes-grid .chip {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(251,247,239,.9);
  border: 1px solid rgba(75,42,24,.10);
  font-weight: 800;
  color: rgba(75,42,24,.72);
}

/* ── Botão CTA ── */
.filhotes-grid .breed-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 12px;
  background: transparent;
  border: 1.5px solid rgba(177,132,87,.70);
  color: rgba(75,42,24,.85);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  text-align: center;
}

.filhotes-grid .breed-cta:hover {
  background: rgba(243,234,217,.65);
  border-color: rgba(177,132,87,.95);
  transform: translateY(-1px);
}

/* Estado vazio */
.filhotes-empty {
  display: none;
  text-align: center;
  padding: 48px 16px;
  color: rgba(75,42,24,.48);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  grid-column: 1 / -1;
}

.filhotes-empty a {
  color: #8a521d;
  border-bottom: 1.5px solid rgba(177,132,87,.50);
  padding-bottom: 1px;
  font-weight: 800;
}

.breed-cover{
  position:relative;
  height:210px;
  margin:12px 12px 0;
  border-radius:14px;
  overflow:hidden;
}

.waitlist{
  display:flex;
  justify-content:center;
  padding:40px 20px;
  background:#f5f5f5;
}

.waitlist-card{
  background: linear-gradient(135deg,#b88855,#a67646);
  padding:50px;
  border-radius:18px;
  max-width:600px;
  width:100%;
  color:white;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}


.waitlist-card h2{
  margin-top:10px;
  font-size:32px;
  font-weight:700;
}

.subtitle{
  margin-top:10px;
  opacity:0.9;
}

.description{
  margin-top:15px;
  font-size:14px;
  line-height:1.6;
  opacity:0.85;
  max-width:420px;
}

.waitlist-btn{
  margin-top:30px;
  background:#ffbe55;
  border:none;
  padding:14px 28px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.waitlist-btn:hover{
  transform:translateY(-2px);
  background:#ffc76d;
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}


.no-dogs{
  display:flex;
  justify-content:center;
  padding:80px 20px;
  background:#f6f6f6;
}

.no-dogs-card{
  background:white;
  max-width:500px;
  text-align:center;
  padding:50px 40px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.icon{
  font-size:40px;
  margin-bottom:15px;
}

.no-dogs-card h2{
  font-size:24px;
  margin-bottom:15px;
  color:#333;
}

.no-dogs-card p{
  font-size:15px;
  color:#666;
  line-height:1.6;
}

.waitlist-btn{
  margin-top:25px;
  background:#e8a83f;
  border:none;
  padding:12px 24px;
  border-radius:10px;
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.waitlist-btn:hover{
  background:#d89832;
  transform:translateY(-2px);
}

/* =========================================================
   EBOOKS HERO
   ========================================================= */

.ebooks-hero-section{
  padding: 26px 0 0;
  background: var(--bg-2);
}

.ebooks-hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 88px);
  min-height: 72vh;
  padding-bottom: 46px;
}

.ebooks-copy{
  max-width: 470px;
}

.ebooks-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f3d8a9;
  color: #8a521d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 18px;
}

.ebooks-pill i{
  font-size: 10px;
}

.ebooks-title{
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 50px);
  line-height: .94;
  color: #561E11;
  max-width: 12ch;
}

.ebooks-title span{
  display: block;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-decoration-color: #B18457;
  text-underline-offset: 6px;
}

.ebooks-lead{
  margin: 0 0 28px;
  max-width: 38ch;
  color: rgba(75,42,24,.62);
  font-size: 16px;
  line-height: 1.8;
}

.ebooks-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: #B18457;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0,0,0,.10);
  transition: transform .18s ease, background .18s ease;
}

.ebooks-btn:hover{
  background: #9e744d;
  transform: translateY(-2px);
}

/* IMAGEM */
.ebooks-media{
  display: flex;
  justify-content: center;
}

.ebooks-image-box{
  position: relative;
  width: min(100%, 430px);
  transform: rotate(1.5deg);
}

.ebooks-main-image{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  box-shadow: 0 24px 42px rgba(0,0,0,.12);
}

/* CARD FLUTUANTE */
.ebooks-floating-card{
  position: absolute;
  left: -18px;
  bottom: -14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(75,42,24,.08);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}

.ebooks-floating-icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34,197,94,.14);
  color: #16a34a;
  font-size: 14px;
  flex-shrink: 0;
}

.ebooks-floating-copy{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ebooks-floating-copy span{
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(75,42,24,.48);
}

.ebooks-floating-copy strong{
  font-size: 13px;
  color: #561E11;
}

/* =========================================================
   FAIXA DE BENEFÍCIOS
   ========================================================= */

.ebooks-benefits-wrap{
  border-top: 1px solid rgba(75,42,24,.08);
  background: #fff;
}

.ebooks-benefits{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 18px 0;
}

.ebooks-benefit{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ebooks-benefit-icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #B18457;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
}

.ebooks-benefit h3{
  margin: 0 0 3px;
  font-size: 14px;
  color: #561E11;
}

.ebooks-benefit p{
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(75,42,24,.58);
}

/* =========================================
   EBOOKS CATALOGO
========================================= */

.ebooks-catalogo{
  padding: 80px 0;
  background: #f7f4ef;
}

.ebooks-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.ebooks-head h2{
  font-size: 28px;
  color: #4d2f12;
}

.ebooks-filter-bar{
  justify-content: flex-end;
  margin-bottom: 0;
}

/* GRID */

.ebooks-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */

.ebook-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  transition: all .25s ease;
}

.ebook-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.10);
}

/* CAPA */

.ebook-cover{
  position: relative;
  padding: 30px;
  display: flex;
  justify-content: center;
  background: #b18457;
}

.ebook-cover img{
  height: 200px;
  object-fit: contain;
}

.ebook-badge{
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f4d39e;
  color: #6a3f16;
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 8px;
  font-weight: 700;
}

.ebook-badge.treino{
  background: #e3c5ff;
  color: #5b2d8b;
}

/* TEXTO */

.ebook-content{
  padding: 24px;
}

.ebook-content h3{
  margin-bottom: 10px;
  font-size: 18px;
  color: #4d2f12;
}

.ebook-content p{
  font-size: 14px;
  color: #666;
  margin-bottom: 18px;
}

/* META */

.ebook-meta{
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

.ebook-meta i{
  margin-right: 4px;
}

/* FOOTER */

.ebook-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ebook-price{
  font-weight: 700;
  color: #b18457;
  font-size: 16px;
}

.ebook-btn{
  background: #b18457;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  transition: .2s;
}

.ebook-btn:hover{
  background: #9a724c;
}

/* RESPONSIVO */

@media (max-width: 768px){
  .ebooks-head{
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .ebooks-head h2{
    width: 100%;
  }

  .ebooks-filter-bar{
    justify-content: flex-end;
    width: 100%;
  }

  /* Cards em coluna única em telas menores */
  .ebooks-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   MELHORIAS UX EBOOKS
========================================= */

.ebook-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.ebook-preview-btn{
  border: 1px solid rgba(177,132,87,.28);
  background: transparent;
  color: #8a521d;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.ebook-preview-btn:hover{
  background: rgba(177,132,87,.10);
}

/* animação mais premium */
.ebook-card{
  position: relative;
}

.ebook-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,.04), transparent 40%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.ebook-card:hover::after{
  opacity: 1;
}

.ebook-cover img{
  transition: transform .28s ease;
}

.ebook-card:hover .ebook-cover img{
  transform: scale(1.04);
}

.ebooks-empty{
  text-align: center;
  margin-top: 24px;
  color: rgba(75,42,24,.58);
  font-size: 14px;
  font-weight: 700;
}

/* MODAL */
.ebook-modal{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.ebook-modal.is-open{
  display: block;
}

.ebook-modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  backdrop-filter: blur(4px);
}

.ebook-modal-box{
  position: relative;
  width: min(92vw, 520px);
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  z-index: 2;
  animation: ebookModalIn .22s ease;
}

@keyframes ebookModalIn{
  from{
    opacity: 0;
    transform: translateY(12px) scale(.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ebook-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(177,132,87,.12);
  color: #8a521d;
  cursor: pointer;
}

.ebook-modal-kicker{
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(177,132,87,.74);
  margin-bottom: 10px;
}

.ebook-modal-title{
  margin: 0 0 10px;
  font-size: 24px;
  color: #4d2f12;
}

.ebook-modal-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(75,42,24,.65);
}

@media (max-width: 640px){
  .ebook-footer{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ebook-actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .ebook-preview-btn,
  .ebook-btn{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================================
   RESPONSIVO EBOOKS
   ========================================================= */

@media (max-width: 980px){
  .ebooks-hero-grid{
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .ebooks-copy{
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .ebooks-pill{
    margin-left: auto;
    margin-right: auto;
  }

  .ebooks-title{
    max-width: none;
  }

  .ebooks-lead{
    margin-left: auto;
    margin-right: auto;
  }

  .ebooks-image-box{
    width: min(100%, 390px);
  }

  .ebooks-main-image{
    height: 460px;
  }

  .ebooks-floating-card{
    left: 12px;
  }

  .ebooks-benefits{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px){
  .ebooks-hero-section{
    padding-top: 12px;
  }

  .ebooks-title{
    font-size: clamp(34px, 11vw, 54px);
  }

  .ebooks-title span{
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
  }

  .ebooks-lead{
    font-size: 14px;
    line-height: 1.75;
  }

  .ebooks-btn{
    width: 100%;
    max-width: 240px;
  }

  .ebooks-image-box{
    width: min(100%, 320px);
  }

  .ebooks-main-image{
    height: 360px;
    border-radius: 16px;
  }

  .ebooks-floating-card{
    min-width: 150px;
    padding: 10px 12px;
    left: 8px;
    bottom: -12px;
  }

  .ebooks-floating-copy strong{
    font-size: 12px;
  }

  .ebooks-benefits{
    padding: 16px 0 20px;
  }

  .ebooks-benefit{
    align-items: center;
  }
}


/* ── Responsivo ── */
@media (max-width: 980px) {
  .filhotes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

}

@media (max-width: 560px) {
  .filhotes-grid { grid-template-columns: 1fr; }
  .filter-bar {
    gap: 8px; 
    justify-content: center;
  }

  .filter-btn { 
    font-size: 10px; 
    padding: 7px 12px; 
    gap: 3px;
  }

  .h2-filhotes{
    font-size: 32px;
  }

}

/* ========================================
   GALERIA DE CLIENTES SLIDER
======================================== */

.clients-slider{
  position: relative;
  margin-top: 30px;
}

.slider-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
}

.slider-track::-webkit-scrollbar{
  display:none;
}

.slide{
  flex: 0 0 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(75,42,24,.08);
}

.slide img{
  width:100%;
  height:320px;
  object-fit: cover;
  display:block;
  transition: transform .3s ease;
}

.slide:hover img{
  transform: scale(1.05);
}

/* Botões */

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  border:none;
  background:#B18457;
  color:white;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.15);
  z-index:5;
}

.slider-btn:hover{
  background:#DBA043;
}

.slider-btn.prev{
  left:0;
}

.slider-btn.next{
  right:0;
}

/* =========================================================
   PÁGINA LISTA DE ESPERA
   ========================================================= */

.waitlist-page{
  padding: clamp(42px, 6vw, 86px) 0;
}

.waitlist-page-wrap{
  max-width: 950px;
  margin: 0 auto;
}

.waitlist-title{
  font-size: clamp(30px, 3vw, 48px);
  color: #561E11;
  margin-bottom: 12px;
}

.waitlist-lead{
  max-width: 58ch;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(75,42,24,.62);
}

.waitlist-form-card{
  margin-top: 34px;
  background: #fff;
  border: 1px solid rgba(177,132,87,.18);
  border-radius: 26px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 18px 40px rgba(0,0,0,.07);
}

.waitlist-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label{
  font-size: 13px;
  font-weight: 800;
  color: #561E11;
}

.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  border: 1.5px solid rgba(177,132,87,.24);
  background: #fffdf9;
  border-radius: 14px;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: #561E11;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
  color: rgba(75,42,24,.42);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: #B18457;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(177,132,87,.12);
}

.form-group textarea{
  resize: vertical;
  min-height: 130px;
}

.form-group-full{
  margin-top: 18px;
}

.waitlist-actions{
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.waitlist-note{
  margin: 0;
  max-width: 45ch;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(75,42,24,.55);
}

.waitlist-submit-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: #B18457;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(177,132,87,.24);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.waitlist-submit-btn:hover{
  background: #DBA043;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(177,132,87,.30);
}

.waitlist-submit-btn:active{
  transform: translateY(0);
}

@media (max-width: 720px){
  .waitlist-grid{
    grid-template-columns: 1fr;
  }

  .waitlist-form-card{
    border-radius: 22px;
    padding: 20px 16px;
  }

  .waitlist-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .waitlist-submit-btn{
    width: 100%;
  }

  .waitlist-note{
    max-width: none;
    text-align: center;
  }
}

/* ===============================
   POLÍTICA DE VISITAÇÃO
=============================== */

.policy-wrap{
  max-width: 900px;
  margin: 0 auto;
}

.policy-title{
  font-size: clamp(30px, 3vw, 44px);
  color: #561E11;
}

.policy-lead{
  max-width: 60ch;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(75,42,24,.65);
}

.policy-stack{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-card{
  background: #fff;
  border: 1px solid rgba(177,132,87,.18);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

.policy-card h2,
.policy-card h3{
  margin-bottom: 12px;
  color: #561E11;
}

.policy-card p{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(75,42,24,.65);
}

.policy-card ul{
  margin: 10px 0 14px;
  padding-left: 18px;
}

.policy-card ul li{
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(75,42,24,.75);
}

.policy-card ul.negative li{
  color: #a63c2f;
  font-weight: 600;
}

.policy-card.highlight{
  border: 1px solid rgba(177,132,87,.35);
  background: linear-gradient(135deg, #fff 0%, #fbf7ef 100%);
}

.policy-cta{
  margin-top: 32px;
  text-align: center;
}

.policy-btn{
  display: inline-block;
  margin-top: 12px;
  padding: 14px 22px;
  border-radius: 12px;
  background: #B18457;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(177,132,87,.25);
  transition: .2s;
}

.policy-btn:hover{
  background: #DBA043;
  transform: translateY(-2px);
}

/* ===========================
   CARD VISITAÇÃO PREMIUM
=========================== */

.visit-policy-highlight{
  padding: 40px 0;
}

.visit-policy-card{
  display: flex;
  justify-content: space-between;
  gap: 28px;

  background: linear-gradient(135deg, #ffffff 0%, #f9f5ef 100%);
  border: 1px solid rgba(177,132,87,.18);
  border-radius: 24px;

  padding: 28px 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,.06);

  position: relative;
  overflow: hidden;
}

/* glow suave */
.visit-policy-card::before{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(177,132,87,.08);
  border-radius: 50%;
  top: -60px;
  right: -60px;
}

/* esquerda */
.visit-policy-left{
  max-width: 520px;
  z-index: 2;
}

.visit-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;

  background: rgba(177,132,87,.12);
  border: 1px solid rgba(177,132,87,.25);
  color: #7a4a1d;

  margin-bottom: 12px;
}

.visit-policy-left h3{
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 28px);
  color: #561E11;
}

.visit-policy-left p{
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(75,42,24,.65);
}

/* botão */
.visit-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 16px;
  padding: 12px 18px;

  border-radius: 12px;
  background: #B18457;
  color: #fff;

  font-size: 13px;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 10px 20px rgba(177,132,87,.25);
  transition: .2s;
}

.visit-cta:hover{
  background: #DBA043;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(177,132,87,.30);
}


/* RESPONSIVO */
@media (max-width: 768px){
  .visit-policy-card{
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =========================================================
   FAQ HOME
   ========================================================= */

.faq-intro{
  align-self: start;
}

.faq-section{
  background: var(--bg-2);
  border-top: 1px solid rgba(75, 42, 24, .07);
  border-bottom: 1px solid rgba(75, 42, 24, .07);
}

.faq-acordeao{
  background: #fff;
  border: 1px solid rgba(177,132,87,.16);
  border-radius: 20px;
  padding: 8px 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,.05);
}

.faq-item:first-child{
  border-top: 0;
}

.faq-item:last-child{
  border-bottom: 0;
}

.faq-item > summary{
  padding: 18px 2px;
  font-size: 14px;
  line-height: 1.45;
}

.faq-panel{
  padding: 0 2px 18px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(75,42,24,.64);
}

@media (max-width: 980px){
  .faq-acordeao{
    padding: 8px 14px;
  }
}

@media (max-width: 640px){
  .faq-acordeao{
    border-radius: 16px;
    padding: 6px 12px;
  }

  .faq-item > summary{
    font-size: 13.5px;
    padding: 16px 2px;
  }

  .faq-panel{
    font-size: 12.5px;
    line-height: 1.7;
  }
}


/* =========================================
   DEPOIMENTOS
========================================= */

#depoimentos {
  overflow: hidden;
}

#depoimentos .section-head {
  margin-top: 40px;
  margin-bottom: 26px;
  text-align: center;
}

#depoimentos .kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.testimonials-shell {
  position: relative;
  width: 100%;
  padding: 70px 70px 10px;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  will-change: transform;
  transition: transform 0.55s ease;
}

/* Card */
.tcard {
  --cards-per-view: 3;
  flex: 0 0 calc((100% - (28px * (var(--cards-per-view) - 1))) / var(--cards-per-view));
  min-width: 0;
  position: relative;
  text-align: center;
  padding-top: 88px;
  opacity: 0.55;
  transform: scale(0.96);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.tcard.is-visible {
  opacity: 1;
  transform: scale(1);
}

.tcard::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid rgba(75, 42, 24, 0.08);
  border-radius: 18px;
  z-index: 0;
}

.tcard > * {
  position: relative;
  z-index: 1;
}

.tcard-avatar {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 999px;
  padding: 4px;
  background: rgba(242, 177, 58, 0.35);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.tcard-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  display: block;
}

.tcard-text {
  margin: 0;
  padding: 46px 20px 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(75, 42, 24, 0.62);
  min-height: 168px;
}

.tcard-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px 18px;
  justify-content: flex-start;
  width: 100%;
}

.tcard-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
  background: rgba(177, 132, 87, 0.16);
  border: 1px solid rgba(177, 132, 87, 0.25);
  color: rgba(75, 42, 24, 0.85);
}

.tcard-meta {
  text-align: left;
}

.tcard-meta strong {
  display: block;
  font-size: 13px;
  color: rgba(75, 42, 24, 0.90);
}

.tcard-meta span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(75, 42, 24, 0.45);
}

/* Botões */
.t-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-25%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #B18457;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.t-btn:hover {
  transform: translateY(-25%) scale(1.06);
}

.t-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.t-btn-prev {
  left: 0;
}

.t-btn-next {
  right: 0;
}

/* Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonials-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #B18457;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonials-dots button.active {
  background: #B18457;
  transform: scale(1.15);
}

/* Tablet */
@media (max-width: 980px) {
  #depoimentos .section-head {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .testimonials-shell {
    padding-inline: 56px;
  }

  .tcard {
    --cards-per-view: 2;
  }

  .tcard-text {
    min-height: 185px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonials-shell {
    padding: 24px 20px 8px;
  }

  .testimonials-track {
    gap: 18px;
  }

  .tcard {
    --cards-per-view: 1;
    padding-top: 92px;
    width: 300px;
  }

  .tcard::before {
    top: 50px;
  }

  .tcard-avatar {
    top: 0;
    width: 116px;
    height: 116px;
  }

  .tcard-text {
    padding: 48px 18px 0;
    font-size: 13px;
    line-height: 1.72;
    min-height: auto;
  }

  .tcard-footer {
    padding: 18px 18px 22px;
  }

  .t-btn {
    width: 42px;
    height: 42px;
    transform: translateY(-18%);
  }

  .t-btn:hover {
    transform: translateY(-18%) scale(1.04);
  }

  .t-btn-prev {
    left: -4px;
  }

  .t-btn-next {
    right: -4px;
  }
}