:root {
  --green: #153b30;
  --green-2: #245346;
  --rose: #c84764;
  --gold: #d8b76f;
  --cream: #f4eee4;
  --ink: #173a30;
  --muted: #687a73;
  --paper: #fbfaf6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; font-family: Arial, Helvetica, sans-serif; background: var(--paper); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.serif { font-family: Georgia, 'Times New Roman', serif; }
.eyebrow { margin: 0; color: var(--rose); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.topbar { position: sticky; top: 0; z-index: 20; color: white; background: rgba(21,59,48,.9); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(18px); transition: box-shadow .35s ease, background .35s ease; }
.topbar.scrolled { background: rgba(15,47,38,.97); box-shadow: 0 12px 35px rgba(0,0,0,.14); }
.topbar-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(216,183,111,.7); border-radius: 999px; color: #efd28f; font-size: 22px; }
.brand strong { display: block; font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.brand small { display: block; margin-top: 3px; color: #efd28f; font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.nav { display: flex; gap: 28px; color: rgba(255,255,255,.75); font-size: 14px; }
.nav a { position: relative; padding: 8px 0; }
.nav a::after { content: ''; position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s ease; }
.nav a:hover { color: white; }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.button { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 17px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .01em; line-height: 1.25; transition: transform .25s ease, box-shadow .25s ease; }
.button::after { content: ''; position: absolute; top: -50%; left: -75%; width: 45%; height: 200%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent); transform: rotate(18deg); transition: left .55s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.15); }
.button:hover::after { left: 130%; }
.button-rose { color: white; background: var(--rose); }
.button-gold { color: var(--green); background: var(--gold); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: white; }

/* Botões dourados com brilho */
.button,
.button-rose,
.button-gold,
.button-ghost {
  border: 1px solid rgba(255,245,193,.72);
  color: #173a30;
  background: linear-gradient(115deg, #9f7430 0%, #d7ae58 22%, #fff0a7 48%, #d5a44b 72%, #8f6427 100%);
  background-size: 180% 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 9px 24px rgba(133,92,27,.24);
  text-shadow: 0 1px 0 rgba(255,255,255,.38);
}
.button::after {
  left: -85%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  animation: goldShine 3.8s ease-in-out infinite;
}
.button:hover {
  background-position: 100% 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 14px 34px rgba(145,98,28,.36), 0 0 24px rgba(239,210,143,.28);
}
.button:hover::after { left: -85%; animation-duration: 1.8s; }

.hero { position: relative; overflow: hidden; color: white; background: var(--green); }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 10%, rgba(216,183,111,.23), transparent 30%), radial-gradient(circle at 92% 68%, rgba(200,71,100,.2), transparent 28%); }
.hero-grid { position: relative; min-height: 720px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; padding: 60px 0; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid rgba(216,183,111,.35); border-radius: 999px; color: #efd28f; background: rgba(255,255,255,.04); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin: 28px 0 0; font-family: Georgia, serif; font-size: clamp(58px, 7.6vw, 108px); font-weight: 500; line-height: .9; letter-spacing: -.055em; }
.hero-copy { max-width: 590px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.portrait-shell { position: relative; width: min(100%, 500px); margin-left: auto; }
.portrait-shell::before { content: ''; position: absolute; inset: -18px; border: 1px solid rgba(216,183,111,.22); border-radius: 48px; }
.portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 38px; background: #e8e0d4; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.portrait > img { width: 100%; height: 100%; object-fit: cover; }
.portrait-card { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 18px; border: 1px solid rgba(255,255,255,.25); border-radius: 24px; color: white; background: rgba(21,59,48,.84); backdrop-filter: blur(12px); }
.portrait-card small { color: #efd28f; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.portrait-card strong { display: block; margin-top: 7px; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.portrait-card span { display: block; margin-top: 5px; color: rgba(255,255,255,.62); font-size: 13px; }

.proof { border-bottom: 1px solid rgba(21,59,48,.1); background: var(--cream); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 24px 0; }
.proof p { margin: 0; color: #29483f; font-size: 14px; }
.proof b { color: var(--rose); margin-right: 8px; }
.services { padding: 100px 0; }
.services-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 52px; }
.services h2 { max-width: 520px; margin: 18px 0 0; font-family: Georgia, serif; font-size: clamp(48px, 5vw, 70px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { padding: 24px; border: 1px solid rgba(21,59,48,.1); border-radius: 30px; background: white; box-shadow: 0 18px 55px rgba(21,59,48,.07); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--rose); background: var(--cream); font-size: 21px; }
.card small { display: block; margin-top: 28px; color: #9a7841; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.card h3 { margin: 12px 0 0; font-family: Georgia, serif; font-size: 25px; font-weight: 500; line-height: 1.08; }
.card p { margin: 16px 0 0; color: #566b63; font-size: 15px; line-height: 1.75; }
.contact { border-top: 1px solid rgba(21,59,48,.1); background: white; }
.contact-inner { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact p { margin: 0; line-height: 1.6; }
.contact span { color: var(--muted); font-size: 14px; }

.anniversary { padding: 100px 0; color: white; background: var(--green); }
.anniversary-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 76px; }
.roulette-frame { padding: 14px; border: 1px solid rgba(216,183,111,.26); border-radius: 42px; background: rgba(255,255,255,.04); }
.roulette-frame img { width: 100%; border-radius: 30px; }
.anniversary h2 { max-width: 650px; margin: 18px 0 22px; font-size: clamp(48px, 6vw, 78px); font-weight: 500; line-height: .98; letter-spacing: -.04em; }
.anniversary > .wrap > div > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.benefit-list { margin: 30px 0; padding: 0; list-style: none; }
.benefit-list li { display: grid; grid-template-columns: 45px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); }
.benefit-list li > b { color: var(--gold); font-family: Georgia, serif; font-size: 18px; }
.benefit-list strong, .benefit-list span { display: block; }
.benefit-list strong { margin-bottom: 5px; }
.benefit-list span { color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.5; }
.campaign-video { padding: 110px 0; overflow: hidden; background: white; }
.campaign-video-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 90px; }
.campaign-video-frame { position: relative; width: min(100%, 470px); margin: 0 auto; padding: 12px; border: 1px solid rgba(21,59,48,.12); border-radius: 38px; background: var(--cream); box-shadow: 0 28px 70px rgba(21,59,48,.15); }
.campaign-video-frame::before { content: ''; position: absolute; inset: -20px; z-index: -1; border: 1px solid rgba(216,183,111,.38); border-radius: 52px; }
.campaign-video-frame video { width: 100%; display: block; aspect-ratio: 9 / 16; border-radius: 27px; background: var(--green); object-fit: cover; }
.video-badge { position: absolute; right: -28px; bottom: 36px; padding: 10px 14px; border: 1px solid rgba(255,245,193,.72); border-radius: 999px; color: var(--green); background: linear-gradient(115deg, #b38337, #f0cf80 48%, #b57d2f); box-shadow: 0 12px 30px rgba(21,59,48,.18); font-size: 11px; font-weight: 700; }
.campaign-video-copy h2 { max-width: 700px; margin: 18px 0 24px; font-size: clamp(48px, 6vw, 78px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.campaign-video-copy > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.78; }
.campaign-video-copy blockquote { margin: 30px 0; padding: 6px 0 6px 24px; border-left: 3px solid var(--gold); color: var(--green); font-family: Georgia, serif; font-size: clamp(24px, 3vw, 34px); line-height: 1.2; }
.campaign-video-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.campaign-video-actions small { max-width: 340px; color: #83918c; font-size: 11px; line-height: 1.5; }

.structure { padding: 105px 0; background: var(--cream); }
.structure-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 50px; }
.structure-heading h2 { max-width: 700px; margin: 18px 0 0; font-size: clamp(48px, 6vw, 76px); font-weight: 500; line-height: .96; letter-spacing: -.045em; }
.structure-heading > p { margin: 0 0 8px; color: #5c6f67; font-size: 17px; line-height: 1.7; }
.structure-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 58px; overflow: hidden; border: 1px solid rgba(21,59,48,.12); border-radius: 30px; background: rgba(21,59,48,.12); }
.structure-grid article { min-height: 285px; padding: 28px; background: #fbfaf6; }
.structure-grid span { color: var(--rose); font-family: Georgia, serif; font-size: 18px; }
.structure-grid h3 { margin: 60px 0 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.structure-grid p { margin: 0; color: #61736c; font-size: 14px; line-height: 1.7; }

.booking { padding: 105px 0; background: #fff; }
.booking-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.booking-copy h2 { max-width: 530px; margin: 18px 0 22px; font-size: clamp(48px, 5.5vw, 72px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.booking-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.booking-note { margin-top: 32px; padding: 20px 0 0; border-top: 1px solid rgba(21,59,48,.12); }
.booking-note b, .booking-note span { display: block; }
.booking-note span { margin-top: 8px; color: var(--muted); font-size: 14px; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 30px; border-radius: 32px; background: var(--green); box-shadow: 0 24px 70px rgba(21,59,48,.15); }
.booking-form label { color: white; font-size: 13px; font-weight: 700; }
.booking-form input, .booking-form select { width: 100%; height: 52px; margin-top: 9px; padding: 0 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; outline: none; color: white; background: rgba(255,255,255,.08); font: inherit; }
.booking-form input::placeholder { color: rgba(255,255,255,.45); }
.booking-form select option { color: var(--ink); }
.booking-form button { border: 0; cursor: pointer; }
.booking-form > button, .booking-form > small { grid-column: 1 / -1; }
.booking-form > small { color: rgba(255,255,255,.55); line-height: 1.5; }
.floating-wa { position: fixed; right: 20px; bottom: 20px; z-index: 30; padding: 10px 15px; border-radius: 999px; color: white; background: #1caa61; box-shadow: 0 12px 38px rgba(0,0,0,.18); font-size: 12px; font-weight: 600; }

/* Experiência editorial e movimento */
.hero h1 em { color: #efd28f; font-weight: 500; }
.hero-orbit { position: absolute; border: 1px solid rgba(216,183,111,.14); border-radius: 50%; pointer-events: none; animation: orbit 18s linear infinite; }
.hero-orbit-one { top: -180px; right: -130px; width: 620px; height: 620px; }
.hero-orbit-two { bottom: -270px; left: -210px; width: 540px; height: 540px; animation-direction: reverse; animation-duration: 24s; }
.hero-orbit::after { content: '✦'; position: absolute; top: 50%; left: -8px; color: var(--gold); font-size: 18px; }
.portrait { transition: transform .2s ease-out; }
.portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, rgba(216,183,111,.14)); pointer-events: none; }
.numbers { padding: 42px 0; color: white; background: #0f3027; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.numbers article { padding: 12px 30px; border-left: 1px solid rgba(255,255,255,.12); }
.numbers article:first-child { padding-left: 0; border-left: 0; }
.numbers strong { display: block; color: var(--gold); font-family: Georgia, serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; }
.numbers p { margin: 8px 0 0; color: rgba(255,255,255,.6); font-size: 13px; }
.section-lead { max-width: 470px; margin: 26px 0 0; color: var(--muted); line-height: 1.75; }
.card { position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease; }
.card::after { content: ''; position: absolute; right: -60px; bottom: -60px; width: 130px; height: 130px; border-radius: 50%; background: rgba(216,183,111,.13); transition: transform .45s ease; }
.card:hover { transform: translateY(-10px); border-color: rgba(200,71,100,.3); box-shadow: 0 30px 70px rgba(21,59,48,.14); }
.card:hover::after { transform: scale(1.7); }
.card-link { position: relative; z-index: 1; width: fit-content; margin-top: 26px; padding: 9px 14px; font-size: 11px; }
.card-link b { display: inline-block; transition: transform .3s ease; }
.card:hover .card-link b { transform: translateX(5px); }
.treatment-showcase { padding: 110px 0; background: #fff; }
.showcase-heading { margin-bottom: 50px; }
.showcase-heading h2 { max-width: 820px; margin: 15px 0 0; font-size: clamp(48px, 6vw, 78px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.treatment-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 14px; }
.treatment-grid article { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border: 1px solid rgba(21,59,48,.1); border-radius: 28px; background: var(--paper); transition: transform .35s ease, background .35s ease; }
.treatment-grid article:hover { transform: translateY(-6px); background: var(--cream); }
.treatment-grid .treatment-feature { grid-row: span 2; min-height: 534px; color: white; background: var(--green); }
.treatment-grid .treatment-feature:hover { background: var(--green-2); }
.treatment-grid .treatment-accent { color: white; background: var(--rose); }
.treatment-grid .treatment-accent:hover { background: #b53a56; }
.treatment-grid span { align-self: flex-end; color: var(--rose); font-family: Georgia, serif; font-size: 18px; }
.treatment-grid .treatment-feature span, .treatment-grid .treatment-accent span { color: var(--gold); }
.treatment-grid small { color: #9a7841; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.treatment-grid .treatment-feature small, .treatment-grid .treatment-accent small { color: var(--gold); }
.treatment-grid h3 { margin: 10px 0 0; font-family: Georgia, serif; font-size: 29px; font-weight: 500; }
.treatment-grid .treatment-feature h3 { font-size: clamp(38px, 4vw, 58px); }
.treatment-grid p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.treatment-grid .treatment-feature p, .treatment-grid .treatment-accent p { color: rgba(255,255,255,.7); }
.roulette-frame { position: relative; }
.roulette-wheel { position: absolute; left: 10.6%; top: 7%; width: 78.5%; aspect-ratio: 1; overflow: hidden; border-radius: 50%; background-image: url('/assets/roleta-sorri.jpeg'); background-repeat: no-repeat; background-size: 127.4% 127.4%; background-position: 49.3% 32.6%; box-shadow: 0 0 35px rgba(216,183,111,.16); transform-origin: center; animation: rouletteSpin 11s cubic-bezier(.12,.72,.2,1) infinite; will-change: transform; }
.roulette-glint { position: absolute; left: 10.6%; top: 7%; width: 78.5%; aspect-ratio: 1; overflow: hidden; border-radius: 50%; pointer-events: none; background: linear-gradient(112deg, transparent 26%, rgba(255,255,255,.32) 44%, transparent 58%); background-size: 220% 100%; animation: rouletteGlint 4.5s ease-in-out infinite; }
.roulette-frame:hover .roulette-wheel { animation-duration: 4.5s; }
.image-stamp { position: absolute; right: -22px; bottom: 42px; width: 102px; height: 102px; display: grid; place-items: center; border: 6px solid var(--green); border-radius: 50%; color: var(--green); background: var(--gold); font-family: Georgia, serif; font-size: 21px; line-height: 1; text-align: center; transform: rotate(8deg); animation: float 4s ease-in-out infinite; }
.structure-grid article { transition: background .35s ease, transform .35s ease; }
.structure-grid article:hover { z-index: 1; background: white; transform: translateY(-7px); }
.journey { padding: 110px 0; color: white; background: var(--rose); }
.journey-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.journey h2 { max-width: 560px; margin: 18px 0 22px; font-size: clamp(48px, 5.5vw, 74px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.journey .eyebrow { color: var(--gold); }
.journey-grid > div > p:last-child { max-width: 500px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.7; }
.journey-list { margin: 0; padding: 0; list-style: none; }
.journey-list li { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 27px 0; border-top: 1px solid rgba(255,255,255,.18); }
.journey-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.journey-list span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--gold); font-family: Georgia, serif; font-size: 20px; }
.journey-list h3 { margin: 0; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.journey-list p { margin: 9px 0 0; color: rgba(255,255,255,.65); line-height: 1.65; }
.faq { padding: 110px 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq h2 { margin: 18px 0 22px; font-size: clamp(48px, 5.5vw, 72px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.faq-grid > div > p:last-child { max-width: 430px; color: var(--muted); line-height: 1.7; }
.faq-list { border-top: 1px solid rgba(21,59,48,.16); }
.faq details { border-bottom: 1px solid rgba(21,59,48,.16); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-family: Georgia, serif; font-size: 22px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--rose); font-family: Arial, sans-serif; font-size: 28px; transition: transform .3s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 700px; margin: -4px 0 24px; color: var(--muted); line-height: 1.7; animation: faqIn .35s ease; }
.detail-hero { position: relative; overflow: hidden; padding: 92px 0 105px; color: white; background: var(--green); }
.detail-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 84% 22%, rgba(216,183,111,.22), transparent 28%), radial-gradient(circle at 8% 90%, rgba(200,71,100,.17), transparent 28%); }
.detail-hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 70px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.55); font-size: 13px; }
.breadcrumbs a:hover { color: var(--gold); }
.detail-hero h1 { max-width: 800px; margin: 28px 0 24px; font-family: Georgia, serif; font-size: clamp(58px, 8vw, 106px); font-weight: 500; line-height: .9; letter-spacing: -.055em; }
.detail-hero h1 em { color: var(--gold); font-weight: 500; }
.detail-hero-copy { max-width: 690px; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.75; }
.detail-hero-card { padding: 30px; border: 1px solid rgba(216,183,111,.26); border-radius: 32px; background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.detail-hero-card small { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.detail-hero-card strong { display: block; margin-top: 16px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.detail-hero-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.detail-hero-card li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.7); line-height: 1.5; }
.detail-hero-card li::before { content: '✦'; margin-right: 10px; color: var(--gold); }
.detail-intro { padding: 105px 0; background: white; }
.detail-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 85px; }
.detail-intro h2, .detail-section h2, .detail-faq h2 { margin: 18px 0 0; font-family: Georgia, serif; font-size: clamp(44px, 5.5vw, 72px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.detail-rich p { margin: 0 0 22px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.detail-note { margin-top: 30px; padding: 24px; border-left: 3px solid var(--gold); border-radius: 0 20px 20px 0; background: var(--cream); }
.detail-note strong { display: block; margin-bottom: 7px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.detail-section { padding: 105px 0; background: var(--cream); }
.detail-section-head { display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: 70px; }
.detail-section-head > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.detail-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.detail-option { min-height: 300px; padding: 28px; border: 1px solid rgba(21,59,48,.1); border-radius: 28px; background: white; transition: transform .35s ease, box-shadow .35s ease; }
.detail-option:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(21,59,48,.1); }
.detail-option span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; color: var(--rose); background: var(--cream); font-family: Georgia, serif; }
.detail-option h3 { margin: 48px 0 13px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.detail-option p { margin: 0; color: var(--muted); line-height: 1.7; }
.detail-process { padding: 105px 0; color: white; background: var(--rose); }
.detail-process-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.detail-process h2 { margin: 18px 0 0; font-family: Georgia, serif; font-size: clamp(44px, 5.5vw, 72px); font-weight: 500; line-height: .98; }
.detail-process .eyebrow { color: var(--gold); }
.detail-steps { margin: 0; padding: 0; list-style: none; counter-reset: detail-step; }
.detail-steps li { counter-increment: detail-step; display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.18); }
.detail-steps li::before { content: counter(detail-step, decimal-leading-zero); color: var(--gold); font-family: Georgia, serif; font-size: 20px; }
.detail-steps h3 { margin: 0; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.detail-steps p { margin: 8px 0 0; color: rgba(255,255,255,.65); line-height: 1.65; }
.detail-faq { padding: 105px 0; background: var(--paper); }
.detail-faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.detail-cta { padding: 85px 0; color: white; background: var(--green); text-align: center; }
.detail-cta h2 { max-width: 850px; margin: 0 auto; font-family: Georgia, serif; font-size: clamp(44px, 6vw, 76px); font-weight: 500; line-height: .98; }
.detail-cta p { max-width: 620px; margin: 22px auto 30px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; }
.detail-disclaimer { margin-top: 18px; color: rgba(255,255,255,.48); font-size: 12px; }
.footer-links, .social-links { display: flex; align-items: center; gap: 14px; }
.social-links a { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(21,59,48,.13); border-radius: 999px; font-size: 12px; font-weight: 600; transition: color .25s ease, background .25s ease, transform .25s ease; }
.social-links a { color: var(--green); border-color: rgba(255,245,193,.72); background: linear-gradient(115deg, #b38337, #f0cf80 48%, #b57d2f); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 7px 18px rgba(133,92,27,.16); }
.social-links a:hover { color: var(--green); background: linear-gradient(115deg, #f3d78d, #fff0aa 48%, #c99740); transform: translateY(-2px); }
.social-links svg { width: 19px; height: 19px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-links .social-dot { fill: currentColor; stroke: none; }
.social-links a:nth-child(2) svg { fill: currentColor; stroke: none; }
.panel-footer-link { margin-left: 10px; color: var(--muted); font-size: 13px; font-weight: 700; }
.floating-wa { color: var(--green); border: 1px solid rgba(255,245,193,.72); background: linear-gradient(115deg, #a87830, #efd083 48%, #a8732b); animation: goldPulse 3s ease-in-out infinite; }
.js [data-reveal] { opacity: 0; transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1); }
.js [data-reveal="up"] { transform: translateY(42px); }
.js [data-reveal="left"] { transform: translateX(-48px); }
.js [data-reveal="right"] { transform: translateX(48px); }
.js [data-reveal="scale"] { transform: scale(.92); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes rouletteSpin { 0% { transform: rotate(0); } 38%, 100% { transform: rotate(1080deg); } }
@keyframes rouletteGlint { 0%, 25% { background-position: 180% 0; opacity: 0; } 48% { opacity: 1; } 72%, 100% { background-position: -120% 0; opacity: 0; } }
@keyframes goldShine { 0%, 42% { left: -85%; } 68%, 100% { left: 135%; } }
@keyframes goldPulse { 0%,100% { box-shadow: 0 12px 38px rgba(0,0,0,.18), 0 0 0 0 rgba(216,183,111,.32); } 50% { box-shadow: 0 15px 42px rgba(0,0,0,.2), 0 0 0 12px rgba(216,183,111,0); } }
@keyframes float { 0%,100% { transform: rotate(8deg) translateY(0); } 50% { transform: rotate(4deg) translateY(-10px); } }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }
@keyframes waPulse { 0%,100% { box-shadow: 0 12px 38px rgba(0,0,0,.18), 0 0 0 0 rgba(28,170,97,.25); } 50% { box-shadow: 0 12px 38px rgba(0,0,0,.18), 0 0 0 12px rgba(28,170,97,0); } }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .services-grid, .anniversary-grid, .campaign-video-grid, .structure-heading, .booking-grid, .journey-grid, .faq-grid, .detail-hero-grid, .detail-intro-grid, .detail-section-head, .detail-process-grid, .detail-faq-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 82px 0; }
  .portrait-shell { width: min(86%, 500px); margin: 20px auto 0; }
  .cards { grid-template-columns: 1fr; }
  .structure-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .numbers article:nth-child(3) { padding-left: 0; border-left: 0; }
  .treatment-grid { grid-template-columns: 1fr 1fr; }
  .treatment-grid .treatment-feature { grid-column: 1 / -1; grid-row: auto; min-height: 390px; }
  .journey-grid, .faq-grid { gap: 50px; }
  .campaign-video-grid { gap: 70px; }
  .detail-hero-grid, .detail-intro-grid, .detail-process-grid, .detail-faq-grid { gap: 48px; }
  .detail-options { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .topbar .button { padding: 9px 13px; font-size: 11px; }
  .brand small { display: none; }
  .hero h1 { font-size: 54px; }
  .proof-grid { grid-template-columns: 1fr; gap: 12px; }
  .contact-inner { align-items: flex-start; flex-direction: column; padding: 28px 0; }
  .structure-grid, .booking-form { grid-template-columns: 1fr; }
  .numbers-grid, .treatment-grid { grid-template-columns: 1fr; }
  .detail-options { grid-template-columns: 1fr; }
  .detail-hero { padding: 70px 0 82px; }
  .detail-hero h1 { font-size: 58px; }
  .numbers article, .numbers article:first-child, .numbers article:nth-child(3) { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); border-left: 0; }
  .numbers article:first-child { border-top: 0; }
  .treatment-grid .treatment-feature { grid-column: auto; min-height: 380px; }
  .image-stamp { right: -8px; bottom: 20px; }
  .video-badge { right: -4px; bottom: 20px; }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 16px; }
  .social-links { flex-wrap: wrap; }
  .panel-footer-link { margin-left: 0; }
  .booking-form > button, .booking-form > small { grid-column: auto; }
}

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

/* Painel */
.dashboard { min-height: 100vh; padding: 28px; background: #eef2ef; }
.dash-shell { width: min(1220px, 100%); margin: 0 auto; }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-radius: 26px; color: white; background: var(--green); box-shadow: 0 18px 50px rgba(21,59,48,.12); }
.dash-actions { display: flex; align-items: center; gap: 12px; }
.demo-tag { padding: 8px 12px; border-radius: 999px; color: #efd28f; background: rgba(255,255,255,.08); font-size: 11px; font-weight: 800; }
.panel-tabs { display: flex; gap: 7px; margin-top: 18px; padding: 7px; overflow-x: auto; border: 1px solid rgba(21,59,48,.08); border-radius: 18px; background: white; }
.panel-tabs button { padding: 11px 17px; border: 0; border-radius: 13px; color: #667870; background: transparent; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; white-space: nowrap; }
.panel-tabs button.active { color: white; background: var(--green); }
.dash-title { margin-top: 42px; }
.dash-title small { color: var(--muted); }
.dash-title h1 { margin: 8px 0 0; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 58px); font-weight: 500; }
.dash-title p { color: var(--muted); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 30px; }
.metric { padding: 24px; border: 1px solid rgba(21,59,48,.08); border-radius: 26px; background: white; }
.metric-top { display: flex; align-items: flex-start; justify-content: space-between; }
.metric-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px; color: var(--rose); background: var(--cream); }
.metric strong { font-family: Georgia, serif; font-size: 42px; font-weight: 500; }
.metric p { margin: 24px 0 0; color: #53675f; font-size: 14px; font-weight: 700; }
.dash-content { display: grid; grid-template-columns: 1.3fr .7fr; gap: 15px; margin-top: 15px; }
.panel { padding: 26px; border: 1px solid rgba(21,59,48,.08); border-radius: 26px; background: white; }
.panel-kicker { color: #a87e3e; font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.schedule { margin-top: 16px; }
.schedule-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 12px; padding: 15px 0; border-top: 1px solid rgba(21,59,48,.08); }
.schedule-row:first-child { border-top: 0; }
.schedule-row p { margin: 0; font-weight: 700; }
.schedule-row small { display: block; margin-top: 5px; color: #73837d; }
.status { align-self: center; padding: 7px 10px; border-radius: 999px; color: #2e6c58; background: #e4f3ed; font-size: 11px; font-weight: 800; }
.status.warning { color: #9b5a27; background: #fff0dc; }
.status.neutral { color: #596c65; background: #edf1ef; }
.campaign { color: white; background: var(--rose); }
.campaign h2 { margin: 22px 0 0; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.campaign p { color: rgba(255,255,255,.75); line-height: 1.6; }
.campaign-box { margin-top: 30px; padding: 17px; border-radius: 17px; background: rgba(255,255,255,.12); }
.campaign-box strong { display: block; font-size: 26px; }
.campaign-box span { color: rgba(255,255,255,.7); font-size: 13px; }
.section-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin: 40px 0 26px; }
.section-toolbar h1 { margin: 8px 0 0; font-size: clamp(40px, 5vw, 58px); font-weight: 500; }
.section-toolbar button { border: 0; cursor: pointer; }
.week-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; }
.week-grid article { padding: 22px; border: 1px solid rgba(21,59,48,.08); border-radius: 22px; background: white; }
.week-grid article.today { color: white; background: var(--green); }
.week-grid small, .week-grid strong, .week-grid span { display: block; }
.week-grid small { color: var(--rose); font-weight: 800; }
.week-grid strong { margin-top: 25px; font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.week-grid span { margin-top: 6px; color: #71827b; font-size: 12px; }
.week-grid .today small { color: #efd28f; }
.week-grid .today span { color: rgba(255,255,255,.6); }
.data-panel { margin-top: 15px; }
.data-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.data-head h2 { margin: 7px 0 0; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.data-head > span { color: var(--muted); font-size: 13px; }
.search-box { min-width: 260px; padding: 13px 16px; border: 1px solid rgba(21,59,48,.1); border-radius: 14px; color: #7b8b85; background: white; font-size: 13px; }
.funnel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.funnel-grid article { padding: 21px; border-radius: 22px; background: white; }
.funnel-grid small { color: #8a9993; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.funnel-grid strong { display: block; margin-top: 15px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.contact-row { display: grid; grid-template-columns: 1.3fr 1fr .8fr .8fr; align-items: center; gap: 16px; padding: 17px 0; border-top: 1px solid rgba(21,59,48,.08); font-size: 13px; }
.contact-header { padding-top: 0; border: 0; color: #83908b; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-row b, .contact-row small { display: block; }
.contact-row small { margin-top: 4px; color: #84928d; }
.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.campaign-card { padding: 27px; border: 1px solid rgba(21,59,48,.08); border-radius: 26px; background: white; }
.campaign-card.featured { color: white; background: var(--green); }
.campaign-card h2 { margin: 44px 0 12px; font-size: 33px; font-weight: 500; }
.campaign-card p { min-height: 66px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.campaign-card.featured p { color: rgba(255,255,255,.65); }
.progress { height: 8px; margin-top: 26px; overflow: hidden; border-radius: 99px; background: #edf1ef; }
.progress i { display: block; height: 100%; border-radius: inherit; background: var(--rose); }
.campaign-card.featured .progress { background: rgba(255,255,255,.13); }
.campaign-card.featured .progress i { background: var(--gold); }
.campaign-card footer { display: flex; justify-content: space-between; gap: 14px; margin-top: 14px; font-size: 12px; }
.campaign-card footer span { color: var(--muted); }
.campaign-card.featured footer span { color: rgba(255,255,255,.58); }
.demo-modal { width: min(520px, calc(100% - 28px)); padding: 0; border: 0; border-radius: 28px; color: var(--ink); background: white; box-shadow: 0 30px 100px rgba(0,0,0,.22); }
.demo-modal::backdrop { background: rgba(8,29,23,.66); backdrop-filter: blur(5px); }
.demo-modal form { display: grid; gap: 17px; padding: 28px; }
.modal-head { display: flex; justify-content: space-between; gap: 20px; }
.modal-head h2 { margin: 7px 0 0; font-size: 34px; font-weight: 500; }
.modal-head button { width: 36px; height: 36px; border: 0; border-radius: 50%; color: var(--ink); background: var(--cream); font-size: 24px; cursor: pointer; }
.demo-modal label { color: #556961; font-size: 13px; font-weight: 700; }
.demo-modal input, .demo-modal select { width: 100%; height: 50px; margin-top: 8px; padding: 0 14px; border: 1px solid #dce4e0; border-radius: 13px; background: white; font: inherit; }
.two-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-modal .button { border: 0; cursor: pointer; }
.demo-toast { position: fixed; right: 22px; bottom: 22px; z-index: 50; padding: 15px 18px; border-radius: 14px; color: white; background: var(--green); box-shadow: 0 14px 40px rgba(0,0,0,.18); font-size: 13px; font-weight: 700; }
@media (max-width: 760px) {
  .dashboard { padding: 14px; }
  .metric-grid, .dash-content, .week-grid, .funnel-grid, .campaign-grid { grid-template-columns: 1fr; }
  .dash-head { align-items: flex-start; flex-direction: column; }
  .dash-actions, .section-toolbar { align-items: stretch; flex-direction: column; }
  .contact-row { grid-template-columns: 1fr 1fr; }
  .contact-header { display: none; }
}
