/* ═══════════════════════════════════════════════════════════════════
   CALMADOG — style.css
   Mobile-first · Vanilla CSS · Design premium
   Paleta: Verde Floresta + Âmbar Quente
═══════════════════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1A2610;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, button { font-family: inherit; }

/* ── VARIÁVEIS ──────────────────────────────────────────────────── */
:root {
  /* Cores */
  --verde:       #1B3A2D;
  --verde2:      #254D3C;
  --verde-m:     #3A6B52;
  --verde-lite:  #EFF7F2;
  --amber:       #D4891A;
  --amber2:      #E8A020;
  --amber-lite:  #F5C060;
  --cream:       #FAF6EF;
  --text:        #1A2610;
  --text-b:      #354530;
  --muted:       #6B7B65;
  --white:       #ffffff;
  --green-ok:    #2ECC71;
  --red:         #E84040;
  --border:      #C8DDD0;

  /* Sombras */
  --shadow:      0 4px 24px rgba(27,58,45,0.12);
  --shadow-sm:   0 2px 8px rgba(27,58,45,0.08);
  --shadow-lg:   0 8px 40px rgba(27,58,45,0.18);

  /* Bordas */
  --r:           8px;
  --r-lg:        16px;
  --r-pill:      100px;

  /* Tipografia */
  --f-head:      'Playfair Display', Georgia, serif;
  --f-body:      'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:       1200px;
  --px:          clamp(20px, 5vw, 72px);
  --py:          clamp(52px, 8vw, 88px);
}

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ═══════════════════════════════════════════════════════════════════
   TIPOGRAFIA
═══════════════════════════════════════════════════════════════════ */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 10px;
}
.tag--center { display: block; text-align: center; }
.tag--light { color: var(--amber-lite); }

.section-title {
  font-family: var(--f-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.18;
  margin-bottom: 14px;
  text-align: center;
}
.section-title--light { color: #fff; }

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.72;
}

.check-list { margin-bottom: 28px; }
.check-list li {
  position: relative;
  padding: 5px 0 5px 26px;
  font-size: 15px;
  color: var(--text-b);
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde-m);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--amber2);
  color: var(--verde);
  border-color: var(--amber2);
}
.btn-primary:hover {
  background: var(--verde);
  color: var(--white);
  border-color: var(--verde);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}
.btn-outline:hover {
  background: var(--verde);
  color: var(--white);
}

.btn-block { display: flex; width: 100%; text-align: center; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════════
   BARRA DE ANÚNCIO
═══════════════════════════════════════════════════════════════════ */
.ann-bar {
  background: var(--verde);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 48px 10px 20px;
  font-size: 13px;
  position: relative;
  z-index: 200;
}
.ann-bar p { text-align: center; line-height: 1.4; }
.ann-bar strong { color: var(--amber-lite); }
.ann-btn {
  background: #fff;
  color: var(--verde);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ann-btn:hover { background: var(--amber-lite); }
.ann-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  padding: 6px;
  line-height: 1;
  transition: color 0.2s;
}
.ann-close:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

/* Emblema quadrado */
.logo-emblem {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  /* leve borda para destacar no header branco */
  box-shadow: 0 0 0 1px rgba(27,58,45,0.12);
  transition: transform 0.2s;
}
.logo:hover .logo-emblem { transform: scale(1.05); }

/* Versão maior (footer) */
.logo-emblem--lg {
  height: 52px;
  width: 52px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

/* Wordmark ao lado do emblema */
.logo-wordmark {
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: -0.2px;
  line-height: 1;
}
.logo-wordmark em {
  font-style: normal;
  color: var(--amber2);
}

/* Versão sobre fundo escuro */
.logo--light .logo-wordmark { color: #fff; }
.logo--light .logo-wordmark em { color: var(--amber-lite); }
.logo--light .logo-emblem { box-shadow: 0 0 0 1px rgba(255,255,255,0.15); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--verde);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  display: none;
  gap: 28px;
  margin: 0 auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-b);
  transition: color 0.2s;
}
.nav a:hover { color: var(--amber2); }

.header__cta { display: none; }

/* Mobile nav drawer */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.28s;
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}
.nav.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  z-index: 95;
  padding: 80px 28px 28px;
  box-shadow: 4px 0 32px rgba(0,0,0,0.16);
  gap: 4px;
  overflow-y: auto;
  animation: slideIn 0.28s ease;
}
@keyframes slideIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
.nav.mobile-open a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  padding: 13px 0;
  border-bottom: 1px solid var(--verde-lite);
  transition: color 0.2s;
}
.nav.mobile-open a:hover { color: var(--amber2); }

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--verde);
  padding: 56px 0 44px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, #254D3C 0%, #1B3A2D 65%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero__text { max-width: 600px; }
