/* =============================================
   ESPACIO AB-BÁ — Design System
   Colors: warm cream, deep teal, gold accents
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream:    #F9F4EE;
  --cream-2:  #F0E8DC;
  --teal:     #2D6E6E;
  --teal-dark:#1E4E4E;
  --teal-light:#3D8B8B;
  --gold:     #C49A3C;
  --gold-light:#D4AF5A;
  --charcoal: #2C2C2C;
  --muted:    #7A7A6E;
  --white:    #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h: 80px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1rem; color: var(--muted); }
a  { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { padding: 5rem 0; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 20px rgba(45,110,110,0.10);
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(45,110,110,0.13);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo img {
  height: 52px;
  width: auto;
  display: block;
}
.navbar__logo span { color: var(--white); }

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.navbar__links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar__links a:hover, .navbar__links a.active { color: var(--teal); }
.navbar__links a:hover::after, .navbar__links a.active::after { transform: scaleX(1); }

.navbar__cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.82rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase !important;
  transition: background var(--transition) !important;
}
.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: var(--teal-dark) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--teal-dark);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__cta {
  margin-top: 1rem;
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.75rem 2rem !important;
  font-size: 1rem !important;
  border-radius: var(--radius) !important;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1E4E4E 0%, #2D6E6E 50%, #3D8B8B 100%);
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,154,60,0.2);
  border: 1px solid rgba(196,154,60,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,154,60,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,110,110,0.3); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: #111; transform: translateY(-2px); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; color: var(--teal-dark); }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--teal-dark);
  color: var(--white);
  padding: 2rem 0;
}
.about-strip__inner {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-strip__stat { text-align: center; }
.about-strip__stat strong {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.about-strip__stat span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---- ABOUT SECTION ---- */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about__img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  font-family: var(--font-heading);
}
.about__img-badge strong { font-size: 2rem; display: block; line-height: 1; }
.about__img-badge span { font-size: 0.78rem; letter-spacing: 0.08em; }
.about__text h2 { color: var(--teal-dark); margin-bottom: 1.2rem; }
.about__text p { margin-bottom: 1.2rem; }
.about__features { list-style: none; margin: 1.5rem 0; }
.about__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-2);
  color: var(--muted);
  font-size: 0.95rem;
}
.about__features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ---- DISCOUNT BANNER ---- */
.discount-banner {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 1.5rem 0;
  text-align: center;
}
.discount-banner p {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.discount-banner strong { font-size: 1.2rem; }

/* ---- THERAPIES GRID ---- */
.therapies { background: var(--cream); }
.therapies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.5rem;
}
.therapy-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-2);
}
.therapy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45,110,110,0.12);
}
.therapy-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.therapy-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.therapy-card:hover .therapy-card__img img {
  transform: scale(1.04);
}
.therapy-card__body { padding: 1.5rem; }
.therapy-card__body h3 { color: var(--teal-dark); margin-bottom: 0.5rem; font-size: 1.25rem; }
.therapy-card__body p { font-size: 0.9rem; margin-bottom: 1rem; }
.therapy-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  transition: gap var(--transition);
}
.therapy-card__link:hover { gap: 0.7rem; color: var(--gold); }

/* ---- WHY US ---- */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 2rem;
}
.why-card {
  padding: 2rem;
  background-color: white;
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: 0 10px 32px rgba(45,110,110,0.08); }
.why-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.why-card h3 { color: var(--teal-dark); margin-bottom: 0.5rem; font-size: 1.15rem; }

/* ---- PATRICIA ---- */
.patricia { background: var(--cream-2); }
.patricia__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.patricia__img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
}
.patricia__text h2 { color: var(--teal-dark); margin-bottom: 0.5rem; }
.patricia__text .role { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
.patricia__text p { margin-bottom: 1rem; }

/* ---- REVIEWS ---- */
.reviews { background: var(--teal-dark); }
.reviews .section-header h2 { color: var(--white); }
.reviews .section-header p { color: rgba(255,255,255,0.6); }
.reviews .eyebrow { color: var(--gold-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.8rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.1); }
.review-card__stars { color: var(--gold-light); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-card__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-card__author { color: rgba(255,255,255,0.5); font-size: 0.82rem; letter-spacing: 0.06em; }

/* ---- CONTACT ---- */
.contact { background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 { color: var(--teal-dark); margin-bottom: 1rem; }
.contact__info p { margin-bottom: 2rem; }
.contact__items { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.contact__items li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.contact__items li .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact__items li strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.2rem; }
.contact__items li span { color: var(--charcoal); font-size: 0.95rem; }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-2);
}
.contact__map iframe { width: 100%; height: 400px; border: none; display: block; }

/* ---- FOOTER ---- */
footer {
  background: white;
  color: var(--teal);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { }
.footer-brand .logo {
  display: block;
  margin-bottom: 1rem;
}
.footer-brand .logo img {
  height: 48px;
  width: auto;
  filter: none;
  opacity: 0.9;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--cream-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  color: var(--teal);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { color: var(--teal-dark); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; transition: color var(--transition); color: var(--teal);}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--cream-2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}

/* ---- WHATSAPP STICKY ---- */
.wa-sticky {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 900;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
  animation: none;
}
.wa-sticky svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 1rem auto 0; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---- THERAPY DETAIL ---- */
.therapy-detail { background: var(--white); }
.therapy-detail__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.therapy-detail__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}
.therapy-detail__content h2 { color: var(--teal-dark); margin-bottom: 1rem; }
.therapy-detail__content p { margin-bottom: 1rem; }
.therapy-detail__content h3 { color: var(--teal); margin: 2rem 0 0.8rem; font-size: 1.2rem; }
.therapy-detail__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0;
}
.therapy-detail__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.therapy-detail__benefits li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; margin-top: 0.4rem; flex-shrink: 0; }
.therapy-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.therapy-sidebar__card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-top: 4px solid var(--gold);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.therapy-sidebar__card h4 { color: var(--teal-dark); margin-bottom: 1rem; }
.therapy-sidebar__card p { font-size: 0.9rem; margin-bottom: 1.2rem; }
.therapy-nav { list-style: none; }
.therapy-nav li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--cream-2);
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.therapy-nav li a:hover { color: var(--teal); }
.therapy-nav li a span { font-size: 1rem; }

/* ---- NOSOTROS ---- */
.nosotros-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 2rem;
}
.value-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--cream-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,110,110,0.1); }
.value-card .icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.value-card h3 { color: var(--teal-dark); margin-bottom: 0.6rem; font-size: 1.2rem; }

/* ---- CONTACT FORM ---- */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-2);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .about__grid,
  .patricia__grid,
  .contact__grid,
  .therapy-detail__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about__img-badge { right: 0; }
}
@media (max-width: 600px) {
  section { padding: 3rem 0; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .therapies-grid { grid-template-columns: 1fr; }
}
