:root {
  --color-primary: #E8177E;
  --color-primary-dark: #9E0F56;
  --color-bg: #FFFCFA;
  --color-bg-soft: #FFEEF6;
  --color-text: #221019;
  --color-accent: #0FA89C;
  --color-muted: #6b4a58;
  --color-black: #170D12;
  --color-whatsapp: #25D366;

  --font-heading: "Bricolage Grotesque", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-blob: 62% 38% 55% 45% / 45% 55% 45% 55%;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-photo: 0 16px 34px rgba(34, 16, 25, 0.14);
  --max-width: 1120px;
  --section-padding-y: 5.5rem;
}

* {
  box-sizing: border-box;
}

@media (min-width: 860px) {
  [id] {
    scroll-margin-top: 73px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); text-align: center; }
h3 { font-size: 1.2rem; }

.highlight { color: var(--color-primary); }

.solucao-eyebrow,
.como-usar-eyebrow,
.combos-eyebrow {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

img { max-width: 100%; display: block; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* confirmação do pedido precisa parecer instantânea, não uma animação de scroll */
#confirmacao-pedido.reveal,
#confirmacao-final.reveal {
  transition: opacity 0.15s ease, transform 0.15s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

@keyframes btn-cta-kit-pulso {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(232, 23, 126, 0.35);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 14px 34px rgba(232, 23, 126, 0.55), 0 0 34px rgba(232, 23, 126, 0.45);
  }
}
.btn-cta-kit {
  animation: btn-cta-kit-pulso 1.5s ease-in-out infinite;
}
.btn-cta-kit:hover {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .btn-cta-kit { animation: none; }
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 23, 126, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; width: 100%; text-align: center; }
.btn-text {
  background: none;
  border: none;
  color: var(--color-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.5rem 0;
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-whatsapp-header {
  background: var(--color-whatsapp);
  color: #fff;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.icon-whatsapp { flex-shrink: 0; }

@media (min-width: 480px) {
  .btn-whatsapp-header { padding: 0.5rem 1.1rem; font-size: 0.9rem; }
}

/* ---------- Header ---------- */
.site-header {
  position: static;
  z-index: 20;
  background: rgba(255, 252, 250, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(158, 15, 86, 0.1);
}

@media (min-width: 860px) {
  .site-header { position: sticky; top: 0; }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  gap: 1rem;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  font-size: 1.1rem;
  white-space: nowrap;
}
.logo-dot { color: var(--color-primary); font-size: 0.7em; vertical-align: middle; }
.main-nav { display: none; gap: 1.5rem; }
.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--color-primary); }

@media (min-width: 860px) {
  .main-nav { display: flex; }
}

/* ---------- Badges ---------- */
.badge {
  display: inline-block;
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  border: 1px solid rgba(232, 23, 126, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.badge-entrega {
  white-space: nowrap;
  font-size: clamp(0.55rem, 3vw, 0.85rem);
  padding: 0.4rem clamp(0.5rem, 2.5vw, 0.9rem);
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(180deg, var(--color-bg-soft), var(--color-bg));
}
.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy { text-align: center; }
.hero-sub { color: var(--color-muted); font-size: 1.05rem; }
.trust-row {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hero-visual { width: 100%; max-width: 400px; }
.blob-shape {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-blob);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blob-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blob-shape.img-missing img { display: none; }
.blob-shape.img-missing::after {
  content: "foto do produto";
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
}

@media (min-width: 860px) {
  .hero {
    min-height: calc(100vh - 73px);
    display: flex;
    align-items: center;
  }
  .hero .hero-inner { width: 100%; }
}

@media (min-width: 760px) {
  .hero-inner { flex-direction: row; text-align: left; }
  .hero-copy { text-align: left; }
  .trust-row { flex-direction: row; gap: 1.5rem; }
  .hero-visual { max-width: 520px; }
}

/* ---------- Não é esmalte, é tratamento ---------- */
.solucao { padding: var(--section-padding-y) 0; }
.solucao-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.solucao-img {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-photo);
  margin: 0 auto 2rem;
}
/* mobile only: pull the eyebrow above the image (word -> image -> rest of the text) */
.solucao-content { display: contents; }
.solucao-eyebrow { order: -1; margin-bottom: 0.75rem; }
.solucao-titulo { text-align: left; font-size: clamp(1.5rem, 4vw, 2.1rem); }
.solucao-content { text-align: left; }
.solucao-content p { color: var(--color-muted); }
.pill-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.solucao-nota { font-size: 0.8rem; color: var(--color-muted); }
.solucao-cta { margin-top: 0.5rem; width: 100%; text-align: center; }

@media (min-width: 480px) {
  .solucao-cta { width: auto; padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 760px) {
  .solucao-inner { flex-direction: row; align-items: center; gap: 3rem; }
  .solucao-img { flex: 0 0 320px; max-width: 320px; margin: 0; }
  .solucao-content { display: block; flex: 1; }
  .solucao-eyebrow { margin-bottom: 0.4rem; }
}

/* ---------- Como usar em 3 passos ---------- */
.como-usar {
  padding: var(--section-padding-y) 0;
  background: var(--color-black);
  color: #fff;
  text-align: center;
}
.como-usar h2 { color: #fff; }
.passos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}
.passo-card {
  position: relative;
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.passo-numero {
  position: absolute;
  top: -14px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.passo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-soft);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.passo-card h3 { color: var(--color-text); font-size: 1.05rem; margin-bottom: 0.5rem; }
.passo-card p { color: var(--color-muted); font-size: 0.9rem; margin: 0; }
.como-usar-aviso {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #c9aab8;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.como-usar-cta {
  display: inline-block;
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 480px) {
  .como-usar-cta { width: auto; padding-left: 2rem; padding-right: 2rem; }
}

@media (min-width: 760px) {
  .passos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Prova social ---------- */
.prova-social { padding: var(--section-padding-y) 0; background: var(--color-bg-soft); }
.prova-nota {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

.prova-social-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}
.prova-fotos-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}
.antes-depois-card { background: var(--color-bg); border-radius: var(--radius-lg); padding: 1rem; text-align: center; }
.antes-depois-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.ad-img-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; }
.ad-img-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; display: block; }

@media (min-width: 760px) {
  .prova-social-layout { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 0;
  border: 1px solid rgba(34, 16, 25, 0.06);
}
.review-card-destaque { border: 2px solid var(--color-primary); }
.review-tag {
  display: inline-block;
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.5rem;
}
.review-stars { color: #f5a623; letter-spacing: 0.1em; margin: 0 0 0.5rem; font-size: 0.95rem; }
.review-card p:not(.review-stars) { font-size: 0.9rem; margin: 0 0 0.75rem; }
.review-card cite {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text);
}
.review-verificada { color: var(--color-accent); font-weight: 600; font-size: 0.75rem; }

.prova-cta { text-align: center; margin-top: 2.5rem; }
.prova-cta .btn { width: 100%; }

@media (min-width: 480px) {
  .prova-cta .btn { width: auto; padding-left: 2rem; padding-right: 2rem; }
}


/* ---------- Combos ---------- */
.combos {
  padding: var(--section-padding-y) 0;
  text-align: center;
  background: var(--color-black);
  color: #fff;
}
.combos h2 { color: #fff; }
.combos-sub { color: #c9aab8; max-width: 480px; margin: 0 auto 1rem; }

.combos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.combo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: left;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.combo-card .btn { margin-top: auto; }
.combo-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.45);
  z-index: 5;
}
.combo-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.combo-card h3 {
  color: var(--color-text);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.combo-label-pix {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
}
.combo-preco-linha {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.combo-preco-pix {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.combo-riscado {
  color: var(--color-muted);
  font-size: 0.85rem;
  opacity: 0.7;
}
.badge-economia {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.55rem;
}
.badge-economia-teal { background: var(--color-accent); color: #fff; }
.combo-divisor {
  border: none;
  border-top: 1px solid rgba(34, 16, 25, 0.1);
  margin: 0 0 0.75rem;
}
.combo-cartao-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: 0 0 0.9rem;
}
.combo-cartao-row span:last-child { color: var(--color-text); font-weight: 600; }

.btn-dark {
  background: var(--color-black);
  color: #fff;
  width: 100%;
  text-align: center;
}
.btn-light {
  background: #fff;
  color: var(--color-primary-dark);
  width: 100%;
  text-align: center;
}

.combo-destaque {
  background: var(--color-primary);
  transform: scale(1.04);
  z-index: 1;
  box-shadow: 0 30px 70px rgba(232, 23, 126, 0.55), 0 0 60px rgba(232, 23, 126, 0.35);
}
.combo-destaque:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 36px 80px rgba(232, 23, 126, 0.65), 0 0 70px rgba(232, 23, 126, 0.45);
}
.combo-destaque .combo-img {
  background: #fff;
  border-radius: var(--radius-md);
}
.combo-destaque h3,
.combo-destaque .combo-preco-pix,
.combo-destaque .combo-riscado,
.combo-destaque .combo-cartao-row span:last-child { color: #fff; }
.combo-destaque .combo-label-pix { color: #ffd7ea; }
.combo-destaque .combo-riscado { color: #ffd7ea; opacity: 0.85; }
.combo-destaque .badge-economia { background: #fff; color: var(--color-primary-dark); }
.combo-destaque .combo-divisor { border-top-color: rgba(255, 255, 255, 0.25); }
.combo-destaque .combo-cartao-row { color: #ffd7ea; }

.combo-selo {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.combo-selo-teal { background: var(--color-accent); color: #fff; }

@media (min-width: 900px) {
  .combos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 899px) {
  .combos-grid { gap: 2rem; margin-top: 2.5rem; }
  .combo-card { min-height: 80vh; padding: 2rem 1.5rem; border-radius: var(--radius-lg); }
  .combo-img { max-width: 260px; aspect-ratio: 4 / 3; margin: 0 auto 1.25rem; }
  .combo-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
  .combo-label-pix { font-size: 1rem; }
  .combo-preco-linha { gap: 0.5rem; margin-bottom: 1.25rem; }
  .combo-preco-pix { font-size: 2.4rem; }
  .combo-riscado { font-size: 1.1rem; }
  .badge-economia { font-size: 0.85rem; padding: 0.25rem 0.8rem; }
  .combo-divisor { margin-bottom: 1.25rem; }
  .combo-cartao-row { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .combo-card .btn { padding: 1rem 1.5rem; font-size: 1.05rem; }
  .combo-destaque { transform: scale(1); }
  .combo-destaque:hover { transform: translateY(-6px); }
}

/* ---------- Pedido / formulário ---------- */
.pedido { padding: var(--section-padding-y) 0; background: var(--color-bg-soft); }
.pedido-inner { max-width: 560px; }
.combo-resumo { font-weight: 600; color: var(--color-primary-dark); }
.pedido-motivo { font-size: 0.85rem; color: var(--color-muted); }

#form-pedido { display: flex; flex-direction: column; gap: 1.1rem; }
#form-pedido label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}
#form-pedido input[type="text"],
#form-pedido input[type="tel"] {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(158, 15, 86, 0.25);
  background: #fff;
}
#form-pedido input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.toggle-label {
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem !important;
}
.toggle-label input { width: 1.1rem; height: 1.1rem; }
.lgpd-nota { font-size: 0.78rem; color: var(--color-muted); }
.campo-armadilha {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

#confirmacao-pedido, #confirmacao-final {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.pagamento-botoes { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.recebedor-info {
  background: var(--color-bg-soft);
  border: 1px solid rgba(34, 16, 25, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  text-align: left;
}
.recebedor-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}
.recebedor-nome { font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.3rem; }
.recebedor-nota { font-size: 0.78rem; color: var(--color-muted); }
.badge-seguranca { font-size: 0.82rem; color: var(--color-muted); }
.prazo-entrega { font-size: 1.2rem; font-weight: 700; color: var(--color-primary-dark); }

@media (min-width: 860px) {
  .pedido {
    min-height: calc(100vh - 73px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 4rem 0;
  }
  .pedido-inner { max-width: 600px; }
  .pedido-inner h2 { font-size: 2rem; }
  .combo-resumo { font-size: 1.05rem; }
  .pedido-motivo { font-size: 0.95rem; }
  #form-pedido { gap: 1.25rem; }
  #form-pedido label { font-size: 0.95rem; }
  #form-pedido input[type="text"],
  #form-pedido input[type="tel"] { font-size: 1.05rem; padding: 0.85rem 1rem; }
  .pedido-inner .btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
  .lgpd-nota { font-size: 0.85rem; }
  #confirmacao-pedido, #confirmacao-final { padding: 2.25rem; }
  .prazo-entrega { font-size: 1.3rem; }
}

/* ---------- FAQ ---------- */
.faq { padding: var(--section-padding-y) 0; }
.faq-list { max-width: 700px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-list details {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--color-primary-dark);
}
.faq-list p { margin-top: 0.75rem; color: var(--color-muted); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-black);
  color: #fce9f2;
  padding: 2.5rem 0;
  text-align: center;
}
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; }
.footer-logo span { color: var(--color-bg-soft); }
.footer-legal { font-size: 0.78rem; opacity: 0.85; max-width: 560px; margin: 0 auto 1rem; }
.footer-copy { font-size: 0.8rem; opacity: 0.7; margin: 0; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 30;
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.whatsapp-float.whatsapp-float-oculto {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}
