/* =========================================================
   Valeria Saez - CSS ordenado y sin duplicados
   Última limpieza: se consolidan estilos repetidos de About,
   Programas, Stats, Detalle, Preloader y Responsive.
========================================================= */

/* =========================================================
   01. Variables globales
========================================================= */

:root {
  --cream: #fbf8f2;
  --ivory: #fffdf9;
  --sand: #efe4dc;
  --sand-2: #e0cfc7;
  --blush: #c99c91;
  --blush-soft: #ead8d1;
  --slate: #2f414b;
  --slate-2: #5d6970;
  --ink: #20272c;
  --muted: #687176;
  --line: #e8ded8;
  --white: #ffffff;
  --color-white: #ffffff;

  --shadow: 0 22px 60px rgba(47, 65, 75, .13);
  --soft-shadow: 0 14px 36px rgba(47, 65, 75, .10);
  --radius: 26px;
  --radius-full: 999px;
  --transition-normal: .25s ease;

  --condensed: 'Barlow Condensed', Arial, sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Great Vibes', 'Brush Script MT', cursive;
  --sans: 'Poppins', Arial, sans-serif;
}

/* =========================================================
   02. Reset base y utilidades
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  font-family: var(--sans);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

main {
  background: var(--ivory);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.section-blush {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #f5eee9, #fbf7f2);
}

.section-off {
  background: linear-gradient(180deg, #fffaf5, #fbf6ef);
}

.section-bg-soft {
  background:
    radial-gradient(circle at 84% 22%, rgba(236, 221, 212, .86), transparent 31%),
    linear-gradient(180deg, #fffcf8 0%, #fbf8f2 100%);
}

.hero,
.intro-benefits,
.about,
.stats-wrap,
.focus,
.programs,
.testimonials,
.resources,
.contact {
  position: relative;
}

.hero,
.intro-benefits,
.about,
.focus,
.programs,
.testimonials,
.resources {
  overflow: hidden;
  isolation: isolate;
}

.hero-grid,
.intro-grid,
.about-grid,
.stats-card,
.section-heading,
.focus-grid,
.program-panel,
.testimonial-grid,
.resources-grid,
.contact-cards,
.form-shell {
  position: relative;
  z-index: 3;
}

/* =========================================================
   03. Botones y textos comunes
========================================================= */

.eyebrow {
  margin: 0 0 6px;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #526066;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.nav-cta {
  padding: 13px 24px;
  background: #1f2b31;
  color: #ffffff;
  box-shadow: 0 9px 24px rgba(31, 43, 49, .22);
}

.btn {
  padding: 15px 25px;
}

.btn-dark {
  background: #1f2b31;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 43, 49, .22);
}

.btn-blush {
  background: #d8b9ad;
  color: #29363c;
  box-shadow: 0 14px 30px rgba(201, 156, 145, .28);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin: 4px 0 12px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #27333a;
}

.section-heading p {
  margin: 0;
  color: #747c80;
  font-size: 13px;
}

/* =========================================================
   04. Header y navegación
========================================================= */

.top-strip {
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c9b3aa;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 10px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #5e646f;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232, 222, 216, .6);
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.brand span {
  color: #ffffff;
}

.small-script {
  font-family: var(--script);
  font-size: 32px;
  color: #ffffff;
  white-space: nowrap;
}

.nav-logo {
  display: block;
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
}

.nav-links a {
  color: #ffffff;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--blush);
  transform: scaleX(0);
  transition: .25s;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: var(--radius-full);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .35s ease;
}

.menu-toggle.open {
  transform: none;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) scaleX(.6);
  opacity: .7;
}

.menu-toggle.open span:nth-child(2) {
  opacity: .7;
  transform: scaleX(.5);
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) scaleX(.6);
  opacity: .7;
}

/* =========================================================
   05. Divisores SVG / ondas
========================================================= */

.svg-divider {
  position: absolute;
  left: -1px;
  right: -1px;
  height: 132px;
  pointer-events: none;
  line-height: 0;
  z-index: 2;
}

.svg-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.svg-divider .wave-main {
  fill: var(--ivory);
}

.svg-divider .wave-shadow {
  fill: var(--sand);
  opacity: .45;
}

.hero-bottom-wave {
  bottom: -2px;
  height: 150px;
}

.hero-bottom-wave .wave-main {
  fill: #fffdf9;
}

.hero-bottom-wave .wave-shadow {
  fill: #efe4dc;
  opacity: .55;
}

.intro-bottom-wave {
  bottom: -1px;
  height: 138px;
}

.intro-bottom-wave .wave-main {
  fill: #f5eee9;
}

