/* ==========================================================================
   LSN — Learning Support Network
   ========================================================================== */

:root {
  --navy: #0a1420;
  --navy-2: #0f1c2c;
  --navy-3: #142337;
  --cream: #f8f3e9;
  --cream-2: #f1e9d8;
  --gold: #c9a24a;
  --gold-light: #e6cd8f;
  --gold-dark: #a3812f;
  --wine: #7a1f2b;
  --wine-dark: #591420;
  --ink: #1e1a14;
  --warm-gray: #6f6a5e;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-script: 'Alex Brush', cursive;

  --container-w: 1220px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, .brand-name { font-family: var(--font-serif); font-weight: 600; }

::selection { background: var(--gold); color: var(--navy); }

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.gold-text {
  background: linear-gradient(100deg, #e9d29d 0%, var(--gold) 45%, #fff2c9 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-rule {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 10px auto 12px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}
.eyebrow-dark { color: var(--wine); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .3px;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-wine {
  background: linear-gradient(180deg, #8a2534, var(--wine) 60%, var(--wine-dark));
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(122,31,43,.6);
}
.btn-wine:hover { box-shadow: 0 14px 28px -8px rgba(122,31,43,.75); }

.btn-outline-gold {
  background: rgba(255,255,255,.03);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

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

.btn-whatsapp {
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 70%, var(--gold-dark));
  color: var(--navy);
  padding: 11px 22px;
  box-shadow: 0 8px 20px -8px rgba(201,162,74,.7);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,20,32,.75), rgba(10,20,32,0));
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(10,20,32,.96);
  height: 74px;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { color: var(--white); font-size: 22px; letter-spacing: 1px; }
.brand-sub { color: var(--gold-light); font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; font-family: var(--font-sans); font-weight: 600; }

.main-nav ul { display: flex; align-items: center; gap: 22px; }
.nav-link {
  color: #eae3d3;
  font-size: 13.5px;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: .2px;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent; border: none;
  padding: 8px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--gold-light);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 84vw);
  height: 100vh;
  background: var(--navy);
  z-index: 200;
  padding: 100px 32px 40px;
  transition: right .4s cubic-bezier(.2,.8,.3,1);
  overflow-y: auto;
  border-left: 1px solid rgba(201,162,74,.25);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.mobile-link { color: var(--cream); font-size: 17px; font-weight: 600; }
.mobile-link:hover { color: var(--gold-light); }

.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 88% 15%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,10,16,.98) 0%, rgba(6,10,16,.94) 40%, rgba(6,10,16,.6) 62%, rgba(6,10,16,.42) 100%),
    linear-gradient(0deg, rgba(6,10,16,.92), rgba(6,10,16,0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 110px;
  flex: 1;
}

.hero-text { max-width: 620px; }

.hero-text .eyebrow { letter-spacing: 6px; }

.hero h1 {
  font-size: clamp(46px, 7vw, 84px);
  line-height: .98;
  margin: 0 0 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-desc {
  font-size: 18px;
  color: #ece6d8;
  max-width: 460px;
  margin: 0 0 22px;
  font-weight: 400;
}

.hero-concepts {
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 34px;
}
.hero-concepts span { color: rgba(230,205,143,.5); margin: 0 4px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-script {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 30px;
  line-height: 1.35;
  text-align: right;
  margin: 20px 0 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
  flex-shrink: 0;
}

.hero-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(230,205,143,.22);
  padding: 20px 0;
}
.hero-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-tags {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #cfc7b3;
  margin: 0;
}
.hero-tags span { color: var(--gold); margin: 0 8px; }

.hero-mentor {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  margin: 0;
  color: var(--white);
}
.hero-mentor span {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}

/* ==========================================================================
   A QUIÉN SERVIMOS
   ========================================================================== */
.servimos { background: var(--cream); padding: 100px 0 90px; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 14px;
  color: var(--navy);
}
.section-sub { color: var(--warm-gray); font-size: 16px; margin: 0; }

.servimos-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.servimos-card { text-align: center; }

.servimos-photo {
  width: 108px; height: 108px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--gold), 0 14px 26px -12px rgba(20,20,10,.35);
  transition: transform .35s ease, box-shadow .35s ease;
}
.servimos-card:hover .servimos-photo { transform: translateY(-6px) scale(1.03); box-shadow: 0 0 0 1.5px var(--gold), 0 22px 32px -14px rgba(20,20,10,.45); }
.servimos-photo img { width: 100%; height: 100%; object-fit: cover; }

.servimos-card h3 {
  font-size: 17.5px;
  margin: 0;
  color: var(--navy);
}
.servimos-card p {
  font-size: 13px;
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   ESTADÍSTICAS
   ========================================================================== */
.stats { position: relative; color: var(--white); overflow: hidden; }
.stats-bg { position: absolute; inset: 0; }
.stats-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,14,22,.95) 0%, rgba(10,17,26,.88) 45%, rgba(10,17,26,.9) 100%);
}
.stats-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0;
}
.stats-script {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 32px;
  line-height: 1.3;
  margin: 0;
}
.stats-grid {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 90px;
}
.stat-number { font-family: var(--font-serif); font-size: 30px; font-weight: 700; color: var(--white); }
.stat-label { font-size: 11.5px; color: #c8c0ad; max-width: 100px; line-height: 1.3; }

.stats-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  text-align: right;
  margin: 0;
  color: #f1ead9;
}

