@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green: #7ba68e;
  --green-dark: #4d7a63;
  --green-light: #e8f2ed;
  --green-xlight: #f4faf7;
  --white: #ffffff;
  --gray-dark: #2d3748;
  --gray-mid: #4a5568;
  --gray-light: #f7f8f6;
  --shadow: 0 8px 32px rgba(75,122,99,0.13);
  --radius: 16px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--gray-dark); background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--green-dark); font-weight: 700; }
.logo span { color: var(--gray-dark); }
nav { display: flex; gap: 32px; align-items: center; }
nav a { font-size: 0.9rem; font-weight: 500; color: var(--gray-mid); transition: color var(--transition); }
nav a:hover { color: var(--green-dark); }
.btn-header {
  background: var(--green); color: #fff; padding: 10px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(123,166,142,0.35);
}
.btn-header:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(77,122,99,0.4); }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 6% 80px;
  background: linear-gradient(135deg, var(--green-xlight) 0%, #fff 60%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,166,142,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { flex: 1; max-width: 560px; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green-dark);
  padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px; letter-spacing: 0.5px;
}
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }
#hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.18; color: var(--gray-dark); margin-bottom: 20px; }
#hero h1 em { font-style: normal; color: var(--green-dark); }
.hero-sub { font-size: 1.08rem; color: var(--gray-mid); line-height: 1.75; margin-bottom: 40px; font-weight: 300; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; padding: 16px 34px; border-radius: 50px;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.3px;
  box-shadow: 0 6px 30px rgba(77,122,99,0.4);
  animation: pulse-cta 2.5s infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px rgba(77,122,99,0.5); animation: none; }
@keyframes pulse-cta {
  0%,100% { box-shadow: 0 6px 30px rgba(77,122,99,0.4); }
  50% { box-shadow: 0 6px 40px rgba(77,122,99,0.65), 0 0 0 8px rgba(123,166,142,0.12); }
}
.btn-cta svg { width: 20px; height: 20px; }
.hero-img-wrap { flex: 1; display: flex; justify-content: center; align-items: flex-end; position: relative; }
.hero-img-wrap img {
  width: 420px; max-width: 90%; border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  object-fit: cover; aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(77,122,99,0.22);
  animation: hero-float 4s ease-in-out infinite;
  border: 5px solid rgba(123,166,142,0.25);
}
@keyframes hero-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-img-ring {
  position: absolute; inset: -18px; border-radius: 45% 55% 55% 45% / 45% 45% 55% 55%;
  border: 2px dashed rgba(123,166,142,0.3);
  animation: spin-ring 18s linear infinite;
}
@keyframes spin-ring { to{transform:rotate(360deg)} }

/* ── STATS ── */
#stats { background: var(--green-dark); padding: 56px 6%; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.stat-card {
  flex: 1; min-width: 180px; max-width: 240px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.14); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 400; }

/* ── SECTION BASE ── */
.section { padding: 90px 6%; }
.section-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; color: var(--green); text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--gray-dark); line-height: 1.25; margin-bottom: 16px; }
.section-title em { font-style: normal; color: var(--green-dark); }
.section-sub { font-size: 1.05rem; color: var(--gray-mid); line-height: 1.75; max-width: 560px; font-weight: 300; }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-dark)); border-radius: 2px; margin: 20px 0; }

/* ── ABOUT ── */
#about { display: flex; align-items: center; gap: 72px; background: var(--white); }
.about-img-wrap { position: relative; flex-shrink: 0; }
.about-img-wrap img {
  width: 380px; max-width: 100%; border-radius: 30px;
  object-fit: cover; aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
}
.about-img-wrap:hover img { transform: scale(1.02); }
.about-img-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--white); border-radius: 14px; padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
}
.badge-icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.badge-text strong { display: block; font-size: 1rem; color: var(--gray-dark); }
.badge-text span { font-size: 0.78rem; color: var(--gray-mid); }
.about-text { flex: 1; }
.about-text p { font-size: 1rem; color: var(--gray-mid); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  background: var(--green-light); color: var(--green-dark);
  padding: 7px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid rgba(123,166,142,0.25);
  transition: background var(--transition), transform var(--transition);
}
.chip:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ── WHY THERAPY ── */
#why { background: var(--gray-light); }
#why .cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  border: 1px solid rgba(123,166,142,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0; transform: translateY(30px);
}
.why-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-icon { width: 52px; height: 52px; background: var(--green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.why-card h3 { font-size: 1.05rem; color: var(--gray-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.7; font-weight: 300; }

/* ── WAVE DIVIDERS ── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── FOR WHOM ── */
#forwhom { background: var(--white); }
#forwhom .audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 48px; }
.audience-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer; position: relative;
}
.audience-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(77,122,99,0.18); }
.audience-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.audience-card:hover img { transform: scale(1.07); }
.audience-info { padding: 22px; background: var(--white); }
.audience-info h3 { font-size: 1.1rem; color: var(--gray-dark); margin-bottom: 8px; }
.audience-info p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.65; font-weight: 300; }