/* Selo da marca no hero */
.hero__brand-stamp {
  margin-bottom: 20px;
}
.hero__stamp-img {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border: 2px solid rgba(232,160,32,0.35);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.stars {
  color: var(--amber-lite);
  font-size: 15px;
  letter-spacing: 2px;
}
.hero__h1 {
  font-family: var(--f-head);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 20px;
}
.hero__h1 em { font-style: italic; color: var(--amber-lite); }
.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  line-height: 1.72;
  margin-bottom: 28px;
}
.hero__sub strong { color: var(--amber-lite); }
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.hero__visual { width: 100%; max-width: 480px; }
.hero__img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.hero__img-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  max-height: 400px;
  display: block;
}
.hero__badge {
  position: absolute;
  background: var(--amber2);
  color: var(--verde);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 9px 13px;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  pointer-events: none;
}
.hero__badge--1 { top: 18px; left: -14px; }
.hero__badge--2 { bottom: 28px; right: -14px; }

/* ═══════════════════════════════════════════════════════════════════
   NAV DE PROBLEMAS
═══════════════════════════════════════════════════════════════════ */
.prob-nav {
  background: var(--verde-lite);
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.prob-nav__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
}
.prob-nav__scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  -webkit-overflow-scrolling: touch;
}
.prob-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.prob-item:hover { transform: translateY(-3px); }
.prob-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: box-shadow 0.2s;
}
.prob-item:hover .prob-icon { box-shadow: 0 4px 16px rgba(27,58,45,0.2); }
.prob-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--verde);
  text-align: center;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════════════════════════════════ */
.trust-strip { padding: 48px 0; background: #fff; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-num {
  font-family: var(--f-head);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}
.trust-lbl {
  font-size: 13px;
  color: var(--muted);
  max-width: 140px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════════
   COMO VISTO EM
═══════════════════════════════════════════════════════════════════ */
.seen-on {
  background: var(--verde-lite);
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seen-on__title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.seen-on__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}
.seen-logo {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--verde2);
  opacity: 0.45;
  transition: opacity 0.2s;
}
.seen-logo:hover { opacity: 0.9; }

/* ═══════════════════════════════════════════════════════════════════
   PROBLEMA / SOLUÇÃO
═══════════════════════════════════════════════════════════════════ */
.prob-sol { padding: var(--py) 0; background: var(--cream); }
.prob-sol__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.prob-sol__img {
  width: 100%;
  max-width: 480px;
}
.prob-sol__img img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  max-height: 400px;
}
.prob-sol__text { max-width: 540px; }
.prob-sol__text h2 {
  font-family: var(--f-head);
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.22;
  margin-bottom: 16px;
}
.prob-sol__text p {
  font-size: 15px;
  color: var(--text-b);
  line-height: 1.75;
  margin-bottom: 14px;
}
.prob-sol__hook {
  font-size: 18px !important;
  color: var(--verde) !important;
  margin: 22px 0 !important;
}

/* ═══════════════════════════════════════════════════════════════════
   COMO FUNCIONA
═══════════════════════════════════════════════════════════════════ */
.how { padding: var(--py) 0; background: #fff; }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.step {
  background: var(--verde-lite);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s;
}
.step:hover { box-shadow: var(--shadow); }
.step__num {
  font-family: var(--f-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--text-b);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════
   INGREDIENTES
═══════════════════════════════════════════════════════════════════ */
.ingr { padding: var(--py) 0; background: var(--verde); }
.ingr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ingr-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  transition: background 0.2s;
}
.ingr-card:hover { background: rgba(255,255,255,0.13); }
.ingr-icon { font-size: 34px; margin-bottom: 10px; }
.ingr-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber-lite);
  margin-bottom: 8px;
}
.ingr-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════
   BENEFÍCIOS
═══════════════════════════════════════════════════════════════════ */
.benefits { padding: var(--py) 0; background: var(--cream); }
.benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.benefits__img { width: 100%; max-width: 480px; }
.benefits__img img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  max-height: 400px;
}
.benefits__text { max-width: 540px; }
.benefits__text h2 {
  font-family: var(--f-head);
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.22;
  margin-bottom: 28px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--verde);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.benefit-item strong {
  display: block;
  font-size: 15px;
  color: var(--verde);
  margin-bottom: 3px;
}
.benefit-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════
   DEPOIMENTOS / CAROUSEL
