:root {
  --green-dark: #0d3320;
  --green-mid: #1a5c35;
  --green-bright: #2d8a50;
  --green-light: #4eb974;
  --green-accent: #7dd99a;
  --cream: #f5f0e8;
  --cream-warm: #ede7d8;
  --gold: #c8a84b;
  --gold-light: #e8c97a;
  --text-dark: #0d1a12;
  --text-mid: #2a4a35;
  --white: #ffffff;
  --navy: #0d2233;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── STICKY NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,51,32,0.96);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
  border-bottom: 1px solid rgba(78,185,116,0.2);
}
nav img { height: 90px; }
nav .nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
nav .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0d2518 55%, #091a10 100%);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(45,138,80,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.4);
  color: var(--gold-light);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-accent);
}
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #a8842a);
  color: var(--green-dark);
  font-weight: 700; font-size: 1rem;
  padding: 18px 38px; border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(200,168,75,0.35);
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,168,75,0.45); }
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap {
  width: 380px; height: 480px;
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(78,185,116,0.25);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  position: relative;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-img-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700; font-size: 0.8rem;
  padding: 12px 16px; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  line-height: 1.4;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px;
}
.stat { text-align: left; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--green-accent); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; margin-top: 2px; }

/* ── PAIN SECTION ── */
.pain {
  background: var(--cream-warm);
  padding: 100px 5%;
  position: relative;
}
.pain::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold), var(--green-light));
}
.section-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--green-bright); font-weight: 600; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--green-dark);
  font-weight: 900;
  max-width: 700px;
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--green-bright); }
.pain-grid {
  max-width: 1100px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pain-card {
  background: var(--white);
  border-radius: 12px; padding: 32px 28px;
  border-left: 4px solid var(--green-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.pain-icon { font-size: 2rem; margin-bottom: 16px; }
.pain-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 10px; }
.pain-card p { font-size: 0.9rem; line-height: 1.65; color: #4a5a50; }

/* ── OPPORTUNITY ── */
.opportunity {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.opportunity::after {
  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='%234eb974' fill-opacity='0.05'%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");
  pointer-events: none;
}
.opportunity-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.opportunity .section-label { color: var(--green-accent); }
.opportunity .section-title { color: var(--white); max-width: none; margin: 0 auto 30px; }
.opportunity p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.75; margin-bottom: 16px; }
.opportunity p strong { color: var(--gold-light); }
.opp-cta {
  display: inline-block; margin-top: 40px;
  background: var(--gold); color: var(--green-dark);
  font-weight: 700; font-size: 1rem;
  padding: 18px 38px; border-radius: 6px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(200,168,75,0.4);
}
.opp-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,168,75,0.5); }

/* ── ABOUT ── */
.about {
  background: var(--white);
  padding: 100px 5%;
}
.about-inner { max-width: 1100px; margin: 0 auto; }
.about-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px;
}
.about-card {
  display: flex; flex-direction: column; gap: 24px;
}
.about-photo {
  width: 100%; height: 380px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-photo-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--green-dark);
  color: var(--white); font-size: 0.78rem; font-weight: 600;
  padding: 8px 14px; border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.about-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--green-dark); }
.about-card p { font-size: 0.92rem; line-height: 1.72; color: #4a5a50; }
.about-card p strong { color: var(--green-mid); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(45,138,80,0.08);
  border: 1px solid rgba(45,138,80,0.2);
  color: var(--green-mid); font-size: 0.77rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
}

/* ── PROGRAM ── */
.program {
  background: var(--cream-warm);
  padding: 100px 5%;
}
.program-inner { max-width: 1100px; margin: 0 auto; }
.modules {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 60px;
}
.module {
  background: var(--white);
  border-radius: 10px; padding: 28px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-top: 3px solid var(--green-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.module:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.module-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  color: var(--green-accent); line-height: 1; flex-shrink: 0; min-width: 36px;
}
.module-body h4 { font-weight: 700; font-size: 1rem; color: var(--green-dark); margin-bottom: 6px; }
.module-body p { font-size: 0.87rem; line-height: 1.6; color: #5a6a60; }

/* ── SOCIAL PROOF ── */
.testimonials {
  background: var(--green-dark);
  padding: 100px 5%;
}
.testimonials .section-label { color: var(--green-accent); }
.testimonials .section-title { color: var(--white); }
.testi-grid {
  max-width: 1100px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(78,185,116,0.2);
  border-radius: 12px; padding: 32px 28px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.8;
  color: rgba(200,168,75,0.25);
  position: absolute; top: 20px; left: 20px;
  pointer-events: none;
}
.testi-text { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.testi-role { font-size: 0.78rem; color: var(--green-accent); }

/* ── GUEST SPEAKERS BANNER ── */
.guests-banner {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 36px 5%;
}
.guests-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.guests-icon {
  font-size: 2.8rem; flex-shrink: 0;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.35);
  width: 70px; height: 70px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.guests-text {
  display: flex; flex-direction: column; gap: 6px;
}
.guests-text strong {
  font-size: 1.05rem; font-weight: 700; color: var(--gold-light);
}
.guests-text span {
  font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.6;
}

@media (max-width: 900px) {
  .guests-banner-inner { flex-direction: column; text-align: center; }
}
.photo-strip {
  display: grid; grid-template-columns: 1fr 1fr; height: 460px;
}
.photo-strip-img { overflow: hidden; }
.photo-strip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.photo-strip-img:hover img { transform: scale(1.03); }

/* ── EVENT DATE BANNER ── */
.event-date-banner {
  max-width: 580px; margin: 40px auto 0;
  background: linear-gradient(135deg, var(--green-dark), #0d2a1a);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 14px; padding: 24px 32px;
  box-shadow: 0 8px 32px rgba(13,51,32,0.2);
}
.event-date-inner {
  display: flex; align-items: center; gap: 20px;
}
.event-date-icon {
  font-size: 2.2rem; flex-shrink: 0;
  background: rgba(200,168,75,0.12);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,168,75,0.3);
}
.event-date-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 4px;
}
.event-date-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); line-height: 1.2;
}
.event-date-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 4px;
}

