:root {
  --pink: #F07FA0;          /* cor do logo, usada só como detalhe */
  --rose: #C2557A;          /* rosa para botões e links (contraste AA com branco) */
  --rose-dark: #A6445F;
  --petal: #FBEAF0;         /* rosinha bem claro para ícones e tags */
  --blush: #F3F1F0;         /* cinza-pérola das seções */
  --blush-2: #E4E1E0;       /* cinza do fundo da referência */
  --ink: #4A4546;           /* grafite */
  --heading: #5C5758;
  --muted: #7D7778;
  --line: #E2DEDD;
  --white: #FFFFFF;
  --radius: 22px;
  --shadow: 0 18px 40px -22px rgba(74, 69, 70, .35);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
html, body { overflow-x: clip; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0 0 .5em; color: var(--heading); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--rose); }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.eyebrow { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 1em; display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--pink); flex: none; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 520px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: .92rem; text-decoration: none; border: 2px solid transparent; transition: transform .2s, background .2s, color .2s, box-shadow .2s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-primary { background: var(--rose); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-ghost { border-color: var(--rose); color: var(--rose); background: transparent; }
.btn-ghost:hover { background: var(--rose); color: var(--white); }
.btn-light { background: var(--white); color: var(--rose); }
.btn-outline-light { border-color: rgba(255,255,255,.8); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--rose); }
.link { color: var(--rose); font-weight: 600; font-size: .9rem; text-decoration: none; }
.link:hover { text-decoration: underline; }

/* Topbar */
.topbar { background: var(--ink); color: #EDEAE9; font-size: .8rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; padding-top: 8px; padding-bottom: 8px; }
.topbar a { text-decoration: none; font-weight: 600; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { width: 40px; height: 40px; }
.logo-text { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; color: var(--rose); letter-spacing: .06em; text-transform: uppercase; line-height: 1; font-weight: 500; }
.logo-text small { display: block; font-family: var(--sans); font-size: .56rem; letter-spacing: .28em; color: var(--muted); margin-top: 4px; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { text-decoration: none; font-size: .9rem; font-weight: 500; color: var(--ink); position: relative; }
.main-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--pink); transition: width .25s; }
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: var(--petal); border-radius: 12px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--rose); transition: transform .25s, opacity .25s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { background: radial-gradient(ellipse at 80% 20%, #FAF9F9 0%, transparent 60%), linear-gradient(180deg, var(--blush-2) 0%, var(--blush) 100%); padding: 70px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }
.hero-rating { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--muted); }
.stars { color: #F4B400; letter-spacing: 2px; }
.hero-media { position: relative; }
.hero-photo { border-radius: 220px 220px var(--radius) var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; border: 8px solid var(--white); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -28px; bottom: 40px; display: flex; align-items: center; gap: 12px; background: var(--white); padding: 14px 20px; border-radius: 18px; box-shadow: 0 16px 34px -14px rgba(58,42,48,.3); }
.hero-badge strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--rose); line-height: 1; }
.hero-badge span { font-size: .78rem; color: var(--muted); }
.hero-media::before { content: ""; position: absolute; width: 140px; height: 140px; right: -40px; top: -30px; background: url("../images/simbolo.png") center/contain no-repeat; opacity: .18; z-index: -1; }

/* Stats */
.stats { background: var(--white); color: var(--ink); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; padding-top: 34px; padding-bottom: 34px; }
.stats-grid div + div { border-left: 1px solid var(--line); }
.stats-grid strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 2.6rem; line-height: 1.1; color: var(--heading); }
.stats-grid span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* Sections */
.section { padding: 100px 0; }
.section-soft { background: var(--blush); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; }
.section-head p:last-child { color: var(--muted); }
.section-head .eyebrow::after, .reviews-score .eyebrow::after { content: ""; width: 34px; height: 2px; background: var(--pink); flex: none; }

/* Destaques */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.feature-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.feature-body p { color: var(--muted); font-size: .94rem; flex: 1; }
.feature-lg { grid-column: span 2; flex-direction: row; }
.feature-lg img { width: 55%; flex: none; aspect-ratio: auto; min-height: 320px; }
.feature-lg .feature-body { justify-content: center; padding: 40px; }
.feature-lg h3 { font-size: 2rem; }
.tag { align-self: flex-start; font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--rose); background: var(--petal); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }

/* Procedimentos */
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.tab { font: inherit; font-size: .88rem; font-weight: 500; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; transition: all .2s; }
.tab:hover { border-color: var(--pink); }
.tab.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proc { background: var(--white); border-radius: 18px; padding: 28px 26px; border: 1px solid transparent; transition: border-color .2s, transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.proc:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: var(--shadow); }
.proc h3 { font-size: 1.35rem; margin-bottom: .35em; }
.proc p { color: var(--muted); font-size: .9rem; flex: 1; }
.proc-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--petal); color: var(--pink); font-size: 1.2rem; margin-bottom: 16px; }
.proc.is-hidden { display: none; }
.proc.proc-cta { background: var(--ink); color: var(--white); }
.proc-cta h3 { color: var(--white); }
.proc-cta p { color: rgba(255,255,255,.9); }
.proc-cta .btn { align-self: flex-start; }

