/*
Theme Name: asoandes-theme
Description: Diseño oficial Asoandes – Asociación Nacional para el Desarrollo Social
Version: 6.4.0
Author: AsoAndes
Text Domain: asoandes-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ---- Variables ---- */
:root {
  --red:        #CC2222;
  --red-dark:   #A81A1A;
  --orange:     #F4A015;
  --yellow:     #F5C842;
  --teal:       #0D7B6E;
  --navy:       #0F172A;
  --navy-mid:   #1E2A40;
  --dark:       #111827;
  --text:       #1F2937;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --light:      #F9FAFB;
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --radius:     8px;
  --radius-lg:  16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 64px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: #e08a05; transform: translateY(-1px); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: #e0b030; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5c; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  max-width: 1300px;
  margin: 0 auto;
  height: 120px;
}
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo-img { height: 110px; width: auto; display: block; }

.nav-menu { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-sep { display: block; width: 2px; height: 20px; background: #9CA3AF; flex-shrink: 0; align-self: center; list-style: none; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 11px; font-size: 13px; font-weight: 600; color: var(--text); border-radius: 0; transition: color .2s; white-space: nowrap; position: relative; }
.nav-link:hover { color: var(--red); }
.nav-link.active { color: var(--red); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); width: 80%; height: 3px; background: var(--red); border-radius: 2px; }
.nav-chevron { font-size: 9px; }
.nav-search-wrap { margin-left: 12px; }
.nav-search-box { display: flex; align-items: center; gap: 8px; background: #F0F0F0; border-radius: 20px; padding: 6px 14px; cursor: text; transition: background .2s; width: 160px; }
.nav-search-box:hover, .nav-search-box:focus-within { background: #E5E7EB; }
.nav-search-icon { font-size: 12px; color: #9CA3AF; flex-shrink: 0; }
.nav-search-input { border: none; background: none; outline: none; font-size: 12px; color: var(--text); width: 100%; font-family: inherit; }
.nav-search-input::placeholder { color: #9CA3AF; }
.nav-cta-wrap { margin-left: 16px; }
.nav-cta-btn { display: inline-flex; align-items: center; background: var(--red); color: var(--white) !important; padding: 9px 20px; border-radius: 24px; font-weight: 700; font-size: 13px; white-space: nowrap; transition: background .2s; }

.nav-dropdown { position: absolute; top: calc(100% + 4px); left: 0; min-width: 220px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .2s; z-index: 100; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--text); border-radius: 6px; transition: background .15s; }
.nav-dropdown a:hover { background: var(--light); color: var(--red); }

.nav-search { background: none; border: none; cursor: pointer; font-size: 16px; color: var(--text-muted); padding: 8px; transition: color .2s; }
.nav-search:hover { color: var(--red); }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 8px 18px !important; border-radius: 20px; font-weight: 700 !important; font-size: 13px !important; transition: background .2s !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; font-size: 22px; color: var(--text); }

/* ---- WhatsApp Float ---- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-float svg { fill: white; width: 30px; height: 30px; }

/* ---- Hero (Home) ---- */
.hero-home { background: var(--white); padding: 0; }
.hero-banner-wrap { position: relative; width: 100%; line-height: 0; }
.hero-banner-img { width: 100%; height: auto; display: block; }
.hero-banner-cta { position: absolute; bottom: 24%; left: 10%; }
.hero-banner-cta .btn { font-size: 18px; padding: 18px 44px; border-radius: 30px; font-weight: 800; }

/* ---- Section Titles ---- */
.section-title { font-size: 30px; font-weight: 800; color: #1D1D1B; margin-bottom: 8px; }
.section-title span { color: #1B3351; }
.section-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }

/* ---- Líneas de Acción ---- */
.lineas-section { background: var(--white); padding: 56px 0; }
.lineas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 32px; }
.linea-card { overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform .2s, box-shadow .2s; text-decoration: none; color: #fff; }
.lineas-grid .linea-card:first-child { border-radius: 14px 0 0 14px; }
.lineas-grid .linea-card:last-child  { border-radius: 0 14px 14px 0; }
.linea-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }

/* main card color (solid, full card) */
.linea-card-academica { background: #E28983; }
.linea-card-alianza   { background: #EBB155; }
.linea-card-agora     { background: #6BB494; }
.linea-card-acceso    { background: #74BEC6; }
.linea-card-accion    { background: #73A1D3; }

.linea-photo-wrap { padding: 16px 16px 14px; }
.linea-img { width: 100%; display: block; border-radius: 12px; aspect-ratio: 7 / 8; object-fit: cover; }

/* darker title band */
.linea-title { font-size: clamp(15px, 1.4vw, 21px); font-weight: 800; color: #fff; text-align: center; padding: 14px 8px; }
.linea-card-academica .linea-title { background: #D36661; }
.linea-card-alianza   .linea-title { background: #D97B1C; }
.linea-card-agora     .linea-title { background: #2D7F56; }
.linea-card-acceso    .linea-title { background: #358E9A; }
.linea-card-accion    .linea-title { background: #3466AF; }

/* info: same card color, white description text */
.linea-info { background: transparent; padding: 16px 18px 22px; flex: 1; }
.linea-desc { font-size: clamp(12px, 1vw, 15px); color: #fff; line-height: 1.35; margin: 0 0 10px; }
.linea-link { display: inline-block; font-size: clamp(12px, 1vw, 15px); color: #354E97; font-weight: 700; font-style: italic; text-decoration: underline; }

/* ---- Oferta Formativa ---- */
.oferta-section { background: var(--white); padding: 56px 0; }
.oferta-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.oferta-whatsapp { width: 48px; height: 48px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.oferta-whatsapp svg { fill: white; width: 26px; height: 26px; }
.course-slider-outer { position: relative; display: flex; align-items: center; gap: 12px; }
.course-slider-wrap { flex: 1; overflow: hidden; }
.course-slider { display: flex; gap: 20px; transition: transform .4s ease; }
/* Horizontal course cards */
.course-card-h { min-width: calc(50% - 10px); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); display: grid; grid-template-columns: 220px 1fr; transition: transform .2s, box-shadow .2s; }
.course-card-h:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.12); }
.course-card-h-img { overflow: hidden; }
.course-card-h-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.course-card-h-body { padding: 24px 20px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.course-card-h-label { font-size: 16px; font-weight: 700; color: var(--text); }
.course-card-h-title { font-size: 20px; font-weight: 800; color: var(--orange); line-height: 1.25; }
.course-card-h-dur { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.4; }
.course-card-h-dur strong { display: block; font-weight: 700; color: var(--text); font-size: 16px; }
.course-card-h-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--light); color: var(--text); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); }
.badge-pill i { color: var(--yellow); }
.course-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text); transition: all .2s; flex-shrink: 0; }
.course-arrow:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---- Conoce Asoandes ---- */
.conoce-section { background: #E8F0FB; padding: 80px 0; }
.conoce-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.conoce-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.conoce-image img { width: 100%; height: 420px; object-fit: cover; }
.conoce-tag { display: inline-block; background: var(--light); color: var(--red); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.conoce-title-main { font-size: 32px; font-weight: 900; color: var(--text); margin-bottom: 16px; }
.conoce-title-main span { color: var(--red); }
.conoce-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }

/* ---- Resultados ---- */
.resultados-section { background: var(--light); padding: 64px 0; }
.resultados-title { font-size: 28px; font-weight: 800; color: var(--text); text-align: left; margin-bottom: 48px; }
.resultados-blue { color: #7BBD8A; }
.resultados-red { color: var(--text); }
.resultados-grid { display: flex; justify-content: center; align-items: stretch; }
.resultado-item { flex: 1; padding: 20px 40px; text-align: center; }
.resultado-divider { width: 2px; background: #C5C5C5; flex-shrink: 0; align-self: stretch; }
.resultado-number { font-size: 56px; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.resultado-label { font-size: 30px; font-weight: 800; color: var(--text); line-height: 1.2; }
.resultado-label span { font-size: 14px; font-weight: 500; color: var(--text-muted); display: block; margin-top: 8px; }
.resultados-cta { text-align: right; margin-top: 40px; }

/* ---- Aliados ---- */
.aliados-section { background: var(--white); padding: 48px 0; }
.aliados-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.aliados-title { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 0; }
.aliados-blue { color: #73A1D3; }
.aliados-carousel-wrap { display: flex; align-items: center; gap: 16px; }
.aliados-track-wrap { flex: 1; overflow: hidden; }
.aliados-track { display: flex; gap: 24px; align-items: center; transition: transform .4s ease; }
.aliado-item { flex-shrink: 0; width: 200px; height: 110px; display: flex; align-items: center; justify-content: center; }
.aliado-item img { max-width: 180px; max-height: 100px; width: auto; height: auto; object-fit: contain; transition: filter .2s; }
.aliado-item img:hover { filter: none; }
.aliados-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text); transition: all .2s; flex-shrink: 0; }
.aliados-arrow:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ---- Footer ---- */
.footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 48px 0 24px; }
.footer-top-grid { display: grid; grid-template-columns: 200px repeat(6, 1fr); gap: 28px; margin-bottom: 40px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 100px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-brand-sub { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.4; }
.footer-map { margin-top: 4px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); text-transform: none; letter-spacing: 0; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-social-col .social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--white); transition: background .2s; }
.social-link:hover { background: var(--red); }
.footer-handle { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); }
.footer-bottom-grid { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.footer-contacto h4, .footer-blog h4 { font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-contacto p { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.9; }
.footer-blog ul li { margin-bottom: 6px; }
.footer-blog ul li a { font-size: 12px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-blog ul li a:hover { color: var(--orange); }
.footer-copy-bar { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; }
.footer-copy-bar p { font-size: 11px; color: rgba(255,255,255,.35); }

/* ---- Academia ---- */
.academia-banner img { width: 100%; display: block; }
.academia-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 48px 0; }
.academia-sidebar h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 12px; }
.sidebar-menu li { margin-bottom: 2px; }
.sidebar-menu a { display: block; padding: 8px 12px; font-size: 13px; font-weight: 500; color: var(--text); border-radius: 6px; transition: all .15s; }
.sidebar-menu a:hover, .sidebar-menu a.active { background: var(--light); color: var(--red); font-weight: 700; }
.sidebar-sub { padding-left: 16px; }
.sidebar-sub a { font-size: 12px; }
.academia-courses { display: flex; flex-direction: column; gap: 24px; }
.academia-course-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 280px 1fr; box-shadow: var(--shadow); background: var(--white); transition: transform .2s, box-shadow .2s; }
.academia-course-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.12); }
.academia-course-image { position: relative; height: 200px; overflow: hidden; }
.academia-course-image img { width: 100%; height: 100%; object-fit: cover; }
.academia-course-body { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.academia-course-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--teal); margin-bottom: 8px; }
.academia-course-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.academia-course-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.academia-course-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.academia-course-footer { display: flex; align-items: center; justify-content: space-between; }
.academia-course-price { font-size: 24px; font-weight: 900; color: var(--red); }
.academia-course-price small { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: line-through; display: block; }

/* ---- Course Landing Pages ---- */
.landing-hero { background: var(--dark); color: var(--white); padding: 0; position: relative; overflow: hidden; }
.landing-hero-banner img { width: 100%; max-height: 400px; object-fit: cover; display: block; }
.landing-hero-content { padding: 40px 0 48px; background: var(--dark); }
.landing-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.landing-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; }
.landing-hero-title { font-size: 36px; font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.landing-hero-title span { color: var(--orange); }
.landing-hero-subtitle { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 28px; line-height: 1.7; }
.landing-hero-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.landing-hero-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.7); font-weight: 500; }
.landing-hero-meta .dot { color: var(--orange); font-size: 8px; }

.enrollment-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; color: var(--text); box-shadow: 0 8px 40px rgba(0,0,0,.3); position: sticky; top: 90px; }
.enrollment-card .price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.enrollment-card .price-current { font-size: 36px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 4px; }
.enrollment-card .price-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 16px; }
.enrollment-card .enroll-info { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.enrollment-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.section-light  { background: var(--white); }
.section-gray   { background: var(--light); }
.section-dark   { background: var(--dark); color: var(--white); }
.section-navy   { background: var(--navy); color: var(--white); }
.section-dark .section-title, .section-navy .section-title { color: var(--white); }

.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 32px; }
.icon-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.icon-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.1); }
.icon-card img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 14px; }
.icon-card h4 { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; }

