/* ============================================================
   BELEZA REAL — Dra. Danielle Reis
   Paleta: vinho/bordô · creme · dourado · rosa
============================================================ */
:root {
  --wine:        #7A2B3D;
  --wine-dark:   #5C1E2B;
  --wine-deep:   #451621;
  --gold:        #C2A15C;
  --gold-light:  #E1C88E;
  --gold-soft:   #F0E4C6;
  --cream:       #FAF4EC;
  --cream-2:     #F3E9DB;
  --cream-3:     #EADFCD;
  --rose:        #E7C6CC;
  --rose-soft:   #F4E2E5;
  --ink:         #3B2A2E;
  --muted:       #7A6A6D;
  --white:       #ffffff;

  --shadow-sm: 0 4px 14px rgba(69, 22, 33, .08);
  --shadow-md: 0 14px 40px rgba(69, 22, 33, .12);
  --shadow-lg: 0 30px 70px rgba(69, 22, 33, .18);

  --radius: 18px;
  --radius-lg: 30px;

  --serif: 'Playfair Display', serif;
  --cormorant: 'Cormorant Garamond', serif;
  --script: 'Parisienne', cursive;
  --sans: 'Poppins', system-ui, sans-serif;

  --container: 1200px;
  --header-h: 76px;
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 120px) 0; }

.script { font-family: var(--script); font-weight: 400; color: var(--gold); font-style: normal; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold-light); }

.section__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--wine-dark);
  margin-bottom: 20px;
}
.section__title .script { font-size: 1.25em; line-height: 1; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__lead { color: var(--muted); font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, background .3s, color .3s;
}
.btn--primary { background: var(--wine); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--wine-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--wine-deep); font-weight: 600; }
.btn--gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; border-color: var(--wine); color: var(--wine); }
.btn--ghost:hover { background: var(--wine); color: var(--white); transform: translateY(-3px); }
.btn--nav { padding: 10px 24px; background: var(--wine); color: var(--white); }
.btn--nav:hover { background: var(--wine-dark); }
.btn--block { width: 100%; }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--wine-deep);
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .04em;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; }
.topbar__contact { display: flex; gap: 20px; }
.topbar__contact a:hover { color: var(--gold-light); }
.topbar__item { opacity: .9; }

/* ---------- HEADER ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 244, 236, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 43, 61, .1);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 13px; }

/* Emblema circular com coração dourado */
.brand__emblem {
  position: relative; flex-shrink: 0;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 28%, #fff, var(--cream) 75%);
  border: 1.5px solid var(--gold);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.6), var(--shadow-sm);
  color: var(--gold);
}
.brand__emblem::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  border: 1px solid rgba(194,161,92,.45);
}
.brand__emblem svg { width: 22px; height: 22px; }
.brand__emblem-mono {
  font-family: var(--cormorant); font-weight: 600;
  font-size: 1.35rem; letter-spacing: .04em; color: var(--wine);
}
.brand__emblem--footer .brand__emblem-mono { color: var(--gold-light); }

/* Wordmark script "Beleza Real" com degradê vinho→dourado */
.brand__logo { display: flex; flex-direction: column; line-height: 1; }
.brand__logo-script {
  font-family: var(--script);
  font-size: 2.05rem;
  line-height: .95;
  padding-right: 4px;
  background: linear-gradient(105deg, var(--wine-dark) 0%, var(--wine) 40%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.brand__logo-sub {
  font-family: var(--sans);
  font-size: .58rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px; padding-left: 2px;
}

/* Monograma grande (fallback de foto — mantido por compatibilidade) */
.brand__mono {
  font-family: var(--cormorant); font-weight: 600; font-size: 1.4rem;
  letter-spacing: .05em; color: var(--wine);
  border: 2px solid var(--gold); border-radius: 50%;
  width: 46px; height: 46px; display: grid; place-items: center; flex-shrink: 0;
}
.brand__mono--lg { width: 90px; height: 90px; font-size: 2.6rem; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: .9rem; color: var(--ink); position: relative; transition: color .3s; }
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav__link:hover { color: var(--wine); }
.nav__link:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--wine); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 55%, var(--rose-soft) 100%);
  padding: clamp(50px, 7vw, 90px) 0 clamp(90px, 11vw, 150px);
  overflow: hidden;
}
.hero__glow {
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(226,200,142,.35), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  line-height: 1.08;
  color: var(--wine-dark);
  margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--wine); }
.hero__title .script { font-size: 1.15em; display: inline-block; }
.hero__text { font-size: 1.08rem; color: var(--muted); max-width: 480px; margin-bottom: 32px; }
.hero__text strong { color: var(--wine); font-weight: 500; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__badges { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__badge strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--wine); line-height: 1; }
.hero__badge span { font-size: .8rem; color: var(--muted); }

/* Hero figure */
.hero__figure { position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 3/5;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  background: url('../assets/dra-daniele.jpg') center 28%/cover no-repeat, var(--cream-3);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  display: grid; place-items: center;
  overflow: hidden;
}
/* Esconde o texto de fallback quando há foto real */
.hero__photo .hero__photo-fallback,
.sobre__photo .hero__photo-fallback { display: none; }
.hero__photo-fallback { text-align: center; color: var(--wine); padding: 20px; }
.hero__photo-fallback p { font-family: var(--serif); font-size: 1.3rem; margin-top: 12px; }
.hero__photo-fallback small { font-size: .72rem; color: var(--muted); letter-spacing: .05em; }