/* Split */
.split { padding: 100px 0 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media img { height: auto; border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 9/7; object-fit: cover; }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.checks { list-style: none; padding: 0; margin: 0 0 30px; }
.checks li { padding-left: 32px; position: relative; margin-bottom: 10px; font-weight: 500; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--petal); color: var(--rose); display: grid; place-items: center; font-size: .78rem; font-weight: 700; }

/* Sobre */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.about-copy > p:not(.eyebrow) { color: var(--muted); }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.values div { border-left: 3px solid var(--pink); padding-left: 16px; }
.values strong { display: block; font-size: .95rem; }
.values span { font-size: .86rem; color: var(--muted); }
.about-media { position: relative; }
.about-media > img:first-child { height: auto; border-radius: var(--radius) var(--radius) 200px 200px; aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.about-logo { position: absolute; width: 150px; height: auto; right: -20px; bottom: -30px; background: var(--white); border-radius: 50%; padding: 10px; box-shadow: 0 16px 34px -14px rgba(58,42,48,.3); }

/* Avaliações */
.section-rose { background: linear-gradient(135deg, var(--blush-2) 0%, var(--blush) 100%); color: var(--ink); }
.section-rose .btn-light { background: var(--rose); color: var(--white); }
.section-rose .btn-light:hover { background: var(--rose-dark); }
.section-rose .btn-outline-light { border-color: var(--ink); color: var(--ink); }
.section-rose .btn-outline-light:hover { background: var(--ink); color: var(--white); }
.score strong { color: var(--heading); font-weight: 500; }
.reviews { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.reviews-score { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: var(--radius); padding: 40px; text-align: center; }
.score strong { font-family: var(--serif); font-size: 5rem; line-height: 1; display: block; }
.score .stars { font-size: 1.4rem; }
.reviews-score p { margin: 12px 0 22px; }
.reviews-cta p { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }

/* FAQ */
.faq-wrap { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--rose); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); padding-right: 40px; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.contact-list { list-style: none; padding: 0; margin: 0 0 30px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 18px; }
.contact-list strong { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-list a { text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--rose); }
.ci { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--white); display: grid; place-items: center; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map { border-radius: var(--radius); overflow: hidden; min-height: 420px; box-shadow: var(--shadow); background: var(--blush-2); }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* Footer */
.site-footer { background: #3A3637; color: #E6E2E1; padding: 70px 0 0; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { width: 110px; height: auto; background: var(--white); border-radius: 50%; padding: 8px; margin-bottom: 18px; }
.site-footer h4 { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin: 0 0 16px; font-weight: 600; }
.site-footer a { display: block; text-decoration: none; margin-bottom: 8px; opacity: .85; }
.site-footer a:hover { opacity: 1; color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; padding-bottom: 26px; display: flex; justify-content: space-between; gap: 20px; font-size: .78rem; opacity: .7; }

/* WhatsApp flutuante */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: var(--white); display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(0,0,0,.35); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsivo */
@media (max-width: 1024px) {
  .main-nav { gap: 20px; }
  .feature-grid, .proc-grid { grid-template-columns: 1fr 1fr; }
  .feature-lg { grid-column: span 2; }
}
@media (max-width: 900px) {
  .topbar-right { display: none; }
  .site-header { backdrop-filter: none; background: var(--white); }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 85vw); background: var(--white); flex-direction: column; gap: 6px; padding: 100px 28px 28px; box-shadow: -20px 0 40px -20px rgba(0,0,0,.25); transform: translateX(100%); visibility: hidden; transition: transform .3s, visibility .3s; z-index: 40; }
  .main-nav a { font-size: 1.05rem; padding: 10px 0; }
  .nav-cta-mobile { display: inline-flex; margin-top: 16px; }
  .nav-open .main-nav { transform: none; visibility: visible; }
  .nav-cta { position: relative; z-index: 45; }
  .hero { padding: 40px 0 70px; }
  .hero-grid, .split-grid, .about-grid, .contact-grid, .reviews { grid-template-columns: 1fr; gap: 44px; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-badge { left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .stats-grid div:nth-child(3) { border-left: 0; }
  .section { padding: 72px 0; }
  .split { padding-top: 72px; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .about-logo { right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .topbar { font-size: .72rem; }
  .feature-grid, .proc-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-column: auto; flex-direction: column; }
  .feature-lg img { width: 100%; min-height: 0; aspect-ratio: 4/3; }
  .feature-lg .feature-body { padding: 24px 26px 28px; }
  .feature-lg h3 { font-size: 1.5rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .values { grid-template-columns: 1fr; }
  .reviews-score { padding: 30px 20px; }
  .logo-text { font-size: 1.35rem; }
}