/* ── ONLINE ── */
#online {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3a6b52 100%);
  padding: 90px 6%; display: flex; align-items: center; gap: 72px;
}
#online img { width: 420px; max-width: 100%; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.2); flex-shrink: 0; transition: transform 0.5s ease; }
#online img:hover { transform: scale(1.02); }
.online-text { flex: 1; }
.online-text .section-tag { color: rgba(255,255,255,0.6); }
.online-text .section-title { color: #fff; }
.online-text .section-sub { color: rgba(255,255,255,0.75); }
.online-text .section-divider { background: linear-gradient(90deg,#fff, rgba(255,255,255,0.3)); }
.benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.benefit-item { display: flex; align-items: flex-start; gap: 16px; }
.benefit-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.benefit-item h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.benefit-item p { color: rgba(255,255,255,0.65); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--green-dark);
  padding: 16px 34px; border-radius: 50px; margin-top: 36px;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-white 2.5s infinite;
}
.btn-cta-white:hover { transform: translateY(-3px) scale(1.02); animation: none; box-shadow: 0 10px 32px rgba(0,0,0,0.25); }
@keyframes pulse-white {
  0%,100%{box-shadow:0 6px 24px rgba(0,0,0,0.2)}
  50%{box-shadow:0 6px 36px rgba(0,0,0,0.3), 0 0 0 8px rgba(255,255,255,0.12)}
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--gray-light); padding: 90px 6%; text-align: center; }
.testimonials-header { max-width: 600px; margin: 0 auto 56px; }
.testimonials-header .section-divider { margin: 20px auto; }
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card {
  min-width: 100%; padding: 0 20px;
}
.testimonial-inner {
  background: var(--white); border-radius: 24px; padding: 44px 48px; max-width: 720px;
  margin: 0 auto; box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
}
.quote-mark { font-size: 5rem; color: var(--green-light); font-family: Georgia, serif; line-height: 0.8; margin-bottom: 20px; }
.testimonial-text { font-size: 1.08rem; color: var(--gray-mid); line-height: 1.85; font-style: italic; font-weight: 300; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--green-dark); font-size: 1.1rem; }
.author-name { font-weight: 600; color: var(--gray-dark); font-size: 0.95rem; }
.author-detail { font-size: 0.8rem; color: var(--gray-mid); }
.stars { color: #f6b93b; font-size: 1rem; margin-bottom: 4px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(123,166,142,0.3); cursor: pointer; transition: background var(--transition), transform var(--transition); border: none; }
.carousel-dot.active { background: var(--green-dark); transform: scale(1.2); }

/* ── CTA FINAL ── */
#cta-final {
  background: linear-gradient(135deg, #2d5a42 0%, var(--green-dark) 50%, var(--green) 100%);
  padding: 100px 6%; text-align: center;
}
#cta-final h2 { font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: 16px; }
#cta-final p { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 48px; line-height: 1.75; font-weight: 300; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff; padding: 18px 40px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  animation: pulse-wa 2.5s infinite;
  transition: transform var(--transition);
}
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02); animation: none; }
@keyframes pulse-wa {
  0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.4)}
  50%{box-shadow:0 8px 50px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1)}
}
.btn-email {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12); color: #fff; padding: 18px 40px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background var(--transition), transform var(--transition);
}
.btn-email:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.btn-email svg, .btn-whatsapp svg { width: 22px; height: 22px; }

/* ── FOOTER ── */
footer {
  background: #1a2e24; padding: 48px 6% 32px;
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; margin-bottom: 36px; }
.footer-brand .logo { font-size: 1.35rem; color: #fff; margin-bottom: 8px; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); max-width: 260px; line-height: 1.65; }
.footer-links h4 { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-links a { display: block; color: rgba(255,255,255,0.45); font-size: 0.83rem; margin-bottom: 8px; transition: color var(--transition); }
.footer-links a:hover { color: var(--green); }
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.crp { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

/* ── SCROLL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 200;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: pulse-wa-float 2.5s infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.12); animation: none; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse-wa-float {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.45)}
  50%{box-shadow:0 6px 40px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1)}
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { flex-direction: column; text-align: center; padding-top: 110px; }
  .hero-content { max-width: 100%; }
  .hero-img-wrap img { width: 300px; }
  #about { flex-direction: column; }
  .about-img-badge { left: auto; right: -12px; }
  .about-img-wrap img { width: 100%; }
  #online { flex-direction: column; }
  nav { display: none; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 64px 5%; }
  #stats { padding: 40px 5%; }
  .testimonial-inner { padding: 32px 24px; }
  #cta-final { padding: 72px 5%; }
}