.intro-bottom-wave .wave-shadow {
  fill: #f5eee9;
  opacity: .22;
}

.about-bottom-wave {
  bottom: -2px;
  height: 140px;
}

.about-bottom-wave .wave-main {
  fill: #fffaf5;
}

.about-bottom-wave .wave-shadow {
  fill: #ead8d1;
  opacity: .4;
}

.focus-bottom-wave {
  bottom: -2px;
  height: 134px;
}

.focus-bottom-wave .wave-main {
  fill: #fbf6ef;
}

.focus-bottom-wave .wave-shadow {
  fill: #ead8d1;
  opacity: .38;
}

.programs-bottom-wave {
  bottom: -2px;
  height: 130px;
}

.programs-bottom-wave .wave-main {
  fill: #fffaf5;
}

.programs-bottom-wave .wave-shadow {
  fill: #ead8d1;
  opacity: .36;
}

.testimonials-bottom-wave {
  bottom: -2px;
  height: 138px;
}

.testimonials-bottom-wave .wave-main {
  fill: #2e414a;
}

.testimonials-bottom-wave .wave-shadow {
  fill: #415762;
  opacity: .52;
}

.resources-top-wave {
  top: -2px;
  height: 82px;
  opacity: .98;
}

.resources-top-wave .wave-main {
  fill: #fffaf5;
}

.resources-top-wave .wave-shadow {
  fill: #efe4dc;
  opacity: .28;
}

.resources-bottom-wave {
  bottom: -2px;
  height: 126px;
}

.resources-bottom-wave .wave-main {
  fill: #fffaf5;
}

.resources-bottom-wave .wave-shadow {
  fill: #405660;
  opacity: .25;
}

/* =========================================================
   06. Hero
========================================================= */

.hero {
  min-height: 650px;
  padding: 82px 0 158px;
  background:
    radial-gradient(circle at 86% 18%, rgba(232, 214, 205, .9), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(239, 228, 220, .72), transparent 28%),
    linear-gradient(180deg, #fffcf8 0%, #fbf7f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 74px;
}

.script-logo {
  margin: 0 0 12px;
  font-family: var(--script);
  font-size: 76px;
  line-height: .9;
  color: #34454d;
}

.hero h1 {
  margin: 14px 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.16;
  color: #20262b;
}

.hero h1 span {
  color: #c6958d;
  font-weight: 700;
}

.hero-sub {
  margin: 0 0 26px;
  font-weight: 800;
  color: #2b363b;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  border-radius: 0 0 42% 42%;
  filter: drop-shadow(0 30px 35px rgba(69, 75, 78, .08));
}

.brush-blob {
  position: absolute;
  width: 470px;
  height: 370px;
  right: 20px;
  top: 20px;
  background: #ead9d1;
  border-radius: 62% 38% 45% 55%;
  opacity: .75;
}

.graph-small {
  position: absolute;
  width: 190px;
  top: 38px;
  left: 55px;
  stroke: #b8aea8;
  fill: none;
  stroke-width: 1.3;
  opacity: .7;
}

.doodle-left {
  position: absolute;
  left: -25px;
  bottom: 72px;
  width: 230px;
  color: #9e9996;
  opacity: .28;
}

.doodle-left svg {
  stroke: currentColor;
  fill: none;
}

.doodle-left text {
  font-family: var(--serif);
  fill: currentColor;
  stroke: 0;
  font-size: 20px;
}

.math-note {
  position: absolute;
  color: #cbc2bc;
  font-family: var(--serif);
  opacity: .58;
}

.n1 {
  top: 137px;
  left: 54%;
}

.n2 {
  left: 9%;
  bottom: 122px;
}

.n3 {
  left: 45%;
  top: 235px;
}

.wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 88px;
  background: var(--ivory);
  clip-path: ellipse(75% 60% at 50% 85%);
}

/* =========================================================
   07. Beneficios
========================================================= */

.intro-benefits {
  padding: 62px 0 144px;
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      #fffdf9 48%,
      #f8f2ee 78%,
      #f5eee9 100%
    );
}

.intro-benefits::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 28px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(224, 207, 199, .55);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(239, 228, 220, .16),
    0 0 0 52px rgba(239, 228, 220, .08);
  z-index: 1;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.intro-title {
  min-height: 230px;
  padding-right: 34px;
}

.intro-title h2 {
  margin: 0 0 22px;
  font-family: var(--condensed);
  font-size: 38px;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #27333a;
}

.intro-title h2 span {
  color: #c99c91;
}

.intro-title p,
.mini-card p {
  margin: 0;
  font-size: 13px;
  color: #687176;
}