═══════════════════════════════════════════════════════════════════ */
.testimonials { padding: var(--py) 0; background: #fff; overflow: hidden; }
.carousel-wrap { margin-top: 8px; }
.carousel {
  overflow: hidden;
  margin: 0 calc(-1 * var(--px));
  padding: 0 var(--px) 8px;
}
.carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testi-card {
  flex: 0 0 calc(100% - 0px);
  background: var(--verde-lite);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  color: var(--amber2);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.testi-card h4 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 10px;
  line-height: 1.3;
}
.testi-card p {
  font-size: 14px;
  color: var(--text-b);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--verde);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-info { flex: 1; min-width: 0; }
.testi-info strong { display: block; font-size: 14px; color: var(--verde); }
.testi-info span { font-size: 12px; color: var(--muted); }
.testi-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--verde-m);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px 9px;
  white-space: nowrap;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--verde-lite);
  border: 1px solid var(--border);
  font-size: 24px;
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.carousel__btn:hover { background: var(--verde); color: #fff; }
.carousel__dots { display: flex; gap: 7px; align-items: center; }
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, width 0.2s, border-radius 0.2s;
  border: none;
}
.carousel__dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--verde);
}

/* ═══════════════════════════════════════════════════════════════════
   SELOS DE QUALIDADE
═══════════════════════════════════════════════════════════════════ */
.quality { padding: var(--py) 0; background: var(--verde-lite); }
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quality-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.quality-item:hover { box-shadow: var(--shadow); }
.quality-icon { font-size: 34px; margin-bottom: 10px; }
.quality-item strong {
  display: block;
  font-size: 14px;
  color: var(--verde);
  margin-bottom: 6px;
  font-weight: 700;
}
.quality-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════
   OFERTA / PREÇOS