/* ==========================================================================
   NUESTRAS EXPERIENCIAS
   ========================================================================== */
.experiencias { background: var(--white); padding: 100px 0; }

.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.exp-card {
  text-align: center;
  padding: 34px 18px;
  border-radius: 14px;
  border: 1px solid #ece3d0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px -20px rgba(122,31,43,.25);
  border-color: var(--gold);
}
.exp-icon { margin: 0 auto 16px; }
.exp-card h3 { font-size: 18px; margin: 0; color: var(--navy); }
.exp-card p { font-size: 13.5px; color: var(--warm-gray); margin: 0; }

.center-cta { text-align: center; }

/* ==========================================================================
   MÉTODO LSN
   ========================================================================== */
.metodo { background: var(--navy); color: var(--white); padding: 110px 0; }
.metodo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.metodo-script {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--gold-light);
  margin: -8px 0 18px;
}
.metodo-desc { font-size: 17px; color: #d6cfbe; line-height: 1.65; max-width: 460px; margin: 0 0 40px; }

.metodo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.metodo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 8px;
  border: 1px solid rgba(201,162,74,.3);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--gold-light);
  transition: background .3s ease, transform .3s ease;
}
.metodo-step:hover { background: rgba(201,162,74,.08); transform: translateY(-4px); }

.metodo-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.metodo-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.85); }
.metodo-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10,20,32,.1), rgba(10,20,32,.75));
}
.metodo-words {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  color: var(--gold-light);
  letter-spacing: .5px;
}

/* ==========================================================================
   ALIADOS / TESTIMONIOS / LESLY
   ========================================================================== */
.respaldo { background: var(--cream-2); padding: 100px 0; }
.respaldo-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 1fr;
  gap: 46px;
  align-items: start;
}
.respaldo-block { }
.block-title { font-size: 26px; margin: 0 0 8px; color: var(--navy); }
.block-sub { color: var(--warm-gray); font-size: 14.5px; margin: 0 0 26px; }