.mini-card {
  min-height: 230px;
  padding: 34px 30px 36px;
  border: 1px solid rgba(232, 222, 216, .9);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow:
    0 18px 35px rgba(47, 65, 75, .08),
    0 35px 80px rgba(47, 65, 75, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.mini-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 156, 145, .42);
  box-shadow:
    0 24px 45px rgba(47, 65, 75, .12),
    0 42px 90px rgba(47, 65, 75, .12);
}

.mini-card h3,
.focus-card h3,
.contact-card h3 {
  margin: 0 0 12px;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.line-icon,
.focus-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f4e6df, #fff8f4);
  color: #bd968e;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 26px rgba(201, 156, 145, .18);
}

/* =========================================================
   08. Sobre mí
========================================================= */

.about {
  padding: 130px 0 190px;
  background:
    radial-gradient(circle at 15% 42%, rgba(201, 156, 145, .16), transparent 26%),
    radial-gradient(circle at 82% 32%, rgba(255, 255, 255, .76), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(234, 216, 209, .42), transparent 24%),
    linear-gradient(180deg, #f5eee9 0%, #f8f2ee 48%, #fbf7f2 100%);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 28%, rgba(255, 255, 255, .42), transparent 20%),
    radial-gradient(circle at 88% 58%, rgba(201, 156, 145, .10), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.35fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
}

.about-photo {
  position: relative;
  display: grid;
  place-items: center;
}

.about-photo::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(234, 216, 209, .42);
  filter: blur(26px);
  z-index: 0;
  transform: translate(-28px, 28px);
}

.paper-card {
  position: absolute;
  width: 355px;
  height: 300px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 250, 245, .52));
  transform: rotate(-3deg) translate(-18px, 8px);
  box-shadow:
    0 24px 50px rgba(137, 118, 106, .14),
    inset 0 1px 0 rgba(255, 255, 255, .7);
}

.about-photo img {
  position: relative;
  z-index: 2;
  width: 360px;
  border-radius: 28px;
  box-shadow:
    0 26px 55px rgba(47, 65, 75, .16),
    0 48px 95px rgba(47, 65, 75, .12);
}

.about-copy {
  position: relative;
  width: 100%;
  max-width: 760px;
  padding: 42px 56px;
  border-radius: 30px;
  background: rgba(255, 253, 249, .54);
  border: 1px solid rgba(232, 222, 216, .72);
  box-shadow:
    0 20px 45px rgba(47, 65, 75, .07),
    inset 0 1px 0 rgba(255, 255, 255, .65);
  backdrop-filter: blur(8px);
}

.about-copy::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 56px;
  width: 54px;
  height: 2px;
  border-radius: var(--radius-full);
  background: #c99c91;
  opacity: .55;
}

.about-copy .eyebrow {
  margin-top: 12px;
  margin-bottom: 18px;
  color: #5e646f;
}

.about-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  color: #20272c;
}

.about-copy p {
  margin: 0 0 15px;
  color: #3f4b51;
  font-size: 15.5px;
  line-height: 1.72;
}

.about-copy .handwritten {
  display: inline-block;
  margin-top: 24px !important;
  font-family: var(--script);
  font-size: clamp(42px, 3.4vw, 56px) !important;
  line-height: .95 !important;
  letter-spacing: .01em;
  color: #c5948d !important;
  transform: rotate(-1deg);
}

.about-copy .handwritten::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 0 0 18px;
  opacity: .65;
}

.dot-grid {
  position: absolute;
  right: 14%;
  top: 42%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#d2aaa2 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .48;
}

.formula-bg {
  position: absolute;
  left: 9%;
  top: 34%;
  font-family: var(--serif);
  font-size: 22px;
  color: #c9c0bb;
  opacity: .34;
}

/* =========================================================
   09. Estadísticas
========================================================= */

.stats-wrap {
  margin-top: -92px;
  padding: 8px 0 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 216, 209, .28), transparent 34%),
    linear-gradient(180deg, #fffaf5 0%, #fff7f0 100%);
  z-index: 5;
}

