/* ============================================================
   Débora Ribeiro · Estética & Bem Estar · Guarujá SP
   Ruby & Gold Atelier, design system
   ============================================================ */

:root {
  --wine-950: #230404;
  --wine-900: #350807;
  --wine-800: #4b0c0a;
  --red-700: #6e130f;
  --red-600: #941d14; /* cor oficial da marca */
  --red-500: #ab2a1d;
  --red-400: #c43d2b;

  --gold-100: #f9ecc9;
  --gold-200: #f3dfa4;
  --gold-300: #ecd287;
  --gold-400: #e0ba5f;
  --gold-500: #d0a544;
  --gold-600: #b98a2f;
  --gold-700: #966c22;

  --cream: #faf4e9;
  --cream-2: #f4ebdb;
  --ivory: #fffdf7;
  --ink: #33201b;
  --ink-soft: #5d443c;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
  --font-script: "Great Vibes", cursive;

  --grad-gold: linear-gradient(115deg, #8a6018 0%, #d0a544 22%, #f9ecc9 50%, #d0a544 78%, #8a6018 100%);
  --grad-gold-soft: linear-gradient(115deg, #b98a2f, #ecd287 45%, #b98a2f);
  --shadow-soft: 0 20px 60px -22px rgba(53, 8, 7, 0.35);
  --shadow-card: 0 14px 44px -18px rgba(53, 8, 7, 0.22);
  --radius-arch: 999px 999px 24px 24px;

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: inherit;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold-400); color: var(--wine-900); }

.container {
  width: min(100% - 2.75rem, 1160px);
  margin-inline: auto;
}

.section { padding-block: clamp(4.25rem, 9vw, 7.5rem); position: relative; }

/* fade entre páginas */
body { opacity: 0; transition: opacity 0.55s ease; }
body.is-ready { opacity: 1; }
body.is-leaving { opacity: 0; transition: opacity 0.3s ease; }

/* ---------- textos utilitários ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1.1rem;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.eyebrow.center::after { background: linear-gradient(90deg, var(--gold-500), transparent); }

.on-red .eyebrow { color: var(--gold-300); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-600);
}
.on-red .script { color: var(--gold-300); }

.gold-text {
  background: var(--grad-gold);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldSheen 7s linear infinite;
}
@keyframes goldSheen {
  0% { background-position: 0% center; }
  100% { background-position: 220% center; }
}

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.1rem, 5.6vw, 3.3rem);
  letter-spacing: 0.01em;
}
.section-head .lead { color: var(--ink-soft); font-size: 1.05rem; }
.on-red .section-head .lead { color: rgba(249, 236, 201, 0.75); }

/* ---------- botões ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), background-color 0.3s, color 0.3s, border-color 0.3s;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(115deg, #a97e24, #d0a544 40%, #eeda9b 55%, #d0a544 70%, #a97e24);
  background-size: 200% auto;
  color: var(--wine-900);
  box-shadow: 0 12px 32px -12px rgba(208, 165, 68, 0.65);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(208, 165, 68, 0.8);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-120%);
}
.btn-gold:hover::after { animation: btnShine 0.9s var(--ease-lux); }
@keyframes btnShine { to { transform: translateX(120%); } }

.btn-ghost {
  background: transparent;
  color: var(--gold-200);
  border: 1px solid rgba(224, 186, 95, 0.55);
}
.btn-ghost:hover {
  background: rgba(224, 186, 95, 0.12);
  border-color: var(--gold-300);
  transform: translateY(-3px);
}

.btn-red {
  background: linear-gradient(120deg, var(--red-700), var(--red-600));
  color: var(--gold-100);
  box-shadow: 0 14px 34px -14px rgba(110, 19, 15, 0.6);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 20px 42px -14px rgba(110, 19, 15, 0.75); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  transition: padding 0.4s ease;
}
.site-header.scrolled {
  background: rgba(35, 4, 4, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(224, 186, 95, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 75;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(224, 186, 95, 0.6);
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-200);
}
.brand-name span {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(249, 236, 201, 0.65);
}

.main-nav { display: none; }

.nav-cta { display: none; }

.nav-toggle {
  z-index: 75;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  background: rgba(224, 186, 95, 0.08);
  border: 1px solid rgba(224, 186, 95, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.nav-toggle:hover { background: rgba(224, 186, 95, 0.18); }
.nav-toggle span {
  height: 1.5px;
  background: var(--gold-300);
  border-radius: 2px;
  transition: transform 0.45s var(--ease-lux), opacity 0.3s, width 0.45s var(--ease-lux);
}
.nav-toggle span:nth-child(2) { width: 70%; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(4.2px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-4.2px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.5rem 2.2rem 3rem;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(208, 165, 68, 0.16), transparent 55%),
    radial-gradient(120% 120% at 15% 100%, rgba(110, 19, 15, 0.85), transparent 60%),
    linear-gradient(160deg, var(--wine-950), var(--wine-900) 55%, #3f0908);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.mobile-menu nav { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu a.menu-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 500;
  color: var(--gold-100);
  padding-block: 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-lux), transform 0.55s var(--ease-lux), color 0.3s;
}
.mobile-menu a.menu-link em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--gold-600);
}
.mobile-menu a.menu-link:hover { color: var(--gold-300); }
body.menu-open .mobile-menu a.menu-link {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.08s * var(--i, 0) + 0.15s);
}
.mobile-menu .menu-foot {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-lux) 0.55s, transform 0.6s var(--ease-lux) 0.55s;
}
body.menu-open .mobile-menu .menu-foot { opacity: 1; transform: translateY(0); }
.mobile-menu .menu-foot .btn { align-self: flex-start; }
.mobile-menu .menu-foot p {
  color: rgba(249, 236, 201, 0.55);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  margin: 0;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--gold-100);
  background:
    radial-gradient(130% 70% at 80% 0%, rgba(196, 61, 43, 0.34), transparent 55%),
    radial-gradient(120% 90% at 0% 100%, rgba(35, 4, 4, 0.9), transparent 60%),
    radial-gradient(90% 60% at 50% 50%, rgba(148, 29, 20, 0.55), transparent 100%),
    linear-gradient(158deg, #4b0c0a 0%, #941d14 48%, #350807 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(70vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 186, 95, 0.22), rgba(224, 186, 95, 0.05) 45%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 7.5rem;
}

.hero-copy { text-align: center; }
.hero-copy .script {
  display: block;
  font-size: clamp(1.9rem, 7vw, 2.9rem);
  margin-bottom: 0.4rem;
}
.hero-copy h1 {
  font-size: clamp(2.9rem, 11.5vw, 5.4rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  margin-bottom: 0.85rem;
}
.hero-copy h1 .gold-text { display: inline-block; }
.hero-copy .hero-sub {
  max-width: 32rem;
  margin-inline: auto;
  color: rgba(249, 236, 201, 0.82);
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.4rem;
  margin-top: 1.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249, 236, 201, 0.6);
}
.hero-tags span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-tags svg { width: 13px; height: 13px; color: var(--gold-400); }

.hero-figure {
  position: relative;
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.hero-figure .halo {
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(120vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(224, 186, 95, 0.4), rgba(224, 186, 95, 0.07) 42%, transparent 66%);
  border-radius: 50%;
}
.hero-figure .arc {
  position: absolute;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(84vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--red-700), var(--red-700)) padding-box,
    conic-gradient(from 130deg, transparent 0 40deg, var(--gold-400) 90deg, var(--gold-100) 180deg, var(--gold-400) 270deg, transparent 320deg 360deg) border-box;
  background-clip: padding-box, border-box;
  opacity: 0.85;
  animation: arcSpin 26s linear infinite;
}
.hero-figure .arc::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(224, 186, 95, 0.28);
}
@keyframes arcSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to { transform: translateX(-50%) rotate(360deg); }
}
.hero-figure .photo-wrap {
  position: relative;
  z-index: 2;
  width: min(84vw, 460px);
}
.hero-figure img.debora {
  width: 100%;
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 99%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

.hero-badge {
  position: absolute;
  z-index: 3;
  left: clamp(2px, 2vw, 40px);
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.58rem 1rem;
  background: rgba(35, 4, 4, 0.62);
  border: 1px solid rgba(224, 186, 95, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-200);
  animation: floatSlow 6.5s ease-in-out infinite;
}
.hero-badge.right {
  left: auto;
  right: clamp(2px, 2vw, 40px);
  bottom: 22%;
  animation-delay: 1.4s;
}
.hero-badge svg { width: 15px; height: 15px; color: var(--gold-400); }

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

/* partículas douradas */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particles i {
  position: absolute;
  bottom: -10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f9ecc9, #d0a544 65%, transparent);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  12% { opacity: 0.85; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-108vh) scale(1.15); opacity: 0; }
}

/* seta scroll */
.scroll-hint {
  position: absolute;
  z-index: 5;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(249, 236, 201, 0.55);
}
.scroll-hint svg { width: 22px; height: 22px; animation: hintDrop 2.2s ease-in-out infinite; }
@keyframes hintDrop {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ---------- marquee ---------- */

.marquee {
  background: linear-gradient(90deg, var(--wine-950), var(--wine-900) 50%, var(--wine-950));
  border-block: 1px solid rgba(224, 186, 95, 0.22);
  overflow: hidden;
  padding-block: 1.05rem;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 2.8rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.06rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; font-style: normal; font-size: 0.8rem; color: var(--gold-600); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sobre ---------- */

.sobre { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); overflow: hidden; }
.sobre-grid { display: grid; gap: 3rem; align-items: center; }

.portrait-card { position: relative; margin-inline: auto; width: min(78vw, 380px); }
.portrait-card .frame {
  position: relative;
  border-radius: var(--radius-arch);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(224, 186, 95, 0.35), transparent 60%),
    linear-gradient(170deg, #6e130f, #941d14 60%, #4b0c0a);
  padding: 0.55rem;
  box-shadow: var(--shadow-soft);
}
.portrait-card .frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 989px 989px 18px 18px;
  border: 1px solid rgba(224, 186, 95, 0.55);
  z-index: 2;
  pointer-events: none;
}
.portrait-card .frame-inner {
  border-radius: 989px 989px 18px 18px;
  overflow: hidden;
  background:
    radial-gradient(100% 70% at 50% 20%, rgba(249, 236, 201, 0.2), transparent 60%),
    linear-gradient(180deg, #ab2a1d, #6e130f);
}
.portrait-card img.foto { transform: translateY(6px) scale(1.02); }
.portrait-card .selo {
  position: absolute;
  right: -6%;
  bottom: 8%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--gold-300);
  box-shadow: 0 14px 30px -10px rgba(53, 8, 7, 0.45);
  animation: floatSlow 7s ease-in-out infinite;
}

.sobre-copy .assinatura {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--red-600);
  margin-top: 1.6rem;
}
.sobre-copy .assinatura small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 0.3rem;
}