/* ── PRICING ── */
.pricing {
  background: var(--white);
  padding: 100px 5%;
  text-align: center;
}
.pricing-card {
  max-width: 580px; margin: 60px auto 0;
  background: var(--green-dark);
  border-radius: 20px; padding: 56px 48px;
  box-shadow: 0 24px 72px rgba(13,51,32,0.25);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-light), var(--gold));
}
.pricing-label {
  background: rgba(200,168,75,0.15); border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; display: inline-block; margin-bottom: 28px;
}
.price-wrapper { margin: 16px 0 32px; }
.price-old { color: rgba(255,255,255,0.4); text-decoration: line-through; font-size: 1rem; margin-bottom: 4px; }
.price-main { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-note { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 8px; }
.price-includes { list-style: none; margin: 0 0 36px; text-align: left; }
.price-includes li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: rgba(255,255,255,0.82); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-includes li:last-child { border-bottom: none; }
.check { color: var(--green-accent); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.pricing-cta {
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--gold), #a8842a);
  color: var(--green-dark); font-weight: 700; font-size: 1.05rem;
  padding: 18px 24px; border-radius: 8px; text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(200,168,75,0.35);
}
.pricing-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,168,75,0.5); }
.pricing-security {
  margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pricing-note-mentorado {
  margin-top: 28px; background: rgba(78,185,116,0.1);
  border: 1px solid rgba(78,185,116,0.25); border-radius: 10px; padding: 16px 20px;
  font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.pricing-note-mentorado strong { color: var(--green-accent); }

/* ── GUARANTEE ── */
.guarantee {
  background: var(--cream-warm);
  padding: 80px 5%;
}
.guarantee-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.guarantee-badge {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-bright), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 28px;
  box-shadow: 0 8px 28px rgba(45,138,80,0.3);
}
.guarantee h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--green-dark); margin-bottom: 18px; }
.guarantee p { font-size: 0.95rem; line-height: 1.75; color: #4a5a50; }

/* ── FAQ ── */
.faq { background: var(--white); padding: 100px 5%; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 52px; }
.faq-item {
  border-bottom: 1px solid #e8e0d4;
  overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.98rem;
  color: var(--green-dark); padding: 22px 40px 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--green-bright);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.9rem; line-height: 1.72; color: #5a6a60;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(160deg, var(--green-dark) 0%, #091a10 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(45,138,80,0.2), transparent 70%);
  pointer-events: none;
}
.final-cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.final-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 20px; }
.final-cta p { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.72; margin-bottom: 40px; }
.final-cta .hero-cta { font-size: 1.05rem; }

/* ── CONTACT ── */
.contact {
  background: var(--cream-warm);
  padding: 80px 5%;
  text-align: center;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-bright), var(--gold), var(--green-light));
}
.contact-inner { max-width: 800px; margin: 0 auto; }
.contact .section-title { margin: 0 auto 16px; }
.contact-subtitle {
  font-size: 1rem; color: #5a6a60; line-height: 1.65; margin-bottom: 48px;
}
.contact-cards {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.contact-card {
  background: var(--white);
  border-radius: 14px; padding: 32px 40px;
  border-bottom: 4px solid var(--green-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  min-width: 220px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-bright); font-weight: 600; margin-bottom: 8px;
}
.contact-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--green-dark);
}

/* ── FOOTER ── */
footer {
  background: #050e08; padding: 32px 5%; text-align: center;
}
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.3); line-height: 1.7; }
footer a { color: rgba(78,185,116,0.7); text-decoration: none; }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wapPulse 2.8s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 32px; height: 32px; flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--green-dark);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1; transform: translateX(0);
}

@keyframes wapPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 48px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .about-duo { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .modules { grid-template-columns: 1fr; }
  .pain-grid, .testi-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-img { height: 260px; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .event-date-inner { flex-direction: column; text-align: center; }
  .contact-cards { flex-direction: column; align-items: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content-wrap > * {
  animation: fadeUp 0.7s both;
}
.hero-content-wrap > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content-wrap > *:nth-child(2) { animation-delay: 0.25s; }
.hero-content-wrap > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content-wrap > *:nth-child(4) { animation-delay: 0.55s; }
.hero-content-wrap > *:nth-child(5) { animation-delay: 0.65s; }

.pulse {
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(200,168,75,0.35); }
  50% { box-shadow: 0 8px 52px rgba(200,168,75,0.65); }
}