/* ============================================================
   Dra. Sylvanne Garcia — Landing
   ============================================================ */

:root {
  --navy: #1B2A4A;
  --navy-deep: #131E37;
  --navy-soft: #2A3B60;
  --gold: #C9A24B;
  --gold-soft: #D9B870;
  --gold-deep: #A8841F;
  --cream: #FAF8F4;
  --cream-2: #F3EFE7;
  --slate: #5A6B85;
  --slate-light: #8B97AC;
  --line: rgba(27, 42, 74, 0.12);
  --line-gold: rgba(201, 162, 75, 0.45);

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 4px 16px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 14px 38px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 28px 60px rgba(27, 42, 74, 0.18);

  --ease: cubic-bezier(.2,.7,.2,1);

  --header-h: 76px;
}

/* RESET ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* LAYOUT ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* TYPOGRAPHY ------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; color: var(--navy); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5.4vw, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); line-height: 1.2; }
h3 { font-size: 1.4rem; line-height: 1.3; }
h4 { font-size: 1.2rem; line-height: 1.3; }
p  { margin: 0 0 1rem; color: var(--slate); }
em { font-style: italic; }

.section-title {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 8px 0 0;
}
.section-title em { color: var(--gold); font-style: italic; font-weight: 500; }
.section-title.center { text-align: center; }
.section-title.light  { color: var(--cream); }

.section-head { margin-bottom: 56px; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--gold); }
.eyebrow .line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.eyebrow .line.gold { background: var(--gold); }

/* BUTTONS ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-align: center;
  transition: all .35s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(201, 162, 75, 0.35);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201, 162, 75, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 248, 244, 0.35);
}
.btn-ghost:hover {
  background: rgba(250, 248, 244, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.35);
}
.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

/* HEADER ----------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(27, 42, 74, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  transition: color .35s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--navy); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.brand-mark.big {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.site-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-nav a {
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.site-header.is-scrolled .site-nav a { color: var(--navy); }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.site-nav a:hover { color: var(--gold); }
.site-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 8px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .35s var(--ease);
}
.site-header.is-scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: var(--header-h); left: 0; right: 0;
  background: var(--cream);
  box-shadow: 0 12px 28px rgba(27, 42, 74, 0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mobile-nav.is-open { max-height: 480px; }
.mobile-nav ul { padding: 12px 22px 22px; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  color: var(--navy);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 960px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* HERO ------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(0.95);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(19, 30, 55, 0.92) 0%, rgba(27, 42, 74, 0.82) 55%, rgba(27, 42, 74, 0.7) 100%),
    radial-gradient(ellipse at top right, rgba(201, 162, 75, 0.18), transparent 60%);
}

.hero-inner { max-width: 820px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}
.hero-eyebrow .line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(250, 248, 244, 0.85);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 248, 244, 0.18);
}
.hero-trust div:not(.sep) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-trust span {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-trust .sep {
  width: 1px;
  height: 32px;
  background: rgba(250, 248, 244, 0.18);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(250, 248, 244, 0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: border-color .3s var(--ease);
}
.hero-scroll:hover { border-color: var(--gold); }
.hero-scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

@media (max-width: 600px) {
  .hero-trust { gap: 16px; }
  .hero-trust .sep { display: none; }
  .hero-ctas .btn { width: 100%; }
}

/* SOBRE ------------------------------------------------------ */
.section-about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  transform: translate(16px, 16px);
}
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.photo-frame:hover img { transform: scale(1.04); }

.photo-badge {
  position: absolute;
  bottom: -10px;
  left: -16px;
  background: var(--navy);
  color: var(--cream);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
}
.badge-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.badge-text {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--cream);
}

.about-text .eyebrow { margin-bottom: 18px; }
.about-text .section-title { margin-bottom: 28px; }
.about-text p { line-height: 1.85; }

.pull-quote {
  margin: 36px 0 0;
  padding: 26px 28px;
  position: relative;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.08), transparent 70%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.pull-quote .quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -6px; left: 16px;
  line-height: 1;
}
.pull-quote .diamond { font-style: normal; }

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .photo-badge { left: 8px; bottom: -16px; padding: 18px 22px; }
  .photo-frame::before { display: none; }
}

/* SERVIÇOS --------------------------------------------------- */
.section-services {
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.06), transparent 60%),
    var(--cream-2);
}
.services-group { margin-bottom: 64px; }
.services-group:last-of-type { margin-bottom: 40px; }

