:root {
  --pink: #db0065;
  --pink-dark: #b60050;
  --pink-soft: #fff0f6;
  --ink: #24242b;
  --muted: #696a73;
  --white: #ffffff;
  --line: rgba(219, 0, 101, .14);
  --shadow: 0 24px 70px rgba(94, 15, 51, .12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 9999; background: var(--ink); color: white; padding: 12px 16px; border-radius: 10px; }
.skip-link:focus { top: 20px; }

.topbar { background: var(--ink); color: #fff; font-size: .86rem; }
.topbar__content { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar a { color: #fff; font-weight: 700; }

.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.9); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; transition: .3s ease; }
.header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(34, 18, 27, .06); }
.header__content { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 215px; flex: 0 0 auto; }
.brand img { width: 100%; height: 68px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 24px; font-size: .94rem; font-weight: 700; }
.nav > a:not(.button) { position: relative; }
.nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--pink); transition: right .25s ease; }
.nav > a:not(.button):hover::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; background: linear-gradient(135deg, var(--pink), #f02b81); color: #fff; font-weight: 800; box-shadow: 0 12px 30px rgba(219,0,101,.24); transition: transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 17px 36px rgba(219,0,101,.3); }
.button--small { min-height: 44px; padding-inline: 18px; }
.button--ghost { color: var(--pink); background: #fff; border: 1px solid rgba(219,0,101,.24); box-shadow: none; }
.button--white { background: #fff; color: var(--pink); box-shadow: none; }

.hero { position: relative; isolation: isolate; overflow: hidden; padding: 84px 0 90px; background: radial-gradient(circle at 6% 20%, #fff1f7 0, transparent 35%), linear-gradient(180deg, #fff 0%, #fff9fc 100%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.hero__content h1 { margin: 16px 0 20px; font-size: clamp(2.6rem, 5.3vw, 5.2rem); line-height: .98; letter-spacing: -.055em; max-width: 780px; }
.hero__content p { font-size: 1.12rem; color: var(--muted); max-width: 650px; margin: 0 0 30px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--pink); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: #ffd5e7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 720px; }
.hero__trust div { padding: 17px 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); }
.hero__trust strong, .hero__trust span { display: block; }
.hero__trust strong { font-size: .94rem; }
.hero__trust span { color: var(--muted); font-size: .82rem; }
.hero__photo-wrap { position: relative; min-height: 590px; border-radius: 48% 48% 34% 34% / 38% 38% 28% 28%; background: linear-gradient(145deg, #ffe2ef, #fff); padding: 24px; box-shadow: var(--shadow); }
.hero__photo-wrap::after { content: ""; position: absolute; inset: 24px; border-radius: inherit; border: 1px solid rgba(255,255,255,.9); pointer-events: none; }
.hero__photo-wrap img { width: 100%; height: 100%; min-height: 540px; border-radius: inherit; object-fit: cover; object-position: 54% 44%; }
.hero__badge { position: absolute; left: -32px; bottom: 34px; display: flex; align-items: center; gap: 14px; max-width: 320px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-radius: 20px; box-shadow: 0 15px 40px rgba(61,18,39,.15); }
.hero__badge-icon { width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--pink-soft); color: var(--pink); font-size: 1.3rem; }
.hero__badge strong, .hero__badge small { display: block; }
.hero__badge small { color: var(--muted); margin-top: 3px; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(5px); opacity: .6; z-index: -1; }
.hero__glow--one { width: 360px; height: 360px; background: #ffddeb; right: -180px; top: -120px; }
.hero__glow--two { width: 240px; height: 240px; background: #ffeaf3; left: -90px; bottom: -100px; }

.section { padding: 104px 0; }
.section--light { background: #fff7fb; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-heading h2 { margin: 14px 0 0; font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.045em; line-height: 1.08; }
.section-heading--center { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading--center p { color: var(--muted); font-size: 1.05rem; }
.about-copy { font-size: 1.08rem; color: var(--muted); }
.text-link { display: inline-flex; gap: 8px; color: var(--pink); font-weight: 800; margin-top: 10px; }

.specialties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.specialty-card { min-height: 195px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: .28s ease; }
.specialty-card:hover { transform: translateY(-7px); border-color: rgba(219,0,101,.35); box-shadow: 0 18px 40px rgba(80,17,47,.09); }
.specialty-card > span { width: 48px; height: 48px; display: grid; place-items: center; background: var(--pink-soft); color: var(--pink); border-radius: 15px; font-weight: 900; font-size: 1.25rem; }
.specialty-card h3 { margin: 19px 0 6px; font-size: 1.08rem; }
.specialty-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.neuro { color: #fff; background: radial-gradient(circle at 80% 10%, #ef2b80 0, transparent 35%), linear-gradient(135deg, #9d003f 0%, #d50061 62%, #e31d75 100%); }
.neuro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 65px; align-items: center; }
.neuro h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); line-height: 1.05; letter-spacing: -.045em; margin: 15px 0 20px; }
.neuro__content > p { color: rgba(255,255,255,.84); font-size: 1.05rem; }
.neuro__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 30px 0; }
.neuro__list span { padding: 13px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 14px; background: rgba(255,255,255,.08); font-size: .9rem; }
.neuro__panel { padding: 38px; border-radius: var(--radius); color: var(--ink); background: #fff; box-shadow: 0 28px 80px rgba(87,0,36,.3); }
.panel-label { color: var(--pink); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; }
.neuro__panel h3 { margin: 10px 0 20px; font-size: 2rem; line-height: 1.15; }
.neuro__panel ul { list-style: none; padding: 0; margin: 0; }
.neuro__panel li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid #eee; }
.neuro__panel li::before { content: "✓"; position: absolute; left: 0; color: var(--pink); font-weight: 900; }
.panel-note { margin-top: 22px; padding: 16px; color: var(--muted); background: var(--pink-soft); border-radius: 14px; font-size: .84rem; }

.testimonials { position: relative; max-width: 850px; margin: 0 auto; min-height: 330px; }
.testimonial { display: none; text-align: center; padding: 48px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.testimonial.is-active { display: block; animation: fadeSlide .5s ease both; }
.testimonial blockquote { margin: 17px auto 23px; max-width: 690px; font-size: clamp(1.2rem, 2.2vw, 1.7rem); line-height: 1.45; }
.stars { color: #ffb400; letter-spacing: .15em; }
.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 24px; }
.testimonial-controls button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; color: var(--pink); font-weight: 900; }
.testimonial-dots { display: flex; gap: 7px; }
.testimonial-dots button { width: 9px; height: 9px; border: 0; padding: 0; background: #efc7d9; }
.testimonial-dots button.is-active { background: var(--pink); transform: scale(1.25); }

.contact { background: linear-gradient(180deg, #fff 0%, #fff7fb 100%); }
.contact__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.contact__content h2 { margin: 14px 0; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.08; letter-spacing: -.045em; }
.contact__content > p { color: var(--muted); max-width: 690px; }
.contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.contact__cards > * { padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: .25s; }
.contact__cards a:hover { border-color: var(--pink); transform: translateY(-3px); }
.contact__cards span, .contact__cards strong { display: block; }
.contact__cards span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.contact__cta { padding: 42px; border-radius: var(--radius); background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.contact__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--pink); font-size: 1.5rem; }
.contact__cta h3 { font-size: 2rem; margin: 18px 0 10px; }
.contact__cta p { color: rgba(255,255,255,.72); margin-bottom: 24px; }

.footer { background: #17171c; color: #fff; padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.25fr 1fr .8fr 1.2fr; gap: 45px; }
.footer__brand img { width: 220px; height: 100px; object-fit: contain; object-position: left; filter: drop-shadow(0 8px 14px rgba(0,0,0,.25)); }
.footer p, .footer span, .footer a { display: block; color: rgba(255,255,255,.64); margin: 7px 0; }
.footer h3 { font-size: 1rem; margin-top: 0; }
.footer strong { display: block; font-size: .9rem; line-height: 1.5; }
.footer a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 55px; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.1); font-size: .84rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: 9px; padding: 10px 16px 10px 10px; border-radius: 999px; background: #20b866; color: #fff; font-weight: 900; box-shadow: 0 14px 35px rgba(16,103,60,.3); transition: .25s; }
.whatsapp-float:hover { transform: translateY(-4px); }
.whatsapp-float span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #20b866; }
.whatsapp-float em { font-style: normal; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

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

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 126px 20px auto; display: grid; gap: 0; padding: 20px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s; }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px; }
  .nav .button { margin-top: 8px; }
  .hero__grid, .neuro__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 50px; }
  .hero__visual { max-width: 650px; margin: auto; }
  .specialties-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .topbar__content { justify-content: center; text-align: center; }
  .topbar__content span { display: none; }
  .header__content { min-height: 76px; }
  .brand { width: 175px; }
  .brand img { height: 58px; }
  .nav { inset-top: 114px; }
  .hero { padding: 58px 0 70px; }
  .hero__content h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__trust { grid-template-columns: 1fr; }
  .hero__photo-wrap { min-height: 460px; border-radius: 40px; padding: 12px; }
  .hero__photo-wrap img { min-height: 435px; border-radius: 32px; }
  .hero__badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .section { padding: 76px 0; }
  .split { grid-template-columns: 1fr; gap: 26px; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .specialty-card { min-height: 170px; padding: 22px; }
  .neuro__list { grid-template-columns: 1fr; }
  .neuro__panel { padding: 28px; }
  .testimonial { padding: 30px 20px; }
  .contact__cards { grid-template-columns: 1fr; }
  .contact__cta { padding: 30px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .whatsapp-float em { display: none; }
  .whatsapp-float { padding: 8px; }
}

@media (max-width: 480px) {
  .specialties-grid { grid-template-columns: 1fr; }
  .hero__badge small { display: none; }
  .section-heading h2 { font-size: 2.1rem; }
}