.problem-section { background: var(--light); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.problem-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 18px; border-left: 4px solid var(--red); box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.problem-item .pi-icon { font-size: 28px; flex-shrink: 0; }
.problem-item p { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 22px; border: 1px solid var(--border); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.step-card::before { content: attr(data-step); position: absolute; top: -10px; right: -10px; font-size: 80px; font-weight: 900; color: var(--light); line-height: 1; }
.step-number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: var(--white); font-size: 14px; font-weight: 800; margin-bottom: 14px; }
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col .col-img { border-radius: var(--radius-lg); overflow: hidden; }
.two-col .col-img img { width: 100%; height: 380px; object-fit: cover; }

.result-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.result-item { display: flex; gap: 12px; align-items: flex-start; }
.result-item .check { width: 22px; height: 22px; border-radius: 50%; background: var(--teal); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 2px; }
.result-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.include-item { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,.05); border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); }
.include-item .i-icon { font-size: 28px; flex-shrink: 0; }
.include-item h4 { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; }
.include-item p { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 3px; }

.pricing-section { background: var(--light); }
.pricing-card { max-width: 680px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 8px 48px rgba(0,0,0,.12); overflow: hidden; }
.pricing-header { background: var(--navy); color: var(--white); padding: 32px 40px; text-align: center; }
.pricing-header h3 { font-size: 20px; margin-bottom: 8px; }
.pricing-original { font-size: 22px; text-decoration: line-through; color: rgba(255,255,255,.5); }
.pricing-beca { display: inline-block; background: var(--orange); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin: 8px 0; }
.pricing-final { font-size: 54px; font-weight: 900; color: var(--yellow); line-height: 1; }
.pricing-body { padding: 32px 40px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--text); }
.pricing-feature .pf-check { color: var(--teal); font-size: 16px; }
.pricing-legal { font-size: 11px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; padding: 14px; background: var(--light); border-radius: var(--radius); }
.bonus-card { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; color: var(--white); }
.bonus-icon { font-size: 28px; flex-shrink: 0; }
.bonus-content h4 { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.bonus-content p { font-size: 12px; opacity: .85; }

.urgency-section { background: var(--red); color: var(--white); padding: 56px 0; text-align: center; }
.urgency-title { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.urgency-sub { font-size: 16px; opacity: .9; margin-bottom: 28px; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); text-align: center; padding-bottom: 24px; }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin: 16px 16px 6px; }
.team-card .team-role { font-size: 12px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: .6px; margin: 0 16px 10px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0 20px; }