.feature-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.95rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .fico {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(148, 29, 20, 0.1), rgba(224, 186, 95, 0.22));
  border: 1px solid rgba(185, 138, 47, 0.4);
  color: var(--red-600);
}
.feature-list .fico svg { width: 18px; height: 18px; }
.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
}
.feature-list span { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- procedimentos ---------- */

.procedimentos { background: var(--ivory); }
.procedimentos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 100% 0%, rgba(224, 186, 95, 0.14), transparent 70%),
    radial-gradient(45% 35% at 0% 100%, rgba(148, 29, 20, 0.06), transparent 70%);
  pointer-events: none;
}

.proc-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.proc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 2.4rem 1.9rem 2rem;
  border-radius: 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(175deg, #fffdf7, #faf3e6) padding-box,
    linear-gradient(150deg, rgba(185, 138, 47, 0.6), rgba(224, 186, 95, 0.16) 45%, rgba(185, 138, 47, 0.55)) border-box;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.proc-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--grad-gold-soft);
  opacity: 0;
  transition: opacity 0.4s;
}
.proc-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 17px;
  border: 1px solid rgba(185, 138, 47, 0.16);
  pointer-events: none;
}
.proc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 64px -22px rgba(53, 8, 7, 0.35);
}
.proc-card:hover::before { opacity: 1; }