.stats-card {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: #ffffff;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #707986 0%, #5e646f 48%, #4f5965 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 28px 55px rgba(47, 65, 75, .20),
    0 48px 95px rgba(47, 65, 75, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .14) 0%,
      rgba(255, 255, 255, .04) 35%,
      rgba(255, 255, 255, 0) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.stat {
  position: relative;
  z-index: 2;
  padding: 42px 24px 38px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: rgba(255, 255, 255, .22);
}

.stat:hover {
  background: rgba(255, 255, 255, .025);
}

.stat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 18px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #f1ded8;
  font-size: 29px;
  line-height: 1;
  vertical-align: middle;
  background: rgba(255, 255, 255, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 14px 24px rgba(31, 43, 49, .16);
  transition: transform .25s ease;
}

.stat:hover .stat-icon {
  transform: translateY(-3px);
}

.stat-icon::before {
  display: block;
  line-height: 1;
  margin: 0;
  transform: translateY(0);
}

.stat-icon.fa-graduation-cap::before {
  transform: translateY(1px);
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
  text-shadow: 0 8px 20px rgba(31, 43, 49, .18);
}

.stat p {
  margin: 12px 0 0;
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 1.05;
  color: #ffffff;
  opacity: .96;
}

/* =========================================================
   10. Enfoque
========================================================= */

.focus {
  padding: 28px 0 150px;
  background: #fffaf5;
}

.focus::before,
.focus::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(234, 219, 213, .8);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(234, 219, 213, .16),
    0 0 0 48px rgba(234, 219, 213, .08);
  z-index: 1;
}

.focus::before {
  left: -85px;
  top: 62px;
}

.focus::after {
  right: -92px;
  bottom: 118px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.focus-card {
  grid-column: span 2;
  min-height: 285px;
  padding: 36px 30px 38px;
  border: 1px solid rgba(232, 222, 216, .9);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  text-align: center;
  box-shadow:
    0 18px 35px rgba(47, 65, 75, .08),
    0 35px 80px rgba(47, 65, 75, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.focus-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 156, 145, .42);
  box-shadow:
    0 24px 45px rgba(47, 65, 75, .12),
    0 42px 90px rgba(47, 65, 75, .12);
}

.focus-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.focus-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.focus-card span {
  display: block;
  margin-bottom: 16px;
  text-align: center;
  color: #c39a91;
  font-family: var(--serif);
  font-size: 20px;
}

.focus-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.15;
}

.focus-card p {
  margin: 0;
  color: #697277;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   11. Cursos y mentorías
========================================================= */

.programs {
  padding: 92px 0 148px;
  background:
    radial-gradient(circle at 18% 32%, rgba(239, 228, 220, .58), transparent 24%),
    linear-gradient(180deg, #fbf6ef 0%, #fffaf5 100%);
}

.programs::before,
.programs::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  z-index: 1;
}

.programs::before {
  left: -120px;
  top: 95px;
  border: 1px solid rgba(234, 219, 213, .76);
  box-shadow:
    0 0 0 26px rgba(234, 219, 213, .15),
    0 0 0 58px rgba(234, 219, 213, .08);
}

.programs::after {
  right: -150px;
  bottom: 82px;
  border: 1px solid rgba(234, 219, 213, .62);
  box-shadow: 0 0 0 38px rgba(234, 219, 213, .08);
  opacity: .65;
}

.program-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 415px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #ffffff;
  box-shadow:
    0 28px 60px rgba(47, 65, 75, .11),
    0 45px 100px rgba(47, 65, 75, .10);
  overflow: hidden;
}

.program-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 20px;
  padding: 64px 54px;
}

.program-left {
  grid-template-columns: 190px 1fr;
  border-right: 1px solid var(--line);
}

.program-right {
  grid-template-columns: 1fr 210px;
}

.program-asset {
  filter: drop-shadow(0 18px 22px rgba(54, 48, 44, .10));
  animation: floatAsset 5.5s ease-in-out infinite;
}

.laptop {
  animation-delay: 1.2s;
}

.card-kicker {
  margin: 0 0 8px;
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c4978f;
}

.program-card h3 {
  margin: 0;
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 32px;
  line-height: 1.04;
}

.program-card h4 {
  margin: 8px 0 16px;
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 15px;
}

.program-card p,
.program-card li {
  color: #60696f;
  font-size: 14px;
  line-height: 1.7;
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.program-card li {
  position: relative;
  padding-left: 25px;
  margin: 9px 0;
}

.program-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ead5ce;
  color: #7c5e59;
  font-size: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

/* Layout de 3 tarjetas: cursos + sesión + mentoría */
.program-panel-three {
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
  padding: 36px;
  overflow: visible;
}

.program-panel-three .program-option {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 540px;
  padding: 30px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  border: 1px solid rgba(219, 190, 180, .7);
  box-shadow:
    0 22px 55px rgba(49, 39, 34, .08),
    0 36px 90px rgba(47, 65, 75, .06);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.program-panel-three .program-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 202, 192, .14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.program-panel-three .program-option:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 156, 145, .42);
  box-shadow:
    0 28px 65px rgba(49, 39, 34, .12),
    0 44px 100px rgba(47, 65, 75, .10);
}

.program-panel-three .program-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-option-img {
  width: 100%;
  max-width: 152px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 22px;
  filter: drop-shadow(0 18px 28px rgba(50, 39, 33, .12));
}