.faq-list { max-width: 780px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; background: none; border: none; cursor: pointer; font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--text); text-align: left; gap: 12px; transition: background .15s; }
.faq-question:hover { background: var(--light); }
.faq-question .faq-icon { font-size: 18px; color: var(--red); flex-shrink: 0; transition: transform .2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding: 0 22px; }
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p, .faq-answer li { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-answer ul { padding-left: 18px; list-style: disc; }
.faq-answer li { margin-bottom: 4px; }

.testimonials-placeholder { background: var(--light); border-radius: var(--radius-lg); padding: 48px; text-align: center; border: 2px dashed var(--border); margin-top: 32px; }
.testimonials-placeholder p { color: var(--text-muted); font-size: 14px; font-style: italic; }

.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 24px 0; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.cta-strip { background: var(--light); padding: 40px 0; text-align: center; }
.cta-strip h3 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 16px; }
.cta-strip .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.highlight { color: var(--orange); }
.text-red { color: var(--red); }

.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:2000; align-items:center; justify-content:center; }
.modal-overlay.open { display:flex; }
.modal-box { background:#fff; border-radius:16px; padding:36px; max-width:460px; width:90%; position:relative; }
.modal-box h3 { font-size:20px; font-weight:800; margin-bottom:6px; }
.modal-box p { font-size:13px; color:#6B7280; margin-bottom:20px; }
.modal-box input, .modal-box select { width:100%; padding:11px 14px; border:1px solid #E5E7EB; border-radius:8px; font-family:Montserrat,sans-serif; font-size:13px; margin-bottom:12px; outline:none; }
.modal-box input:focus, .modal-box select:focus { border-color:#CC2222; }
.modal-close { position:absolute; top:14px; right:18px; font-size:20px; background:none; border:none; cursor:pointer; color:#9CA3AF; }

/* ── Countdown ── */
#countdown { display: flex; gap: 6px; align-items: center; }
.cd-unit { background: rgba(255,255,255,.15); border-radius: 6px; padding: 6px 10px; text-align: center; min-width: 54px; }
.cd-unit .n { font-size: 20px; font-weight: 900; color: #fff; display: block; line-height: 1; }
.cd-unit .l { font-size: 9px; color: rgba(255,255,255,.7); text-transform: uppercase; }
.cd-sep { color: rgba(255,255,255,.5); font-size: 20px; font-weight: 900; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lineas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .hero-banner-cta .btn { font-size: 14px; padding: 14px 28px; }
}
@media (max-width: 900px) {
  .hero-banner-cta { bottom: 20%; left: 4%; }
  .hero-banner-cta .btn { font-size: 13px; padding: 12px 22px; }
  .lineas-grid { grid-template-columns: repeat(2, 1fr); }
  .course-card-h { min-width: calc(80% - 10px); grid-template-columns: 180px 1fr; }
  .conoce-grid { grid-template-columns: 1fr; gap: 32px; }
  .resultados-grid { flex-direction: column; gap: 24px; }
  .resultado-divider { width: 80px; height: 2px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .landing-hero-inner { grid-template-columns: 1fr; }
  .enrollment-card { position: static; }
  .academia-course-card { grid-template-columns: 1fr; }
  .academia-course-image { height: 200px; }
  .includes-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; inset: 70px 0 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; overflow-y: auto; box-shadow: 0 10px 40px rgba(0,0,0,.15); }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light); margin-top: 4px; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius); }
  .section-title { font-size: 22px; }
  .landing-hero-title { font-size: 26px; }
  .lineas-grid { grid-template-columns: repeat(2, 1fr); }
  .course-card-h { min-width: 90%; grid-template-columns: 1fr; }
  .course-card-h-img { height: 200px; }
  .problema-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .academia-layout { grid-template-columns: 1fr; }
  .academia-sidebar { display: none; }
  .resultado-number { font-size: 38px; }
  .pricing-final { font-size: 40px; }
  .urgency-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .lineas-grid { grid-template-columns: 1fr 1fr; }
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .course-card-h { min-width: 95%; }
  .conoce-image img { height: 280px; }
  .two-col .col-img img { height: 260px; }
  .pricing-header, .pricing-body { padding: 24px 20px; }
}