.proc-card .medal {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #b02a1d, #6e130f 75%);
  color: var(--gold-300);
  border: 1px solid rgba(224, 186, 95, 0.6);
  box-shadow:
    0 0 0 5px rgba(224, 186, 95, 0.1),
    0 0 0 6px rgba(185, 138, 47, 0.35),
    0 14px 28px -12px rgba(110, 19, 15, 0.6);
  margin-bottom: 0.7rem;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.proc-card:hover .medal {
  transform: scale(1.08);
  box-shadow:
    0 0 0 6px rgba(224, 186, 95, 0.16),
    0 0 0 7px rgba(185, 138, 47, 0.45),
    0 16px 32px -12px rgba(110, 19, 15, 0.7);
}
.proc-card .medal svg { width: 27px; height: 27px; }

.proc-card h3 { font-size: 1.55rem; margin-bottom: 0.1rem; }
.proc-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.proc-card .desc { color: var(--ink-soft); font-size: 0.95rem; margin: 0; flex: 1; }

.proc-card .meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.tag-chip {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(185, 138, 47, 0.45);
  color: var(--gold-700);
  background: rgba(224, 186, 95, 0.1);
  white-space: nowrap;
}
.price-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red-600);
  letter-spacing: 0.03em;
}

.proc-card .cta-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-600);
}
.proc-card .cta-line svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-lux); }
.proc-card:hover .cta-line svg { transform: translateX(7px); }