.hero__tag {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 235px;
  animation: float 5s ease-in-out infinite;
}
.hero__tag-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--wine); color: var(--gold-light);
  border-radius: 50%; display: grid; place-items: center; font-size: 1.05rem;
}
.hero__tag strong { display: block; font-size: .86rem; color: var(--wine-dark); }
.hero__tag small { font-size: .72rem; color: var(--muted); line-height: 1.3; }
.hero__tag--1 { top: 12%; left: -6%; }
.hero__tag--2 { bottom: 10%; right: -5%; animation-delay: 1.5s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__wave {
  position: absolute; bottom: -1px; left: 0; width: 100%; height: 60px;
  background: var(--cream);
  clip-path: ellipse(75% 100% at 50% 100%);
}

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--wine);
  color: var(--gold-soft);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 26px;
  animation: scroll 30s linear infinite;
  font-family: var(--cormorant);
  font-size: 1.35rem;
  letter-spacing: .04em;
}
.marquee__track span { flex-shrink: 0; }
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SOBRE ---------- */
.sobre__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.sobre__figure { position: relative; }
.sobre__photo {
  aspect-ratio: 3/5;
  border-radius: var(--radius-lg);
  background: url('../assets/dra-daniele.jpg') center 28%/cover no-repeat, var(--cream-3);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  display: grid; place-items: center;
}
.sobre__seal {
  position: absolute; bottom: -26px; right: -20px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--wine); color: var(--cream);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
  padding: 10px;
}
.sobre__seal span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.sobre__seal strong { font-family: var(--script); font-size: 2rem; color: var(--gold-light); font-weight: 400; line-height: 1; }

.sobre__content p { color: var(--muted); margin-bottom: 16px; }
.sobre__content strong { color: var(--wine); font-weight: 500; }
.sobre__list { margin: 24px 0 32px; display: grid; gap: 12px; }
.sobre__list li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.sobre__list span {
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--gold-soft); color: var(--wine);
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem; font-weight: 600;
}

/* ---------- SERVIÇOS ---------- */
.servicos { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.servicos__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(194,161,92,.18);
  transition: transform .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 62px; height: 62px; border-radius: 18px;
  background: linear-gradient(145deg, var(--rose-soft), var(--cream-3));
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 20px;
}
.card h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--wine-dark); margin-bottom: 10px; font-weight: 600; }
.card p { font-size: .9rem; color: var(--muted); }

.servicos__note { text-align: center; margin-top: 44px; color: var(--muted); }
.servicos__note a { color: var(--wine); font-weight: 500; border-bottom: 1px solid var(--gold); }
.servicos__note a:hover { color: var(--wine-dark); }

/* ---------- PROMO / BOTOX DAY ---------- */
.promo {
  background:
    radial-gradient(circle at 15% 20%, rgba(194,161,92,.18), transparent 40%),
    linear-gradient(135deg, var(--wine-dark), var(--wine-deep));
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative; overflow: hidden;
}
.promo__inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 50px; align-items: center; }
.promo__title { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1; margin-bottom: 18px; }
.promo__title .script { color: var(--gold-light); font-size: 1.3em; }
.promo__text { color: rgba(250,244,236,.85); max-width: 460px; margin-bottom: 26px; }
.promo__text strong { color: var(--gold-light); }
.promo__list { display: grid; gap: 12px; margin-bottom: 32px; }
.promo__list li { display: flex; align-items: center; gap: 12px; }
.promo__list span {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(226,200,142,.15); color: var(--gold-light);
  border-radius: 50%; display: grid; place-items: center;
}
.promo__card {
  background: rgba(250,244,236,.06);
  border: 1px solid rgba(226,200,142,.3);
  border-radius: var(--radius-lg);
  padding: 40px 30px; text-align: center;
  backdrop-filter: blur(4px);
}
.promo__card-label { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }
.promo__date { font-family: var(--serif); margin: 14px 0; }
.promo__date strong { font-size: 5rem; line-height: 1; color: var(--white); }
.promo__date span { font-size: 2rem; color: var(--gold-light); }
.promo__signature { font-size: 1.7rem; color: var(--gold-light); }

/* ---------- DIFERENCIAIS ---------- */
.dif__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.dif__item {
  background: var(--white); border-radius: var(--radius); padding: 34px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(194,161,92,.15);
  transition: transform .3s;
}
.dif__item:hover { transform: translateY(-6px); }
.dif__num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); opacity: .5; line-height: 1; margin-bottom: 14px; }
.dif__item h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--wine-dark); margin-bottom: 10px; font-weight: 600; }
.dif__item p { font-size: .9rem; color: var(--muted); }