.program-panel-three .card-kicker {
  margin-bottom: 12px;
  font-size: 14px;
}

.program-panel-three .program-option h3 {
  min-height: 70px;
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.08;
}

.program-panel-three .program-option h4 {
  min-height: 34px;
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.25;
}

.program-panel-three .program-option p {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.program-panel-three .program-option ul {
  margin: 0 0 16px;
}

.program-panel-three .program-option li {
  margin: 5px 0;
  font-size: 14.5px;
  line-height: 1.4;
}

.program-panel-three .program-option .btn {
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  padding: 15px 20px;
  text-align: center;
  white-space: normal;
}

.program-panel-three .program-session {
  background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  border-color: rgba(201, 156, 145, .38);
  transform: translateY(-10px);
}

.program-panel-three .program-session::after {
  content: "♡";
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 42px;
  color: rgba(194, 141, 132, .22);
  line-height: 1;
}

.program-panel-three .program-session:hover {
  transform: translateY(-16px);
}

/* =========================================================
   12. Testimonios
========================================================= */

.testimonials {
  padding: 76px 0 142px;
  background: #fffaf5;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 7%;
  top: 52px;
  width: 82px;
  height: 82px;
  background-image: radial-gradient(#d8b5ad 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .38;
  z-index: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.testimonial {
  position: relative;
  min-height: 245px;
  padding: 42px 30px 28px;
  border: 1px solid rgba(232, 222, 216, .9);
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow:
    0 18px 35px rgba(47, 65, 75, .08),
    0 35px 80px rgba(47, 65, 75, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.testimonial:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 156, 145, .42);
  box-shadow:
    0 24px 45px rgba(47, 65, 75, .12),
    0 42px 90px rgba(47, 65, 75, .12);
}

.avatar {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(#f6efe9, #e5d5cc);
  border: 5px solid #ffffff;
  box-shadow: 0 6px 18px rgba(66, 57, 52, .12);
}

.quote {
  position: absolute;
  top: 18px;
  left: 24px;
  color: #d7bab1;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.testimonial p {
  margin: 12px 0 18px;
  font-size: 13px;
  color: #4f5b61;
}

.testimonial strong {
  font-family: var(--condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #344047;
}

.stars {
  margin-top: 12px;
  color: #d6a253;
  letter-spacing: 3px;
  font-size: 13px;
}

/* =========================================================
   13. Recursos / PDFs
========================================================= */

.resources {
  margin-top: -1px;
  padding: 108px 0 142px;
  background:
    radial-gradient(circle at 94% 72%, rgba(255, 255, 255, .08), transparent 19%),
    linear-gradient(112deg, #2f444d 0%, #263942 100%) !important;
  color: #ffffff;
}

.resources::before,
.resources::after {
  display: none;
}

.resources-grid {
  display: grid;
  grid-template-columns: .75fr 1.5fr;
  align-items: center;
  gap: 42px;
  margin-top: 10px;
}

.resources .eyebrow {
  color: #d5c7c0;
}

.resources-copy h2 {
  margin: 8px 0 20px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.16;
  text-transform: none;
  letter-spacing: 0;
}

.resources-copy p {
  max-width: 330px;
  margin: 0;
  color: #d8e0e2;
}

.pdf-stack {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-card {
  position: relative;
  width: 210px;
  height: 300px;
  padding: 28px 22px 20px;
  border: 1px solid #e8d9d1;
  border-radius: 16px;
  background: #fbf7ef;
  color: #243139;
  box-shadow: 0 25px 42px rgba(10, 19, 24, .28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: pdfFloat 5s ease-in-out infinite;
  transition: transform .3s, box-shadow .3s;
}

.pdf-card:hover {
  transform: translateY(-16px) rotate(0deg) !important;
  box-shadow: 0 34px 55px rgba(10, 19, 24, .36);
}

.pdf-one {
  transform: rotate(-4deg) translateX(25px);
  z-index: 1;
}

.pdf-two {
  transform: rotate(1deg);
  z-index: 3;
  animation-delay: .55s;
}

.pdf-three {
  transform: rotate(4deg) translateX(-25px);
  z-index: 2;
  animation-delay: 1.1s;
}

.pdf-tag {
  position: absolute;
  right: -1px;
  top: 18px;
  padding: 8px 10px;
  border-radius: 0 8px 0 8px;
  background: #e25f5e;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.pdf-card small {
  font-weight: 700;
  color: #6a747a;
}

.pdf-card h3 {
  margin: 0;
  font-family: var(--condensed);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 24px;
  line-height: 1.08;
}

.pdf-graphic,
.pdf-checks {
  min-height: 42px;
  font-family: var(--serif);
  font-size: 18px;
  color: #c8b9b0;
}

.download {
  align-self: flex-start;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  background: #1f2b31;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
}

/* =========================================================
   14. Contacto y footer
========================================================= */

.contact {
  padding: 72px 0 80px;
  background: #fffaf5;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.contact-card {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 25px 28px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: .25s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.contact-card > span {
  font-size: 40px;
  color: #c69c93;
}

.contact-card h3 {
  margin-bottom: 4px;
}

.contact-card p {
  margin: 0;
  color: #243139;
  font-weight: 800;
  font-size: 13px;
}

.contact-card small {
  color: #7d8589;
}

.social-card {
  cursor: default;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.social-links a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s ease, transform .2s ease;
}

.social-links a:hover {
  opacity: .75;
  transform: translateY(-1px);
}

.form-shell {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 48px;
  padding: 44px 48px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(47, 65, 75, .09);
}

.form-info h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  text-transform: uppercase;
  color: #27333a;
}

.form-info p {
  margin: 4px 0 24px;
  color: #6e777c;
}

.form-info ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-info li {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  color: #445158;
}

.form-info li span {
  width: 30px;
  color: #c69c93;
  font-size: 25px;
}

.form-info b {
  display: block;
  font-size: 13px;
}

.form-info small {
  display: block;
  color: #748086;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-content: start;
}

.contact-form label span {
  position: absolute;
  clip: rect(0 0 0 0);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ded7d2;
  border-radius: 3px;
  background: #fffdfa;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border .2s, box-shadow .2s;
}

input:focus,
textarea:focus {
  border-color: #c99c91;
  box-shadow: 0 0 0 4px rgba(201, 156, 145, .13);
}

.full {
  grid-column: 1 / -1;
}

.form-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 190px;
  margin-top: 8px;
}

.footer {
  padding: 38px 20px 34px;
  background: #eadfd7;
  text-align: center;
  color: #43535b;
}

.footer .small-script {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 3px;
  color: #5e646f;
  font-size: 40px;
  text-align: center;
}

.footer .footer-logo {
  height: 42px;
  width: auto;
}

.footer span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

.footer small {
  display: block;
  margin-top: 10px;
  color: #bd968e;
  font-size: 19px;
}

/* =========================================================
   15. Página detalle de programas
========================================================= */

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 118px;
  background:
    radial-gradient(circle at 86% 18%, rgba(232, 214, 205, .78), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(239, 228, 220, .58), transparent 28%),
    linear-gradient(180deg, #fffcf8 0%, #fbf7f1 100%);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5e646f;
}

.detail-badge {
  display: inline-flex;
  width: max-content;
  margin: 6px 0 16px;
  padding: 9px 14px;
  border-radius: var(--radius-full);
  background: #ead8d1;
  color: #6f504b;
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.detail-copy .eyebrow {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #526066;
}

.detail-copy h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  color: #20272c;
}

.detail-copy h2 {
  margin: 0 0 20px;
  font-family: var(--condensed);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c6958d;
}

.detail-copy p {
  max-width: 620px;
  margin: 0 0 28px;
  font-family: var(--sans);
  color: #4f5a5f;
  font-size: 15px;
  line-height: 1.85;
}

.detail-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.detail-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.detail-visual img {
  position: relative;
  z-index: 2;
  max-width: min(390px, 92%);
  filter: drop-shadow(0 28px 28px rgba(69, 75, 78, .12));
  animation: floatAsset 5.5s ease-in-out infinite;
}

.detail-blob {
  position: absolute;
  width: 410px;
  height: 310px;
  background: #ead9d1;
  border-radius: 62% 38% 45% 55%;
  opacity: .8;
}

.detail-section {
  padding: 58px 0;
  background: #fffaf5;
}

.detail-summary {
  margin-top: -48px;
  padding-top: 42px;
  padding-bottom: 28px;
  position: relative;
  z-index: 5;
  background: transparent;
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-stat {
  padding: 38px 28px;
  border-radius: 22px;
  background: #5e646f;
  color: #ffffff;
  text-align: center;
  box-shadow:
    0 22px 45px rgba(47, 65, 75, .16),
    0 35px 85px rgba(47, 65, 75, .14);
}

.detail-stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 46px;
  line-height: 1;
}

.detail-stat span {
  display: block;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-card {
  padding: 42px 42px 40px;
  border: 1px solid rgba(232, 222, 216, .9);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  box-shadow:
    0 18px 35px rgba(47, 65, 75, .08),
    0 35px 80px rgba(47, 65, 75, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 156, 145, .42);
  box-shadow:
    0 24px 45px rgba(47, 65, 75, .12),
    0 42px 90px rgba(47, 65, 75, .12);
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.detail-card-number {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 18px;
  color: #c39a91;
}

.detail-card h3 {
  margin: 0 0 18px;
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #27333a;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card li {
  position: relative;
  padding-left: 28px;
  margin: 13px 0;
  font-family: var(--sans);
  color: #60696f;
  font-size: 15px;
  line-height: 1.75;
}

.detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ead5ce;
  color: #7c5e59;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.detail-final {
  padding: 68px 0 86px;
  background:
    radial-gradient(circle at 18% 32%, rgba(239, 228, 220, .46), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #fbf6ef 100%);
}

.detail-final-card,
.detail-empty-card {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  text-align: center;
}

.detail-final-card h2,
.detail-empty-card h1 {
  max-width: 760px;
  margin: 0 auto 26px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: #27333a;
}

.detail-empty {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.detail-empty-card p {
  margin-bottom: 24px;
  color: var(--slate-2);
}

/* =========================================================
   16. Preloader y botones flotantes
========================================================= */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(232, 214, 205, .9), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(239, 228, 220, .72), transparent 28%),
    linear-gradient(180deg, #fffcf8 0%, #fbf7f1 100%);
  color: var(--slate);
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(0);
  transition: opacity .7s ease, visibility .7s ease, backdrop-filter .7s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.preloader-inner {
  width: 100%;
  max-width: 280px;
  padding: 24px 12px;
  text-align: center;
}

.preloader-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 24px;
  background: rgba(201, 156, 145, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(94, 100, 111, .25);
  animation: logoIn .95s cubic-bezier(.35, 0, .25, 1) forwards;
}

.preloader-logo-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201, 156, 145, .6));
}

.preloader-text {
  margin-bottom: 14px;
  color: #5e646f;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  opacity: 0;
  animation: textFade .8s .7s ease forwards;
}

.preloader-bar {
  position: relative;
  width: 100%;
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(201, 156, 145, .28);
  overflow: hidden;
  box-shadow: 0 0 16px rgba(94, 100, 111, .22);
}

.preloader-bar::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 0;
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, rgba(201, 156, 145, 0), rgba(201, 156, 145, .9), rgba(201, 156, 145, 0));
  animation: barShine 1.7s ease-in-out infinite;
}

.preloader-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #c9b3aa, #5e646f);
  animation: barProgress 2s .2s ease-in-out forwards;
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, .5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  animation: whatsappPulse 2s ease-out infinite;
}

.contact-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0 calc(6px + env(safe-area-inset-bottom));
  background: rgba(30, 30, 30, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .18);
}

body.preloader-active .contact-banner,
.preloader:not(.hidden) + .contact-banner {
  display: none !important;
}

.contact-icon-bottom {
  flex: 1;
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.contact-icon-bottom:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, .12);
}

.contact-icon-bottom i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.contact-icon-bottom i.fab.fa-whatsapp {
  font-size: 24px;
}

.contact-icon-bottom i.fa-phone {
  font-size: 20px;
}

.contact-icon-bottom:hover i,
.contact-icon-bottom:focus i {
  transform: scale(1.08);
  background: rgba(255, 255, 255, .08);
}

/* =========================================================
   17. Animaciones
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .15s;
}

.delay-3 {
  transition-delay: .22s;
}

.delay-4 {
  transition-delay: .29s;
}

@keyframes floatAsset {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pdfFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -12px;
  }
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(.84);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes textFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barShine {
  0% {
    left: -15%;
  }

  50% {
    left: 105%;
  }

  100% {
    left: -15%;
  }
}

@keyframes barProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* =========================================================
   18. Responsive
========================================================= */

@media (max-width: 1024px) {
  .whatsapp-float {
    display: none !important;
  }

  .program-panel-three {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .program-panel-three .program-option,
  .program-panel-three .program-session {
    min-height: auto;
    transform: none;
  }

  .program-panel-three .program-option h3,
  .program-panel-three .program-option h4 {
    min-height: auto;
  }

  .program-panel-three .program-option .btn {
    width: fit-content;
  }
}

@media (min-width: 1025px) {
  .contact-banner {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 34px, 760px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    z-index: 60;
    max-height: 0;
    padding: 10px 20px;
    border: 1px solid rgba(232, 222, 216, .3);
    border-radius: 18px;
    background: rgba(47, 65, 75, .98);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .32s ease, opacity .32s ease;
  }

  .nav-links.open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, .04);
  }

  .nav-cta {
    margin-top: 6px;
    padding: 10px 20px;
  }

  .svg-divider {
    height: 100px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 118px;
  }

  .hero-grid,
  .about-grid,
  .resources-grid,
  .form-shell,
  .detail-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .script-logo {
    font-size: 64px;
  }

  .intro-benefits {
    padding-bottom: 112px;
  }

  .intro-grid,
  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-title,
  .mini-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .about {
    padding-top: 104px;
    padding-bottom: 138px;
  }

  .about-grid {
    gap: 48px;
    max-width: 760px;
  }

  .about-copy {
    max-width: 100%;
    padding: 38px 34px;
    order: 2;
  }

  .about-copy::before {
    left: 34px;
  }

  .about-photo {
    order: 1;
  }

  .about-photo img {
    width: min(370px, 100%);
  }

  .stats-wrap {
    margin-top: -74px;
  }

  .stats-card,
  .contact-cards,
  .testimonial-grid,
  .program-panel {
    grid-template-columns: 1fr;
  }

  .focus {
    padding-bottom: 116px;
  }

  .focus-card,
  .focus-card:nth-child(4),
  .focus-card:nth-child(5) {
    grid-column: auto;
  }

  .programs {
    padding-top: 78px;
    padding-bottom: 122px;
  }

  .program-left,
  .program-right {
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .program-card {
    padding: 46px 34px;
  }

  .program-asset {
    max-width: 230px;
    margin: auto;
  }

  .testimonials {
    padding-bottom: 120px;
  }

  .resources {
    padding-top: 100px;
    padding-bottom: 122px;
  }

  .resources-copy {
    text-align: center;
  }

  .resources-copy p {
    margin: auto;
  }

  .pdf-stack {
    transform: scale(.92);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    gap: 24px;
  }

  .detail-stats-grid {
    grid-template-columns: 1fr;
  }

  .detail-copy {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .top-strip {
    font-size: 8px;
    letter-spacing: .14em;
  }

  .navbar {
    height: 64px;
  }

  .nav-links {
    top: 64px;
  }

  .small-script {
    font-size: 28px;
  }

  .nav-logo {
    height: 34px;
  }

  .svg-divider {
    height: 74px;
  }

  .hero-bottom-wave {
    height: 86px;
  }

  .intro-bottom-wave,
  .about-bottom-wave,
  .focus-bottom-wave,
  .programs-bottom-wave,
  .testimonials-bottom-wave,
  .resources-bottom-wave {
    height: 82px;
  }

  .resources-top-wave {
    height: 58px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    padding-bottom: 88px;
  }

  .hero-grid,
  .intro-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: 31px;
  }

  .script-logo {
    font-size: 54px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .brush-blob {
    width: 260px;
    height: 220px;
    right: 20px;
  }

  .intro-benefits {
    padding: 42px 0 86px;
  }

  .intro-title h2 {
    font-size: 32px;
  }

  .mini-card,
  .focus-card,
  .detail-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .line-icon,
  .focus-icon {
    width: 56px;
    height: 56px;
    font-size: 25px;
  }

  .about {
    padding: 88px 0 130px;
  }

  .about-copy {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .about-copy::before {
    left: 24px;
  }

  .about-copy h2 {
    font-size: 38px;
  }

  .about-copy p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .about-copy .handwritten {
    font-size: 36px !important;
  }

  .stats-wrap {
    margin-top: -64px;
    padding-bottom: 46px;
  }

  .stats-card {
    border-radius: 16px;
  }

  .stat {
    padding: 30px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .focus {
    padding: 12px 0 92px;
  }

  .programs {
    padding: 62px 0 96px;
  }

  .program-card {
    padding: 36px 26px;
  }

  .program-card h3 {
    font-size: 24px;
  }

  .program-panel-three {
    padding: 20px;
    gap: 22px;
  }

  .program-panel-three .program-option {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .program-option-img {
    max-width: 145px;
    height: 140px;
    margin-bottom: 24px;
  }

  .program-panel-three .program-option h3 {
    font-size: 25px;
  }

  .program-panel-three .program-option .btn {
    width: 100%;
  }

  .testimonials {
    padding: 60px 0 92px;
  }

  .testimonial-grid {
    gap: 28px;
  }

  .resources {
    padding: 82px 0 98px;
  }

  .pdf-stack {
    min-height: 720px;
    display: grid;
    gap: 16px;
  }

  .pdf-card {
    position: relative;
    transform: none !important;
    margin: 0 !important;
  }

  .contact {
    padding-top: 58px;
  }

  .contact-cards {
    gap: 16px;
  }

  .form-shell {
    padding: 28px 22px;
  }

  .footer span {
    font-size: 9px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .detail-hero {
    padding: 52px 0 70px;
  }

  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .detail-card,
  .detail-final-card,
  .detail-empty-card {
    padding: 28px 22px;
  }
}