═══════════════════════════════════════════════════════════════════ */
.offer { padding: var(--py) 0; background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.pricing-card {
  position: relative;
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  background: #fff;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card--featured {
  border-color: var(--verde);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber2);
  color: var(--verde);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-plan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.pricing-card h3 {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 14px;
}
.pricing-from {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}
.pricing-from s { color: var(--red); }
.pricing-val {
  display: block;
  font-family: var(--f-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--verde);
  line-height: 1.1;
  margin-bottom: 18px;
}
.pricing-list { margin-bottom: 22px; }
.pricing-list li {
  font-size: 14px;
  color: var(--text-b);
  padding: 7px 0;
  border-bottom: 1px solid var(--verde-lite);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--verde-m);
  margin-top: 10px;
  font-weight: 500;
}
.offer-guarantee {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--verde-lite);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.guarantee-icon { font-size: 36px; flex-shrink: 0; }
.offer-guarantee strong {
  display: block;
  font-size: 16px;
  color: var(--verde);
  margin-bottom: 6px;
}
.offer-guarantee p { font-size: 14px; color: var(--text-b); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════════
   AVAL VETERINÁRIO
═══════════════════════════════════════════════════════════════════ */
.vet-block { padding: var(--py) 0; background: var(--cream); }
.vet-block__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.vet-block__img { width: 100%; max-width: 360px; }
.vet-block__img img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  max-height: 340px;
}
.vet-block__text { max-width: 560px; }
.vet-block__text h2 {
  font-family: var(--f-head);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.22;
  margin-bottom: 16px;
}
.vet-block__text blockquote {
  font-size: 15px;
  color: var(--text-b);
  line-height: 1.78;
  font-style: italic;
  border-left: 3px solid var(--amber2);
  padding-left: 18px;
  margin-bottom: 20px;
}
.vet-credit strong { display: block; font-size: 15px; color: var(--verde); }
.vet-credit span { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════ */
.faq { padding: var(--py) 0; background: #fff; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--verde);
  text-align: left;
  background: var(--verde-lite);
  transition: background 0.2s;
}
.faq-q:hover { background: #dff0e7; }
.faq-arr {
  font-size: 20px;
  color: var(--amber2);
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-arr { transform: rotate(90deg); }
.faq-a {
  display: none;
  padding: 18px 20px;
  background: #fff;
  animation: fadeDown 0.22s ease;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--text-b); line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════════════
   CAPTURA DE LEAD
═══════════════════════════════════════════════════════════════════ */
.capture { padding: var(--py) 0; background: var(--verde); }
.capture__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}
.capture__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-lite);
  margin-bottom: 8px;
}
.capture__text h2 {
  font-family: var(--f-head);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.18;
}
.capture__text h2 strong { color: var(--amber-lite); }
.capture__text p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  line-height: 1.65;
}
.capture__disclaimer {
  font-size: 12px !important;
  color: rgba(255,255,255,0.38) !important;
  margin-top: 8px !important;
}
.capture__form { width: 100%; max-width: 480px; }
.capture__input-wrap {
  display: flex;
  background: #fff;
  border-radius: var(--r-pill);
  overflow: hidden;
  padding: 4px 4px 4px 16px;
  gap: 0;
}
.capture__input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.capture__input-wrap input::placeholder { color: var(--muted); }
.capture__msg {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber-lite);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer { background: var(--verde); padding: 52px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.62;
  margin-top: 12px;
  max-width: 280px;
}
.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  font-size: 20px;
}
.footer__socials a { transition: transform 0.2s; }
.footer__socials a:hover { transform: scale(1.15); }
.footer__links h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-lite);
  margin-bottom: 14px;
}
.footer__links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer__disc { font-size: 11px !important; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 12px 20px;
  background: rgba(27,58,45,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  display: none;
}
.floating-cta.visible { display: block; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVO — TABLET (≥ 640px)
═══════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .ingr-grid { grid-template-columns: repeat(4, 1fr); }
  .quality-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .testi-card { flex-basis: calc(50% - 10px); }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVO — DESKTOP (≥ 960px)
═══════════════════════════════════════════════════════════════════ */
@media (min-width: 960px) {
  /* Header */
  .hamburger { display: none; }
  .nav { display: flex; }
  .header__cta { display: inline-flex; }

  /* Hero */
  .hero { padding: 88px 0 72px; }
  .hero__content { flex-direction: row; align-items: center; gap: 64px; }
  .hero__text { flex: 1; }
  .hero__visual { flex: 0 0 460px; max-width: 460px; }
  .hero__img-wrap img { max-height: 500px; }

  /* Prob nav centralizado */
  .prob-nav__scroll { justify-content: center; }

  /* 2 colunas */
  .prob-sol__inner { flex-direction: row; gap: 64px; }
  .prob-sol__img { flex: 0 0 44%; max-width: 44%; }
  .prob-sol__text { flex: 1; }

  .benefits__inner { flex-direction: row-reverse; gap: 64px; }
  .benefits__img { flex: 0 0 44%; max-width: 44%; }
  .benefits__text { flex: 1; }

  .vet-block__inner { flex-direction: row; gap: 64px; }
  .vet-block__img { flex: 0 0 320px; max-width: 320px; }
  .vet-block__text { flex: 1; }

  /* Email capture horizontal */
  .capture__inner { flex-direction: row; text-align: left; gap: 64px; }
  .capture__text { flex: 1; }
  .capture__form { flex: 0 0 440px; }

  /* Carousel 3 cards */
  .testi-card { flex-basis: calc(33.333% - 14px); }

  /* Sem floating CTA */
  .floating-cta { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   OUTRAS SOLUÇÕES
═══════════════════════════════════════════════════════════════════ */
.outras { padding: var(--py) 0; background: var(--verde-lite); }

.outras__header { margin-bottom: 36px; }

/* Bloco do produto principal */
.outras__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--verde);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  margin-bottom: 32px;
}
.outras__main-left { flex: 1; }
.outras__main-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber2);
  color: var(--verde);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.outras__main h3 {
  font-family: var(--f-head);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.outras__main p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 560px;
}

/* Rótulo "em breve" */
.outras__sub-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* Grid dos 3 cards */
.outras__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Card individual */
.outra-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  /* Leve desfoque visual para indicar "não disponível ainda" */
  opacity: 0.88;
}
.outra-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  opacity: 1;
}
.outra-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--verde-lite);
  color: var(--verde-m);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.outra-card__icon {
  font-size: 38px;
  margin-bottom: 12px;
  line-height: 1;
}
.outra-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--verde);
  margin-bottom: 8px;
}
.outra-card p {
  font-size: 14px;
  color: var(--text-b);
  line-height: 1.65;
  margin-bottom: 16px;
}
/* Nome do produto na linha (ex: CALMADOG Coat) */
.outra-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--verde-m);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.outra-card__name strong { color: var(--amber2); }

/* Faixa de preço prevista */
.outra-card__price {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--verde-lite);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 12px;
}

/* nome em itálico no produto principal */
.outras__main h3 em {
  font-style: italic;
  color: var(--amber-lite);
}