/* ---------- DEPOIMENTOS ---------- */
.depo { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.depo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.depo__card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(194,161,92,.15);
  position: relative;
}
.depo__card::before {
  content: '“'; position: absolute; top: 6px; right: 24px;
  font-family: var(--serif); font-size: 5rem; color: var(--rose); opacity: .5; line-height: 1;
}
.depo__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.depo__card blockquote { font-family: var(--cormorant); font-size: 1.15rem; color: var(--ink); font-style: italic; margin-bottom: 20px; line-height: 1.5; }
.depo__card figcaption strong { display: block; color: var(--wine-dark); font-weight: 600; }
.depo__card figcaption span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background:
    radial-gradient(circle at 80% 30%, rgba(226,200,142,.2), transparent 45%),
    linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--cream); text-align: center; padding: clamp(60px, 8vw, 100px) 0;
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 14px; }
.cta-band .script { color: var(--gold-light); font-size: 1.2em; }
.cta-band p { color: rgba(250,244,236,.85); margin-bottom: 30px; max-width: 520px; margin-inline: auto; }

/* ---------- FAQ ---------- */
.faq__inner { max-width: 820px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--white); border-radius: 14px; padding: 4px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(194,161,92,.15);
  transition: box-shadow .3s;
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__item summary {
  font-family: var(--serif); font-size: 1.08rem; color: var(--wine-dark);
  padding: 20px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.6rem; color: var(--gold); transition: transform .3s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 22px; font-size: .95rem; }

/* ---------- CONTATO ---------- */
.contato__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contato__info p { color: var(--muted); margin-bottom: 30px; }
.contato__list { display: grid; gap: 18px; margin-bottom: 30px; }
.contato__list li { display: flex; align-items: center; gap: 16px; }
.contato__ic {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(145deg, var(--wine), var(--wine-dark));
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(69,22,33,.18);
  transition: transform .3s, box-shadow .3s;
}
.contato__ic svg { width: 24px; height: 24px; }
.contato__list li { transition: transform .3s; }
.contato__list li:hover .contato__ic {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 12px 26px rgba(69,22,33,.28);
}
.contato__list strong { display: block; color: var(--wine-dark); font-size: .95rem; }
.contato__list small { color: var(--muted); font-size: .88rem; }
.contato__socials { display: flex; gap: 14px; }

.contato__form {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(194,161,92,.2);
}
.contato__form h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--wine-dark); margin-bottom: 24px; font-weight: 600; }
.contato__form label { display: block; font-size: .85rem; color: var(--ink); margin-bottom: 16px; font-weight: 400; }
.contato__form input, .contato__form select, .contato__form textarea {
  width: 100%; margin-top: 6px; padding: 12px 16px;
  border: 1.5px solid var(--cream-3); border-radius: 12px;
  font-family: var(--sans); font-size: .92rem; color: var(--ink);
  background: var(--cream); transition: border .3s;
}
.contato__form input:focus, .contato__form select:focus, .contato__form textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.contato__form textarea { resize: vertical; }
.contato__form-note { display: block; text-align: center; margin-top: 12px; color: var(--muted); font-size: .78rem; }

/* ---------- FOOTER ---------- */
.footer { background: var(--wine-deep); color: var(--cream); padding: 50px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.brand__emblem--footer {
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.12), transparent 75%);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 3px rgba(226,200,142,.12);
  color: var(--gold-light);
}
.brand__emblem--footer::after { border-color: rgba(226,200,142,.4); }
.brand__logo-script--footer {
  background: linear-gradient(105deg, var(--gold-light) 0%, var(--gold) 60%, var(--rose) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand__logo-sub--footer { color: rgba(250,244,236,.75); }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a { font-size: .88rem; opacity: .85; transition: opacity .3s, color .3s; }
.footer__nav a:hover { opacity: 1; color: var(--gold-light); }
.footer__copy { grid-column: 1 / -1; text-align: center; padding-top: 26px; margin-top: 16px; border-top: 1px solid rgba(226,200,142,.2); font-size: .82rem; opacity: .8; }
.footer__copy small { color: var(--gold-light); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  animation: pulse 2.5s infinite;
  transition: transform .3s;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1024px) {
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .dif__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 30px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; top: var(--header-h); right: 0;
    width: min(80%, 320px); height: calc(100vh - var(--header-h));
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 34px 30px; gap: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .35s;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.05rem; }
  .btn--nav { width: 100%; }
  .nav-toggle { display: flex; }

  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__figure { order: 1; max-width: 380px; margin: 0 auto; }
  .hero__text { margin-inline: auto; }
  .hero__cta, .hero__badges { justify-content: center; }
  .hero__tag--1 { left: 0; }
  .hero__tag--2 { right: 0; }

  .sobre__inner { grid-template-columns: 1fr; gap: 60px; }
  .sobre__figure { max-width: 400px; margin: 0 auto; }
  .promo__inner { grid-template-columns: 1fr; }
  .depo__grid { grid-template-columns: 1fr; }
  .contato__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 520px) {
  .servicos__grid { grid-template-columns: 1fr; }
  .dif__grid { grid-template-columns: 1fr; }
  .hero__badges { gap: 20px; }
  .contato__form { padding: 28px 22px; }
  .brand__text small { display: none; }
  .promo__date strong { font-size: 3.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
