/* ===========================================================
   110 Receitas Leves — LP styles
   Paleta inspirada nos criativos: rosa, off-white, verde leve
   =========================================================== */

:root {
  --rose-50:  #FFF4F6;
  --rose-100: #FEE3E8;
  --rose-200: #F9C2CC;
  --rose-400: #F08AA0;
  --rose-500: #E97D8B;
  --rose-600: #D85F75;
  --rose-700: #B94B5F;

  --green-100: #EAF4DB;
  --green-500: #7CB342;
  --green-600: #5E9A2C;

  --bg:       #FFF8F5;
  --surface:  #FFFFFF;
  --soft:     #FBEFEE;

  --text-1:   #2D2123;
  --text-2:   #5A4A4D;
  --text-3:   #8A7B7E;
  --line:     #F0E0DD;

  --whats:    #25D366;
  --whats-d:  #1EB857;

  --shadow-sm: 0 4px 14px rgba(232, 125, 139, 0.08);
  --shadow:    0 12px 30px rgba(45, 33, 35, 0.10);
  --shadow-lg: 0 20px 50px rgba(45, 33, 35, 0.18);

  --radius:   16px;
  --radius-lg: 24px;

  --maxw: 1140px;
  --maxw-narrow: 760px;
}

/* Reset enxuto */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text-1);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden; /* impede scroll horizontal acidental no mobile */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: var(--maxw-narrow); }
.center { text-align: center; }

/* Tipografia */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-1);
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
h1 { font-weight: 700; font-size: clamp(30px, 5.4vw, 56px); }
h2 { font-weight: 700; font-size: clamp(24px, 3.4vw, 40px); }
h3 { font-weight: 600; font-size: clamp(18px, 1.6vw, 22px); }
em { font-style: italic; color: var(--rose-600); font-family: 'Caveat', cursive; font-weight: 700; font-size: 1.05em; }

p { margin: 0 0 12px; color: var(--text-2); font-size: 17px; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-600);
  font-weight: 700;
  background: var(--rose-100);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow--center { display: block; width: max-content; margin: 0 auto 14px; }

.section { padding: 72px 0; }
.section--soft { background: var(--soft); }
.section__title { margin-bottom: 14px; }
.section__title--center { text-align: center; }
.section__lead {
  color: var(--text-2);
  font-size: 18px;
  max-width: 720px;
}
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 16px 28px; font-size: 17px; }
.btn--xl { padding: 20px 32px; font-size: 19px; }

.btn--primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 125, 139, 0.35);
}
.btn--primary:hover { box-shadow: 0 14px 30px rgba(232, 125, 139, 0.45); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--whats), var(--whats-d));
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5); }
.btn__ico { font-size: 1.2em; }