.outra-card__notify {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.outra-card__notify:hover { color: var(--verde); }

/* ── Responsivo ── */
@media (min-width: 640px) {
  .outras__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .outras__main {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .outras__main .btn { flex-shrink: 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUTO RECOMENDADO — #produto
═══════════════════════════════════════════════════════════════════ */
.prod-rec {
  background: var(--verde-lite);
  padding: var(--section-py) 0;
}
.prod-rec .section-label {
  text-align: center;
  margin-bottom: 8px;
}
.prod-rec .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.prod-rec__card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 32px rgba(27,58,45,0.10);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .prod-rec__card { flex-direction: row; }
}

/* Coluna imagem */
.prod-rec__img-wrap {
  position: relative;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 32px;
  min-height: 280px;
}
@media (min-width: 768px) {
  .prod-rec__img-wrap { width: 320px; min-height: auto; }
}
.prod-rec__img-wrap img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}
.prod-rec__rating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--amber2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 5px 12px;
  white-space: nowrap;
}

/* Coluna info */
.prod-rec__info {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prod-rec__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--verde-lite);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  display: inline-block;
  align-self: flex-start;
}
.prod-rec__name {
  font-family: var(--f-head);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--verde);
  line-height: 1.25;
  margin: 0;
}
.prod-rec__desc {
  font-size: 15px;
  color: var(--text-b);
  line-height: 1.65;
  margin: 0;
}
.prod-rec__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prod-rec__benefits li {
  font-size: 14px;
  color: var(--text-b);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.prod-rec__benefits li::before {
  content: "✓";
  color: var(--verde);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Pricing */
.prod-rec__pricing {
  background: var(--verde-lite);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.prod-rec__price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prod-rec__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.prod-rec__price {
  font-family: var(--f-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
}
.prod-rec__note {
  font-size: 12px;
  color: var(--muted);
}

/* CTA */
.prod-rec__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prod-rec__cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.prod-rec__disclaimer-inline {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════
   POR QUE RECOMENDAMOS — #por-que
═══════════════════════════════════════════════════════════════════ */
.por-que {
  background: var(--verde);
  color: #fff;
  padding: var(--section-py) 0;
}
.por-que .section-label {
  text-align: center;
  color: var(--amber2);
  opacity: 1;
  margin-bottom: 8px;
}
.por-que .section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
.por-que > .container > p {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.por-que__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 480px) {
  .por-que__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .por-que__grid { grid-template-columns: repeat(4, 1fr); }
}
.por-que__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.por-que__card:hover {
  background: rgba(255,255,255,0.12);
}
.por-que__num {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber2);
  line-height: 1;
  opacity: 0.9;
}
.por-que__card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.por-que__card p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0;
}

/* CTA final da seção */
.por-que__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.por-que__cta .btn {
  min-width: 260px;
  justify-content: center;
}
.por-que__price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUTOS RELACIONADOS — #produtos-relacionados
═══════════════════════════════════════════════════════════════════ */
.related-products {
  background: var(--cream);
  padding: var(--section-py) 0;
}
.related-products .section-title { text-align: center; }
.related-products .section-sub   { text-align: center; margin-bottom: 40px; }

/* Grid: 1 col mobile → 3 col desktop */
.rel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (min-width: 640px)  { .rel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .rel-grid { grid-template-columns: repeat(3, 1fr); } }

/* Card base */
.rel-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.rel-card:hover {
  box-shadow: 0 8px 32px rgba(27,58,45,0.12);
  transform: translateY(-3px);
}

/* Card destaque (Relax) */
.rel-card--featured {
  border-color: var(--amber2);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(232,160,32,0.15);
}
.rel-card__featured-badge {
  background: var(--amber2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 12px;
}

/* Área da imagem */
.rel-card__img-wrap {
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 24px;
}
.rel-card__img-wrap img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.rel-card__img-placeholder {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  background: #ede8df;
  width: 100%;
  min-height: 160px;
  border-radius: 6px;
  text-align: center;
  padding: 12px;
}

/* Corpo do card */
.rel-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rel-card__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.rel-card__name {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--verde);
  margin: 0;
  line-height: 1.3;
}
.rel-card--featured .rel-card__name { color: var(--verde); }

.rel-card__desc {
  font-size: 13px;
  color: var(--text-b);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* CTA do card */
.rel-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 4px;
  font-size: 14px;
}
/* Botão pendente (link ainda não definido) */
.rel-card__cta--pending {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
}
.rel-card__cta--pending::after {
  content: " (em breve)";
  font-size: 11px;
  font-weight: 400;
}

/* Disclaimer */
.related-products__disc {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA TRUST BADGES
═══════════════════════════════════════════════════════════════════ */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
}
.cta-trust span {
  font-size: 12px;
  font-weight: 600;
  color: var(--verde-m);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
/* versão sobre fundo escuro (por-que, hero escuro) */
.por-que .cta-trust span,
.hero .cta-trust span {
  color: rgba(255,255,255,0.80);
}

/* ═══════════════════════════════════════════════════════════════════
   ACESSIBILIDADE — foco visível
═══════════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--amber2);
  outline-offset: 2px;
}