/* destaque desinflame */
.proc-feature {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  color: var(--gold-100);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(196, 61, 43, 0.5), transparent 55%),
    radial-gradient(70% 100% at 0% 100%, rgba(35, 4, 4, 0.75), transparent 65%),
    linear-gradient(150deg, #6e130f, #941d14 55%, #4b0c0a);
  border: 1px solid rgba(224, 186, 95, 0.35);
  box-shadow: var(--shadow-soft);
  padding: 2.6rem 1.9rem;
  display: grid;
  gap: 1.6rem;
}
.proc-feature::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -30%;
  width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 186, 95, 0.18), transparent 65%);
  pointer-events: none;
}
.proc-feature .script { font-size: 2rem; display: block; }
.proc-feature h3 { font-size: clamp(2rem, 6vw, 2.7rem); color: var(--gold-100); }
.proc-feature p.sub { color: rgba(249, 236, 201, 0.8); max-width: 46ch; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.96rem; }
.check-list svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; }
.proc-feature .valor {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-200);
}
.proc-feature .valor small {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(249, 236, 201, 0.6);
}
.proc-feature .actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

/* ---------- experiência / etapas ---------- */

.experiencia {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(148, 29, 20, 0.12), transparent 70%),
    var(--cream);
}
.steps { display: grid; gap: 2.4rem; position: relative; }
.step {
  position: relative;
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  padding: 1.8rem 1.6rem;
  border-radius: 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(175deg, #fffdf7, #faf3e6) padding-box,
    linear-gradient(150deg, rgba(185, 138, 47, 0.35), rgba(224, 186, 95, 0.1) 50%, rgba(185, 138, 47, 0.3)) border-box;
  box-shadow: 0 10px 30px -18px rgba(53, 8, 7, 0.18);
  transition: transform 0.7s var(--ease-lux), box-shadow 0.7s var(--ease-lux);
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.step .num {
  flex: none;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-700);
  background: var(--ivory);
  border: 1px solid rgba(185, 138, 47, 0.5);
  box-shadow: 0 0 0 5px rgba(224, 186, 95, 0.1);
  transition: background 0.8s var(--ease-lux), color 0.5s, box-shadow 0.8s var(--ease-lux), transform 0.8s var(--ease-lux);
  transition-delay: calc(var(--i, 0) * 0.12s + 0.1s);
}
.step h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* linha que se desenha entre as etapas conforme o scroll */
.step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -2.4rem;
  left: calc(1.6rem + 29px);
  width: 1.5px;
  height: 2.4rem;
  background: linear-gradient(180deg, rgba(208, 165, 68, 0.15), var(--gold-500));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s var(--ease-lux);
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.step.active::before { transform: scaleY(1); }
.step.active {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -20px rgba(53, 8, 7, 0.3);
}
.step.active .num {
  background: linear-gradient(140deg, #a97e24, #d0a544 45%, #eeda9b);
  color: var(--wine-900);
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(224, 186, 95, 0.22), 0 12px 26px -10px rgba(208, 165, 68, 0.55);
  transform: scale(1.06);
}

/* ---------- comunidade ---------- */

.comunidade { background: var(--cream-2); }
.social-grid { display: grid; gap: 1.4rem; }
.social-card {
  position: relative;
  border-radius: 24px;
  padding: 2.2rem 1.8rem;
  background: var(--ivory);
  border: 1px solid rgba(185, 138, 47, 0.3);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.social-card:hover { transform: translateY(-7px); box-shadow: 0 26px 56px -20px rgba(53, 8, 7, 0.3); }
.social-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-400);
  box-shadow: 0 10px 24px -8px rgba(53, 8, 7, 0.35);
}
.social-card h3 { font-size: 1.5rem; margin: 0; }
.social-card .handle { color: var(--red-600); font-weight: 400; letter-spacing: 0.06em; }
.social-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.social-card .bee-ico {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, #941d14, #6e130f);
  border: 2px solid var(--gold-400);
  color: var(--gold-300);
}
.social-card .bee-ico svg { width: 34px; height: 34px; }

/* ---------- localização ---------- */

.local { background: var(--ivory); }
.local-card { display: grid; gap: 1.3rem; }
.local-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2.4rem 1.7rem 2.2rem;
  border-radius: 24px;
  border: 1px solid transparent;
  background:
    linear-gradient(175deg, #fffdf7, #faf3e6) padding-box,
    linear-gradient(150deg, rgba(185, 138, 47, 0.55), rgba(224, 186, 95, 0.14) 45%, rgba(185, 138, 47, 0.5)) border-box;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}
.local-item::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 17px;
  border: 1px solid rgba(185, 138, 47, 0.15);
  pointer-events: none;
}
.local-item:hover { transform: translateY(-6px); box-shadow: 0 26px 56px -22px rgba(53, 8, 7, 0.32); }
.local-item .lico {
  flex: none;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #b02a1d, #6e130f 75%);
  color: var(--gold-300);
  border: 1px solid rgba(224, 186, 95, 0.6);
  box-shadow: 0 0 0 5px rgba(224, 186, 95, 0.1), 0 0 0 6px rgba(185, 138, 47, 0.32), 0 12px 24px -12px rgba(110, 19, 15, 0.55);
}
.local-item .lico svg { width: 24px; height: 24px; }
.local-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
}
.local-item strong::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 0.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.local-item span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- cta final ---------- */