.logos-row { display: flex; flex-direction: column; gap: 16px; }
.logo-placeholder {
  background: var(--white);
  border: 1px dashed #cdbf9c;
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.logo-name { font-family: var(--font-serif); font-weight: 700; font-size: 19px; color: var(--navy); }
.logo-tag { font-size: 12px; color: var(--warm-gray); }

.testimonial-carousel { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: 0 20px 40px -28px rgba(20,20,10,.3); }
.testimonial-track { position: relative; min-height: 210px; }
.testimonial-slide {
  margin: 0;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: fadeIn .5s ease;
}
.testimonial-slide.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity: 1; transform: translateY(0);} }
.testimonial-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-text { font-family: var(--font-serif); font-size: 18px; font-style: italic; line-height: 1.5; color: var(--ink); margin: 0; }
.testimonial-slide footer { font-size: 13px; font-weight: 700; color: var(--navy); }
.testimonial-slide footer span { font-weight: 500; color: var(--warm-gray); }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.t-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--wine);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.t-arrow:hover { background: var(--gold); color: var(--white); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: #d8cba0; border: none; padding: 0; }
.t-dot.active { background: var(--wine); }

.lesly-block { text-align: left; }
.lesly-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px -22px rgba(20,20,10,.4);
}
.lesly-photo img { width: 100%; height: 100%; object-fit: cover; }
.lesly-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(10,20,32,0) 40%, rgba(10,20,32,.72));
}
.lesly-words {
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0;
}
.lesly-desc { font-size: 15.5px; color: var(--warm-gray); line-height: 1.6; margin: 0 0 26px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { position: relative; background: var(--navy); color: #cfc7b3; overflow: hidden; }
.footer-bg { position: absolute; inset: 0; opacity: .18; }
.footer-bg img { width: 100%; height: 100%; object-fit: cover; }
.footer-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 50px;
  padding: 80px 0 50px;
}
.footer-col h3 { font-family: var(--font-sans); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin: 0 0 18px; }
.footer-brand .brand-name { color: var(--white); }
.footer-quote { font-family: var(--font-serif); font-style: italic; font-size: 19px; color: #ece6d8; margin: 22px 0 26px; max-width: 340px; line-height: 1.5; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(201,162,74,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  transition: background .25s ease, color .25s ease;
}
.social-row a:hover { background: var(--gold); color: var(--navy); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.footer-contact-list svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-form { display: flex; flex-direction: column; gap: 10px; max-width: 320px; }
.footer-form input, .footer-form textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,74,.3);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 13.5px;
  resize: none;
}
.footer-form input::placeholder, .footer-form textarea::placeholder { color: #8c8672; }
.footer-form input:focus, .footer-form textarea:focus { outline: none; border-color: var(--gold); }

.footer-phrase { display: flex; align-items: flex-start; justify-content: flex-end; text-align: right; }
.footer-script { font-family: var(--font-script); font-size: 30px; color: var(--gold-light); line-height: 1.3; margin: 0; }

.footer-bottom { border-top: 1px solid rgba(201,162,74,.22); position: relative; z-index: 1; }
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 0;
  font-size: 12.5px;
  color: #a89f8a;
}
.footer-bottom a:hover { color: var(--gold-light); }
.footer-credit a { color: var(--gold-light); font-weight: 600; }
.footer-credit a:hover { color: var(--gold); }

/* ==========================================================================
   FLOATING ELEMENTS
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,.45);
  z-index: 90;
  transition: transform .25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.video-modal {
  position: fixed; inset: 0;
  background: rgba(6,10,16,.85);
  display: flex; align-items: center; justify-content: center;
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 20px;
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-modal-inner {
  background: var(--navy-3);
  border: 1px solid rgba(201,162,74,.35);
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 460px;
  text-align: center;
  position: relative;
  color: var(--cream);
}
.video-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent; border: none;
  color: var(--gold-light); font-size: 18px;
}
.video-modal-body p:first-child { font-family: var(--font-serif); font-size: 22px; margin: 0 0 10px; }
.video-modal-note { font-size: 13.5px; color: #a89f8a; margin: 0; }

.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .servimos-grid { grid-template-columns: repeat(4, 1fr); row-gap: 40px; }
  .experiencias-grid { grid-template-columns: repeat(3, 1fr); }
  .respaldo-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-phrase { justify-content: flex-start; text-align: left; }
}

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .btn-whatsapp span { display: none; }

  .hero-content { flex-direction: column; gap: 30px; padding-bottom: 70px; }
  .hero-script { text-align: left; font-size: 24px; }
  .hero h1 { font-size: clamp(40px, 11vw, 60px); }

  .stats-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; padding: 50px 0; }
  .stats-grid { flex-wrap: wrap; justify-content: center; }
  .stats-quote { text-align: center; }

  .metodo-inner { grid-template-columns: 1fr; }
  .metodo-photo { order: -1; aspect-ratio: 16/10; }

  .experiencias-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .servimos-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .servimos-photo { width: 92px; height: 92px; }
  .experiencias-grid { grid-template-columns: 1fr; }
  .metodo-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-footer-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .hero-mentor { text-align: left; }
  .footer-bottom-inner { flex-direction: column; text-align: center; align-items: center; }
  .lesly-photo { aspect-ratio: 16/11; }
}