.group-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 32px;
  letter-spacing: 0.005em;
}
.group-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 162, 75, 0.18);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.10);
  color: var(--gold);
  margin-bottom: 20px;
  transition: all .35s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--cream);
}
.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--navy);
}
.service-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.65;
}

.services-note {
  text-align: center;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 22px 28px;
  font-size: 0.95rem;
  color: var(--slate);
  border-top: 1px solid var(--line);
}
.services-note em { color: var(--navy); font-weight: 600; font-style: normal; }
.services-note .diamond {
  display: inline-block;
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.75rem;
  vertical-align: middle;
}

/* POR QUE ESCOLHER ------------------------------------------- */
.section-why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--cream) 0%, rgba(201, 162, 75, 0.04) 100%);
}
.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.10);
  color: var(--gold);
  margin: 0 auto 22px;
  position: relative;
}
.why-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 75, 0.35);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.why-card:hover .why-icon::after { opacity: 1; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--navy);
}
.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.65;
}

/* PROJETO SOCIAL --------------------------------------------- */
.section-social {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: 110px 0;
}
.social-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(201, 162, 75, 0.20), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(201, 162, 75, 0.12), transparent 50%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, var(--navy-soft));
}
.social-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(201, 162, 75, 0.04) 49%, rgba(201, 162, 75, 0.04) 51%, transparent 52%);
  background-size: 32px 32px;
  opacity: 0.6;
}
.social-inner {
  position: relative;
  text-align: center;
  max-width: 740px;
}
.social-inner .eyebrow.center { margin-bottom: 14px; }
.social-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  color: rgba(250, 248, 244, 0.92);
  margin: 22px 0 40px;
  font-weight: 400;
}
.social-text strong {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}

/* DEPOIMENTOS ------------------------------------------------ */
.section-testimonials { background: var(--cream-2); }
.section-testimonials > .container { max-width: 1320px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
}
.testimonial-img {
  position: relative;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
  isolation: isolate;
}
.testimonial-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .4s var(--ease);
  z-index: 2;
}
.testimonial-img::after {
  content: "";
  position: absolute;
  top: 14px; left: 14px;
  width: 22px; height: 22px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 3;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.testimonial-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-img:hover::before { border-color: var(--line-gold); }
.testimonial-img:hover::after  { opacity: 1; }
.testimonial-img:hover img     { transform: scale(1.03); }

/* CTA FINAL -------------------------------------------------- */
.section-cta {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 75, 0.16), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
}
.cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><path d='M100 30 L120 90 L180 100 L120 110 L100 170 L80 110 L20 100 L80 90 Z' fill='none' stroke='%23C9A24B' stroke-width='0.5' opacity='0.15'/></svg>") center / 200px no-repeat;
}
.cta-inner { position: relative; max-width: 720px; }
.cta-text {
  font-size: 1.1rem;
  color: rgba(250, 248, 244, 0.85);
  line-height: 1.7;
  max-width: 560px;
  margin: 22px auto 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.cta-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.7);
  letter-spacing: 0.04em;
  transition: color .3s var(--ease);
  padding: 6px 12px;
}
.cta-instagram:hover { color: var(--gold); }
.cta-instagram svg { color: var(--gold); }

@media (max-width: 540px) {
  .cta-buttons .btn { width: 100%; }
}

/* RODAPÉ ----------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 248, 244, 0.85);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-brand h3 {
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 18px 0 4px;
}
.footer-brand p { color: rgba(250, 248, 244, 0.7); margin: 0 0 4px; font-size: 0.95rem; }
.footer-brand .cro {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 10px;
  text-transform: uppercase;
}
.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}
.footer-col p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: rgba(250, 248, 244, 0.75);
  line-height: 1.7;
}
.footer-col a {
  color: rgba(250, 248, 244, 0.85);
  transition: color .3s var(--ease);
  border-bottom: 1px dotted rgba(201, 162, 75, 0.4);
}
.footer-col a:hover { color: var(--gold); }
.footer-col .clinic { font-size: 0.85rem; color: rgba(250, 248, 244, 0.6); margin-top: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(250, 248, 244, 0.5);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
}

/* WHATSAPP FLOATING ------------------------------------------ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.42), 0 4px 14px rgba(27, 42, 74, 0.15);
  transition: all .35s var(--ease);
  isolation: isolate;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.55);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 540px) {
  .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
}

/* SCROLL REVEAL ---------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  .wa-pulse { animation: none; }
  html { scroll-behavior: auto; }
}

/* SELECTION & SCROLLBAR -------------------------------------- */
::selection { background: var(--gold); color: var(--navy); }