.cta-final {
  position: relative;
  overflow: hidden;
  color: var(--gold-100);
  background:
    radial-gradient(110% 80% at 85% 20%, rgba(196, 61, 43, 0.4), transparent 60%),
    radial-gradient(90% 90% at 10% 100%, rgba(35, 4, 4, 0.85), transparent 60%),
    linear-gradient(150deg, #4b0c0a, #941d14 55%, #350807);
}
.cta-final .container {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: end;
}
.cta-final .script { font-size: clamp(2rem, 7vw, 2.9rem); display: block; }
.cta-final h2 { font-size: clamp(2.2rem, 7vw, 3.4rem); color: var(--gold-100); }
.cta-final p { color: rgba(249, 236, 201, 0.8); max-width: 46ch; }
.cta-final .actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.4rem; }
.cta-final .foto-wrap {
  position: relative;
  margin: 0 auto -1px;
  width: min(74vw, 380px);
}
.cta-final .foto-wrap::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 82%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(224, 186, 95, 0.28), rgba(224, 186, 95, 0.03));
  border: 1px solid rgba(224, 186, 95, 0.35);
  border-bottom: none;
}
.cta-final .foto-wrap img {
  position: relative;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.4));
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--wine-950);
  color: rgba(249, 236, 201, 0.7);
  padding: 3.8rem 0 2.2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(208, 165, 68, 0.16), transparent 65%);
  pointer-events: none;
}
.footer-inner { position: relative; display: grid; gap: 2.2rem; text-align: center; justify-items: center; }
.footer-inner img.flogo { width: min(64vw, 300px); mix-blend-mode: screen; opacity: 0.95; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.8rem; }
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249, 236, 201, 0.65);
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold-300); }
.footer-social { display: flex; gap: 0.9rem; }
.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(224, 186, 95, 0.35);
  color: var(--gold-300);
  transition: background 0.3s, transform 0.4s var(--ease-lux);
}
.footer-social a:hover { background: rgba(224, 186, 95, 0.14); transform: translateY(-4px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(224, 186, 95, 0.14);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: rgba(249, 236, 201, 0.4);
}

/* ---------- páginas de procedimento ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--gold-100);
  padding: 9.5rem 0 4.5rem;
  background:
    radial-gradient(120% 80% at 85% 0%, rgba(196, 61, 43, 0.38), transparent 55%),
    radial-gradient(110% 100% at 0% 100%, rgba(35, 4, 4, 0.88), transparent 62%),
    linear-gradient(155deg, #4b0c0a 0%, #941d14 52%, #350807 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .glow {
  position: absolute;
  top: -22%;
  right: -14%;
  width: min(60vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 186, 95, 0.2), rgba(224, 186, 95, 0.04) 45%, transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(249, 236, 201, 0.6);
  margin-bottom: 1.8rem;
}
.breadcrumb a { color: var(--gold-300); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-100); }
.breadcrumb svg { width: 12px; height: 12px; }

.page-hero .script { font-size: clamp(1.7rem, 6vw, 2.4rem); display: block; margin-bottom: 0.3rem; }
.page-hero h1 { font-size: clamp(2.6rem, 9vw, 4.4rem); color: var(--gold-100); margin-bottom: 1rem; }
.page-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 1.2rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.page-hero .sub { color: rgba(249, 236, 201, 0.82); max-width: 54ch; margin-inline: auto; font-size: 1.04rem; }
.page-hero .meta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.9rem;
}
.chip-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(35, 4, 4, 0.55), rgba(35, 4, 4, 0.55)) padding-box,
    linear-gradient(120deg, rgba(185, 138, 47, 0.9), rgba(249, 236, 201, 0.5) 50%, rgba(185, 138, 47, 0.9)) border-box;
  color: var(--gold-100);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px -14px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux);
}
.chip-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.7); }
.chip-gold svg { width: 15px; height: 15px; color: var(--gold-300); }
.page-hero .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.proc-body { background: var(--cream); }
.proc-body .container { display: grid; gap: 3rem; }
.rich h2 { font-size: clamp(1.9rem, 5vw, 2.6rem); }
.rich .lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--red-600);
  line-height: 1.5;
}
.rich p { color: var(--ink-soft); }

.beneficios { background: var(--ivory); }
.bene-grid { display: grid; gap: 1.2rem; }
.bene-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 2.1rem 1.6rem 1.9rem;
  border-radius: 22px;
  border: 1px solid transparent;
  background:
    linear-gradient(175deg, #fffdf7, #faf3e6) padding-box,
    linear-gradient(150deg, rgba(185, 138, 47, 0.5), rgba(224, 186, 95, 0.12) 45%, rgba(185, 138, 47, 0.45)) border-box;
  box-shadow: 0 12px 32px -18px rgba(53, 8, 7, 0.2);
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux);
}
.bene-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(185, 138, 47, 0.14);
  pointer-events: none;
}
.bene-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px -22px rgba(53, 8, 7, 0.32);
}
.bene-card .bico {
  flex: none;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #b02a1d, #6e130f 75%);
  color: var(--gold-300);
  border: 1px solid rgba(224, 186, 95, 0.6);
  box-shadow: 0 0 0 5px rgba(224, 186, 95, 0.1), 0 0 0 6px rgba(185, 138, 47, 0.32), 0 12px 24px -12px rgba(110, 19, 15, 0.55);
  transition: transform 0.45s var(--ease-lux);
}
.bene-card:hover .bico { transform: scale(1.08); }
.bene-card .bico svg { width: 23px; height: 23px; }
.bene-card strong { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; display: block; }
.bene-card strong::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 0.45rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.bene-card span { color: var(--ink-soft); font-size: 0.92rem; }

.sessao { background: var(--cream); }
.timeline { position: relative; display: grid; gap: 1.9rem; padding-left: 1.9rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-400), rgba(185, 138, 47, 0.15));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.6s var(--ease-lux) 0.15s;
}
.timeline.draw::before { transform: scaleY(1); }
.timeline .t-item { position: relative; }
.timeline .t-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 0.42em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f9ecc9, #d0a544);
  box-shadow: 0 0 0 4px rgba(208, 165, 68, 0.2);
  transform: scale(0);
  transition: transform 0.6s var(--ease-lux);
}
.timeline.draw .t-item::before { transform: scale(1); }
.timeline.draw .t-item:nth-child(1)::before { transition-delay: 0.2s; }
.timeline.draw .t-item:nth-child(2)::before { transition-delay: 0.5s; }
.timeline.draw .t-item:nth-child(3)::before { transition-delay: 0.8s; }
.timeline.draw .t-item:nth-child(4)::before { transition-delay: 1.1s; }
.timeline.draw .t-item:nth-child(5)::before { transition-delay: 1.4s; }
.timeline h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.timeline p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

.indicado { background: var(--ivory); }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip-red {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(148, 29, 20, 0.07);
  border: 1px solid rgba(148, 29, 20, 0.25);
  color: var(--red-600);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.4s var(--ease-lux);
}
.chip-red:hover { background: rgba(148, 29, 20, 0.13); transform: translateY(-3px); }

.investimento { background: var(--cream); }
.invest-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 2.6rem 1.9rem;
  color: var(--gold-100);
  background:
    radial-gradient(90% 110% at 100% 0%, rgba(196, 61, 43, 0.45), transparent 55%),
    linear-gradient(150deg, #6e130f, #941d14 55%, #4b0c0a);
  border: 1px solid rgba(224, 186, 95, 0.35);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}
.invest-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -32%;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 186, 95, 0.18), transparent 65%);
  pointer-events: none;
}
.invest-card .script { font-size: 1.9rem; }
.invest-card .preco {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-200);
  line-height: 1;
}
.invest-card .preco small {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(249, 236, 201, 0.6);
  margin-top: 0.5rem;
}
.invest-card .nota { font-size: 0.85rem; color: rgba(249, 236, 201, 0.65); margin: 0; }

.faq { background: var(--ivory); }
.faq-item {
  border: 1px solid rgba(185, 138, 47, 0.3);
  border-radius: 16px;
  background: var(--cream);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: rgba(185, 138, 47, 0.6); box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ficon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 138, 47, 0.5);
  color: var(--gold-700);
  transition: transform 0.45s var(--ease-lux), background 0.3s;
}
.faq-item[open] summary .ficon { transform: rotate(45deg); background: rgba(224, 186, 95, 0.16); }
.faq-item summary .ficon svg { width: 14px; height: 14px; }
.faq-item .faq-body { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: 0.95rem; }

.relacionados { background: var(--cream-2); }
.rel-grid { display: grid; gap: 1rem; }
.rel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-radius: 16px;
  background: var(--ivory);
  border: 1px solid rgba(185, 138, 47, 0.28);
  transition: transform 0.45s var(--ease-lux), border-color 0.3s, box-shadow 0.45s var(--ease-lux);
}
.rel-card:hover { transform: translateY(-4px); border-color: rgba(185, 138, 47, 0.6); box-shadow: var(--shadow-card); }
.rel-card strong { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.rel-card span { display: block; font-size: 0.8rem; color: var(--ink-soft); }
.rel-card svg { width: 18px; height: 18px; color: var(--red-600); flex: none; }

/* ---------- reveals ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="zoom"] { transform: scale(0.92); }
.is-in { opacity: 1; transform: none; }

/* ---------- whatsapp flutuante ---------- */

.float-cta {
  position: fixed;
  z-index: 55;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--wine-900);
  background: linear-gradient(140deg, #eeda9b, #d0a544);
  box-shadow: 0 14px 34px -10px rgba(208, 165, 68, 0.75);
  transition: transform 0.4s var(--ease-lux);
}
.float-cta:hover { transform: scale(1.1) rotate(6deg); }
.float-cta svg { width: 26px; height: 26px; }
.float-cta::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(208, 165, 68, 0.55);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- desktop ---------- */

@media (min-width: 760px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid .proc-feature { grid-column: 1 / -1; }
  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .local-card { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
  .step { flex-direction: column; gap: 1.1rem; padding: 2.1rem 1.8rem; }
  .step:not(:first-child)::before {
    top: calc(2.1rem + 29px);
    left: -1.8rem;
    width: 1.8rem;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(208, 165, 68, 0.15), var(--gold-500));
    transform: scaleX(0);
    transform-origin: left;
  }
  .step.active::before { transform: scaleX(1); }
  .proc-feature { grid-template-columns: 1.2fr 1fr; align-items: center; padding: 3.2rem 3rem; }
  .invest-card { grid-template-columns: 1.3fr 1fr; align-items: center; padding: 3.2rem 3rem; }
  .proc-body .container { grid-template-columns: 1.05fr 0.95fr; align-items: start; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .main-nav a.nav-link {
    position: relative;
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(249, 236, 201, 0.78);
    padding-block: 0.4rem;
    transition: color 0.3s;
  }
  .main-nav a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--grad-gold-soft);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease-lux);
  }
  .main-nav a.nav-link:hover { color: var(--gold-200); }
  .main-nav a.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
  .nav-cta { display: inline-flex; padding: 0.78rem 1.5rem; }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 6rem;
  }
  .hero-copy { text-align: left; flex: 1 1 52%; padding-bottom: 4rem; }
  .hero-copy .hero-sub { margin-inline: 0; }
  .hero-actions { justify-content: flex-start; }
  .hero-tags { justify-content: flex-start; }
  .hero-figure { flex: 1 1 48%; margin-top: 0; align-self: flex-end; }
  .hero-figure .photo-wrap { width: min(42vw, 540px); }
  .hero-figure .arc { width: min(38vw, 520px); }
  .hero-badge { left: -6%; bottom: 12%; }
  .hero-badge.right { right: -4%; bottom: 30%; }

  .sobre-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; }
  .proc-grid { gap: 1.6rem; }
  .cta-final .container { grid-template-columns: 1.2fr 0.8fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- acessibilidade ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