/* Topbar */
.topbar {
  background: var(--rose-700);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.topbar__pill {
  background: #fff;
  color: var(--rose-700);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

/* HERO */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 600px at 90% -10%, var(--rose-100), transparent 60%),
    radial-gradient(800px 400px at -10% 100%, var(--green-100), transparent 60%),
    linear-gradient(180deg, var(--bg), #fff);
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__title { margin-top: 8px; }
.hero__title-l1,
.hero__title-l2,
.hero__title-l3 {
  display: block;
}
.hero__title-l2 {
  font-family: 'Caveat', cursive;
  color: var(--rose-600);
  font-weight: 700;
  font-size: 1.05em;
  font-style: normal;
  line-height: 1;
  margin: 4px 0;
}
.hero__title-l3 {
  font-size: 0.92em;
  color: var(--text-1);
}
.hero__sub { font-size: 18px; color: var(--text-2); max-width: 540px; }
.hero__bullets {
  list-style: none; padding: 0; margin: 18px 0 28px;
  display: grid; gap: 8px;
  font-size: 16px; color: var(--text-1);
}
.hero__bullets li { display: flex; align-items: center; gap: 10px; }
.check {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 999px;
  font-size: 13px; font-weight: 800;
}
.hero__trust {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  color: var(--text-3); font-size: 14px;
}
.stars { color: #F4B400; letter-spacing: 2px; font-size: 18px; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.hero__badge {
  position: absolute; top: 8%; right: 4%;
  background: #fff;
  border-radius: 999px;
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px; line-height: 1.1;
  color: var(--rose-700);
  box-shadow: var(--shadow);
  border: 2px dashed var(--rose-200);
  transform: rotate(8deg);
}

/* Trustbar */
.trustbar {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trustbar__row {
  display: flex; flex-wrap: wrap; gap: 20px 36px;
  justify-content: center; align-items: center;
  color: var(--text-2); font-size: 15px;
}
.trustbar__item span { margin-right: 6px; }

/* Mini-cards */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.card-mini {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.card-mini h3 { margin-top: 4px; margin-bottom: 6px; }
.card-mini p { margin: 0; font-size: 15px; }
.card-mini__ico {
  font-size: 28px;
  width: 52px; height: 52px;
  background: var(--rose-100);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

/* Block cards (com foto) */
.cards-3--blocks { gap: 24px; }
.block-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.block-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.block-card img {
  width: 100%; height: 240px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.block-card__body { padding: 22px; }
.block-card__body p { font-size: 15px; }
.tag {
  display: inline-block;
  background: var(--green-100); color: var(--green-600);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  margin-top: 10px;
}

/* Galeria */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform .25s ease;
}
.gallery figure:hover img { transform: scale(1.04); }

/* Bônus */
.bonus-list {
  margin-top: 28px;
  display: grid; gap: 14px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.bonus-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.bonus-item__num {
  flex: 0 0 44px; height: 44px;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.bonus-item h3 { margin: 0 0 4px; }
.bonus-item p { margin: 0; }

/* Oferta */
.offer { background: linear-gradient(180deg, #fff, var(--rose-50)); }
.offer__box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  align-items: stretch;
}
.offer__media { background: var(--rose-100); }
.offer__media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.offer__content { padding: 36px; }
.offer__content h2 { margin-bottom: 18px; }
.offer__list {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: grid; gap: 8px;
  font-size: 16px; color: var(--text-1);
}
.offer__list li { padding: 8px 0; border-bottom: 1px dashed var(--line); }
.offer__list li:last-child { border-bottom: 0; }

.price {
  background: var(--rose-50);
  border: 1px dashed var(--rose-200);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 18px;
  text-align: left;
}
.price__from { color: var(--text-3); font-size: 14px; }
.price__from s { color: var(--text-3); }
.price__main {
  display: flex; align-items: baseline; gap: 4px;
  font-family: 'Playfair Display', serif;
  color: var(--rose-700);
  margin: 4px 0 2px;
}
.price__currency { font-size: 22px; font-weight: 700; }
.price__amount { font-size: 64px; font-weight: 700; line-height: 1; }
.price__cents { font-size: 28px; font-weight: 700; }
.price__note { color: var(--text-3); font-size: 13px; }

.guarantee {
  margin-top: 18px;
  display: flex; gap: 14px; align-items: center;
  background: var(--green-100);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text-1);
  font-size: 14px;
}
.guarantee__seal {
  flex: 0 0 56px; height: 56px; border-radius: 999px;
  background: var(--green-500); color: #fff;
  font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
}
.guarantee strong { display: block; margin-bottom: 2px; }
.guarantee span { color: var(--text-2); }

.payment-icons {
  margin-top: 14px;
  display: flex; gap: 10px; flex-wrap: wrap;
  color: var(--text-3); font-size: 13px;
}
.payment-icons span {
  background: #fff; border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 6px;
  font-weight: 600;
}

/* Depoimentos */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.testi {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.testi p { font-size: 15px; color: var(--text-1); }
.testi footer { color: var(--text-3); font-size: 14px; font-weight: 600; }
.testi-note {
  text-align: center;
  color: var(--text-3);
  font-size: 12px;
  margin-top: 18px;
  font-style: italic;
}

/* FAQ */
.faq { margin-top: 24px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-1);
  list-style: none;
  position: relative;
  padding-right: 28px;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--rose-500);
  font-size: 22px; font-weight: 700;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq p { margin: 12px 0 0; color: var(--text-2); font-size: 15px; }

/* CTA final */
.cta-final {
  background:
    radial-gradient(800px 400px at 50% 100%, var(--rose-200), transparent 60%),
    linear-gradient(135deg, var(--rose-500), var(--rose-700));
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-final h2 { color: #fff; }
.cta-final h2 em { color: #FFE0E6; }
.cta-final p { color: rgba(255,255,255,0.92); font-size: 17px; }
.cta-final__note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

/* Footer */
.footer {
  background: #2D2123;
  color: #d8c8cb;
  padding: 40px 0 24px;
  font-size: 14px;
}
.footer__disclaimer {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.6;
}
.footer__disclaimer strong { color: #fff; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__cols strong { color: #fff; display: block; margin-bottom: 6px; }
.footer__cols a { color: #d8c8cb; text-decoration: underline; }
.footer__cols p { color: #d8c8cb; margin: 4px 0; font-size: 14px; }
.footer__copy {
  margin-top: 18px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 10px;
  color: #a89598;
  font-size: 12px;
}
.footer__fb-disclaimer { font-size: 11px; max-width: 600px; }

/* FAB WhatsApp */
.fab-whats {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 58px; height: 58px;
  background: var(--whats);
  color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  z-index: 50;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab-whats:hover { transform: translateY(-2px) scale(1.05); }
.fab-whats::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4);  opacity: 0; }
}

/* ============================
   STICKY CTA MOBILE
   Aparece só em telas pequenas, sempre visível
   ============================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(45,33,35,0.10);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom)) 14px;
  align-items: center;
  gap: 10px;
  z-index: 60;
}
.sticky-cta__price {
  flex: 0 0 auto;
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.sticky-cta__from { font-size: 11px; color: var(--text-3); }
.sticky-cta__from s { color: var(--text-3); }
.sticky-cta__price strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--rose-700);
  font-weight: 700;
}
.sticky-cta__btn {
  flex: 1;
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(232, 125, 139, 0.35);
  white-space: nowrap;
}

/* ============================
   RESPONSIVO — TABLET
   ============================ */
@media (max-width: 960px) {
  .hero { padding: 32px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .hero__copy { order: 2; text-align: center; }
  .hero__bullets {
    justify-self: center; max-width: 380px;
    margin-left: auto; margin-right: auto;
    text-align: left;
  }
  .hero__bullets li { justify-content: flex-start; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__trust { justify-content: center; }
  .hero__media { order: 1; }
  .hero__media img { max-width: 300px; transform: rotate(-1deg); }
  .hero__badge {
    width: 78px; height: 78px;
    font-size: 12px; right: calc(50% - 170px); top: 8%;
  }

  .section { padding: 48px 0; }

  .cards-3 { grid-template-columns: 1fr; }
  .cards-3--blocks { grid-template-columns: 1fr; }
  .block-card img { height: 220px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery img { height: 220px; }

  .offer__box { grid-template-columns: 1fr; }
  .offer__media img { min-height: 240px; max-height: 320px; }
  .offer__content { padding: 24px 20px; }

  .testi-grid { grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================
   RESPONSIVO — MOBILE (≤ 720px)
   ============================ */
@media (max-width: 720px) {
  /* Container com padding menor pra ganhar espaço */
  .container { padding: 0 18px; }

  /* Topbar: empilhar elegantemente */
  .topbar {
    flex-direction: column;
    gap: 4px;
    padding: 8px 12px;
    font-size: 12px;
  }
  .topbar__pill { font-size: 11px; }

  /* Hero */
  .hero { padding: 24px 0 40px; }
  .hero__title { font-size: clamp(24px, 7vw, 32px); line-height: 1.18; }
  .hero__title-l2 { font-size: 1em; }
  .hero__title-l3 { font-size: 0.78em; }
  .hero__sub { font-size: 15px; max-width: 100%; }
  .hero__bullets {
    font-size: 14px;
    max-width: 100%;
  }
  .hero__bullets li { gap: 8px; }
  .hero__media img { max-width: 260px; }
  .hero__badge {
    width: 64px; height: 64px;
    font-size: 11px; right: calc(50% - 140px); top: 4%;
  }

  /* Section padding mais compacto */
  .section { padding: 40px 0; }
  .section__title { font-size: clamp(20px, 5.2vw, 26px); line-height: 1.22; }
  .section__title em { font-size: 1em; }
  .section__lead { font-size: 15px; }

  /* Trustbar com rolagem se necessário, mas com itens compactos */
  .trustbar { padding: 14px 0; }
  .trustbar__row { gap: 12px 18px; font-size: 13px; }
  .trustbar__item { white-space: nowrap; }

  /* Cards simples */
  .card-mini { padding: 20px 18px; }

  /* Gallery em 2 colunas com altura menor */
  .gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery img { height: 200px; }

  /* Bonus */
  .bonus-item { padding: 16px; gap: 14px; }
  .bonus-item__num { flex: 0 0 38px; height: 38px; font-size: 18px; }

  /* Oferta — destaque */
  .offer { padding: 32px 0 56px; }
  .offer__box { border-radius: 18px; }
  .offer__media img { min-height: 200px; max-height: 260px; }
  .offer__content { padding: 22px 18px; }
  .offer__list { font-size: 15px; }
  .price { padding: 16px 18px; text-align: center; }
  .price__main { justify-content: center; }
  .price__amount { font-size: 56px; }
  .price__cents { font-size: 24px; }

  /* Botões em largura cheia no mobile */
  .btn--xl, .btn--lg { width: 100%; max-width: 420px; padding: 18px 22px; font-size: 17px; }
  .center .btn { width: 100%; max-width: 420px; }
  .offer__content .btn { width: 100%; max-width: 100%; }

  /* CTA final */
  .cta-final { padding: 48px 0 56px; }
  .cta-final h2 { font-size: clamp(22px, 5.6vw, 28px); }
  .cta-final .btn { width: 100%; max-width: 420px; }

  /* FAQ */
  .faq summary { font-size: 15px; }
  .faq p { font-size: 14px; }

  /* Footer */
  .footer { padding: 32px 0 96px; } /* espaço extra no bottom para sticky CTA */
  .footer__copy { flex-direction: column; align-items: flex-start; }

  /* Mostra sticky CTA, esconde FAB */
  .sticky-cta { display: flex; }
  .fab-whats { display: none; }

  /* Body padding para não esconder conteúdo atrás da sticky CTA */
  body { padding-bottom: 80px; }
}

/* ============================
   RESPONSIVO — TELAS BEM PEQUENAS (≤ 380px)
   ============================ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 26px; }
  .hero__media img { max-width: 220px; }
  .hero__badge { width: 56px; height: 56px; font-size: 10px; right: calc(50% - 120px); }

  .price__amount { font-size: 48px; }
  .price__currency { font-size: 18px; }
  .price__cents { font-size: 22px; }

  .gallery img { height: 160px; }

  .sticky-cta__price strong { font-size: 19px; }
  .sticky-cta__btn { font-size: 14px; padding: 12px 14px; }
}

/* ============================
   ORIENTAÇÃO PAISAGEM curta (mobile landscape)
   ============================ */
@media (max-height: 480px) and (orientation: landscape) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Foco visível para teclado */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--rose-400);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Evita zoom indesejado em iOS quando user dá tap em formulário (não há, mas previne) */
input, select, textarea { font-size: 16px; }

/* Performance: previne CLS reservando espaço para imagens */
img { height: auto; }
