:root {
    --bg-cream: #FBF9F2;       /* Blanco cálido/crema acolchado */
    --bg-lavender: #EBF1F6;    /* Fondo suave de contraste */
    --text-dark: #1A4260;     /* Azul marino profundo para texto de alto contraste */
    --text-muted: #5A7C93;    /* Azul pizarra para texto secundario */
    --navy-primary: #1A4260;  /* Azul marino principal de la fundación */
    --navy-hover: #112C42;    /* Estado hover para el azul marino */
    --purple-accent: #E9A328; /* Cambiado a Amarillo cálido de acento */
    --yellow-accent: #E9A328; /* Amarillo cálido principal */
    --card-bg: #FFFFFF;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(26, 66, 96, 0.08), 0 4px 6px -2px rgba(26, 66, 96, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(26, 66, 96, 0.12), 0 10px 10px -5px rgba(26, 66, 96, 0.04);
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* HEADER & NAV */
header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1005;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy-primary);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-icon {
    transform: rotate(360deg);
}

.logo-img {
    height: 58px; /* Aumentado un 20% de 48px a 58px */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.logo-img-footer {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img-footer {
    transform: scale(1.03);
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: 18px;
    list-style: none;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-links a {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--purple-accent);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover {
    color: var(--purple-accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* HAMBURGER MENU BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--navy-primary);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), 
                opacity 0.2s ease, 
                background-color 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* BUTTONS WITH MICRO-INTERACTIONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-sm);
}

.btn-navy {
    background-color: var(--navy-primary);
    color: white;
}

.btn-navy:hover {
    background-color: var(--navy-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--navy-primary);
    color: var(--navy-primary);
    padding: 8px 20px; /* Compensa el borde más grueso */
}

.btn-outline:hover {
    background-color: var(--navy-primary);
    color: white;
}

.btn-yellow {
    background-color: var(--yellow-accent);
    color: var(--text-dark);
}

.btn-yellow:hover {
    background-color: #C4821A;
}

.btn-navy-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-navy-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* HERO SECTION (Layout 2 columnas: Texto a la izquierda | Imagen a la derecha) */
.hero {
    background-color: var(--bg-cream);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 100%;
}

.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy-primary);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

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

.hero-media {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.hero-media img,
.hero-image {
    width: 100%;
    height: 440px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
}

/* WAVE SEPARATOR */
.wave-separator {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: var(--bg-lavender);
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-separator .shape-fill {
    fill: var(--bg-cream);
}

/* SERVICES SECTION */
.services-section {
    background-color: var(--bg-lavender);
    padding: 40px 32px 90px 32px;
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: rgba(233, 163, 40, 0.18);
    color: var(--navy-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 16px;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 163, 40, 0.15);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #F1EFFB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy-primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--purple-accent);
    color: white;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--purple-accent);
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SECTION UTILITIES */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.6;
    text-align: center;
}

/* NOSOTROS / PILARES SECTION */
.nosotros-section {
    background-color: var(--bg-cream);
    padding: 80px 32px;
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.pillar-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(26, 66, 96, 0.05);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(233, 163, 40, 0.15);
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* METODOLOGÍA SECTION */
.metodologia-section {
    background-color: var(--bg-lavender);
    padding: 90px 32px;
    text-align: center;
}

.subsection-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-top: 36px;
    margin-bottom: 24px;
    text-align: center;
}

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

.roadmap-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    position: relative;
    border-top: 4px solid var(--yellow-accent);
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.roadmap-badge {
    display: inline-block;
    background: var(--navy-primary);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.roadmap-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.roadmap-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* BADGE URGENCY */
.badge-urgency {
    background: rgba(233, 163, 40, 0.22) !important;
    color: var(--navy-primary) !important;
    border: 1px solid rgba(233, 163, 40, 0.4);
}

/* PROBLEMA / EMPATÍA SECTION */
.problema-section {
    background-color: var(--bg-lavender);
    padding: 85px 32px;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.pain-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--purple-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.pain-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* PROGRAM SUMMARY SPECS BAR */
.program-summary-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.summary-icon {
    font-size: 28px;
}

.summary-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy-primary);
}

.summary-item span {
    font-size: 13px;
    color: var(--text-muted);
}

/* RESULTADOS SECTION */
.resultados-section {
    background-color: var(--bg-cream);
    padding: 85px 32px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.result-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 66, 96, 0.06);
}

.result-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(233, 163, 40, 0.2);
    color: var(--navy-primary);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 6px;
}

.result-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* EQUIPO SECTION */
.equipo-section {
    background-color: var(--bg-lavender);
    padding: 85px 32px;
    text-align: center;
}

.team-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px auto;
    border: 3px solid var(--yellow-accent);
}

.team-role {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--yellow-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CREDIBILIDAD / TRUST SECTION */
.credibilidad-section {
    background-color: var(--bg-cream);
    padding: 85px 32px;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.trust-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 66, 96, 0.05);
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.trust-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* HERO MICROCOPY */
.hero-microcopy {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 18px;
    font-weight: 500;
}

/* 2. VISUAL STORYTELLING: ANTES VS DESPUÉS */
.storytelling-section {
    background-color: var(--bg-cream);
    padding: 95px 32px;
    text-align: center;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1050px;
    margin: 40px auto 0 auto;
}

.comparison-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-before {
    border-top: 4px solid #D9534F;
}

.card-after {
    border-top: 4px solid var(--yellow-accent);
}

.comparison-header {
    margin-bottom: 24px;
}

.comparison-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.badge-before {
    background: rgba(217, 83, 79, 0.12);
    color: #C9302C;
}

.badge-after {
    background: rgba(233, 163, 40, 0.18);
    color: var(--navy-primary);
}

.comparison-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-primary);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    font-size: 14.5px;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.cross-icon {
    color: #D9534F;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.check-icon {
    color: var(--yellow-accent);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.comparison-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--navy-primary);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
}

.bridge-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* 3. MÁS EMOCIÓN SECTION */
.emotion-section {
    background-color: var(--navy-primary);
    color: white;
    padding: 90px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emotion-container {
    max-width: 860px;
    margin: 0 auto;
}

.emotion-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 16px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.emotion-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

/* 4. HISTORIA DE ORIGEN */
.history-section {
    background-color: var(--bg-lavender);
    padding: 95px 32px;
}

.history-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
}

.history-content {
    text-align: left;
}

.history-p {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.history-card-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 36px 30px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--yellow-accent);
}

.history-quote {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.history-author {
    font-size: 13px;
    font-weight: 800;
    color: var(--yellow-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 6. PRIMERA SESIÓN */
.firstday-section {
    background-color: var(--bg-cream);
    padding: 95px 32px;
    text-align: center;
}

.firstday-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.firstday-step {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--yellow-accent);
    color: var(--navy-primary);
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.firstday-step h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 10px;
}

.firstday-step p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* 7. PROCESS TIMELINE */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
    position: relative;
}

.timeline-step {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--navy-primary);
}

.timeline-node {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-primary);
    color: white;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}

.timeline-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 6px;
}

.timeline-step p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.45;
}

.form-note {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.5;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* PILOT FORM INSIDE CTA */
.tag-gold {
    background: rgba(233, 163, 40, 0.25) !important;
    color: white !important;
}

.pilot-form {
    max-width: 720px;
    margin: 32px auto 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: inherit;
    font-size: 14px;
    color: var(--navy-primary);
    background: #FFFFFF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--yellow-accent);
    box-shadow: 0 0 0 3px rgba(233, 163, 40, 0.3);
}

textarea.form-control {
    resize: vertical;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    background-color: var(--bg-cream);
    padding: 100px 32px;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-placeholder img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.video-placeholder:hover img {
    transform: scale(1.03);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.play-button svg {
    margin-left: 3px; /* Corrige visualmente el centrado del icono de play */
    transition: fill 0.3s ease, transform 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.12);
    background-color: var(--yellow-accent);
}

.video-placeholder:hover .play-button svg {
    fill: var(--navy-primary);
}

.testimonial-content {
    padding-right: 20px;
}

.quote-icon {
    font-size: 42px;
    color: var(--yellow-accent);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-primary);
    line-height: 1.35;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy-primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
}

/* CTA BANNER */
.cta-section {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 32px;
}

.cta-card {
    background-color: var(--navy-primary);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(26, 66, 96, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Fondo decorativo sutil para la tarjeta CTA */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 163, 40, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 163, 40, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 15px;
    color: #CBD5E1;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* FOOTER */
footer {
    background-color: var(--navy-primary);
    color: white;
    padding: 60px 32px 30px 32px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: white;
    color: var(--navy-primary);
}

.footer-brand p {
    font-size: 13px;
    color: #94A3B8;
    max-width: 260px;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 13px;
    color: #CBD5E1;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #CBD5E1;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--yellow-accent);
    color: var(--navy-primary);
    transform: translateY(-3px) scale(1.05);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #64748B;
}

/* FLOATING CHAT BUTTON */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 54px;
    height: 54px;
    background-color: var(--navy-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(26, 66, 96, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
}

.floating-chat:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--purple-accent);
    box-shadow: 0 12px 30px rgba(233, 163, 40, 0.4);
}

.floating-chat:active {
    transform: scale(0.95);
}

/* SUPPORT CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 340px;
    max-width: calc(100vw - 60px);
    height: 440px;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(26, 66, 96, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.chat-widget.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background-color: var(--navy-primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-title {
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-header-status {
    width: 8px;
    height: 8px;
    background-color: #2ECC71;
    border-radius: 50%;
    display: inline-block;
}

.chat-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    color: white;
    transform: scale(1.1);
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    max-width: 80%;
    line-height: 1.4;
    word-break: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.chat-message.system {
    background-color: #ECE9F7;
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-message.user {
    background-color: var(--navy-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-footer {
    padding: 12px 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 8px;
    background-color: var(--card-bg);
    align-items: center;
}

.chat-input {
    flex: 1;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-input:focus {
    border-color: var(--purple-accent);
}

.chat-send-btn {
    background-color: var(--navy-primary);
    color: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    padding-left: 2px; /* Alineación del icono */
}

.chat-send-btn:hover {
    background-color: var(--navy-hover);
    transform: scale(1.05);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

/* VIDEO MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 66, 96, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    background-color: #000;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.is-open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 2010;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    background: #000;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ANIMATIONS ON SCROLL (REVEAL) */
.reveal {
    position: relative;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-up {
    transform: translateY(40px);
}

.reveal-slide-left {
    transform: translateX(-40px);
}

.reveal-slide-right {
    transform: translateX(40px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    header {
        padding: 20px 24px;
    }

    /* Ocultar navegación horizontal e implementar el menú hamburguesa lateral */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--card-bg);
        box-shadow: -10px 0 30px rgba(26, 66, 96, 0.1);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 32px;
        gap: 32px;
        z-index: 1000;
        pointer-events: none;
    }

    nav.is-active {
        right: 0;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
        width: 100%;
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-links a::after {
        display: none; /* Desactiva la línea inferior en móvil */
    }

    nav .btn {
        width: 100%;
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
    }

    /* Secciones apiladas */
    .hero {
        padding: 40px 24px 60px 24px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: auto;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-content {
        padding-right: 0;
        text-align: center;
    }

    .services-section {
        padding: 40px 24px 70px 24px;
    }

    .services-grid,
    .pillars-grid,
    .roadmap-grid,
    .team-grid,
    .comparison-container,
    .history-grid,
    .firstday-grid,
    .process-timeline,
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-bridge {
        transform: rotate(90deg);
        margin: 12px 0;
    }

    .emotion-title {
        font-size: 26px;
    }

    .nosotros-section,
    .metodologia-section {
        padding: 50px 24px;
    }

    .facilitators-block {
        padding: 24px 18px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .logo span {
        display: none;
    }
}

/* ==========================================================================
   MEJORAS VISUALES EN FAQ Y ESPACIADO DEL FORMULARIO DE POSTULACIÓN
   ========================================================================== */

/* Fondo general de la sección FAQ */
.faq-section {
    background-color: var(--bg-cream);
    padding: 95px 32px 60px 32px;
}

/* Contenedor central de acordeones */
.faq-accordion-container {
    max-width: 820px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Ítem individual de acordeón */
.faq-accordion-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(26, 66, 96, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(233, 163, 40, 0.3);
}

.faq-accordion-item[open] {
    border-color: var(--yellow-accent);
    box-shadow: var(--shadow-md);
}

/* Encabezado del acordeón (Pregunta) */
.faq-accordion-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

.faq-accordion-header::-webkit-details-marker {
    display: none;
}

.faq-accordion-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-primary);
    margin: 0;
    line-height: 1.4;
}

/* Ícono desplegable '+' */
.faq-icon {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-accordion-item[open] .faq-icon {
    transform: rotate(45deg);
    color: var(--yellow-accent);
}

/* Cuerpo del acordeón (Respuesta) */
.faq-accordion-body {
    padding: 0 28px 24px 28px;
    border-top: 1px solid rgba(26, 66, 96, 0.05);
    margin-top: 4px;
}

.faq-accordion-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-top: 16px;
}

/* Separador visual para respiro */
.section-divider {
    height: 40px;
    background: transparent;
}

/* Sección Formulario / CTA con amplio margen superior e inferior */
.cta-section {
    max-width: 1100px;
    margin: 60px auto 100px auto;
    padding: 0 32px;
}

/* ==========================================================================
   REDISEÑO MEJORADO Y DESAHOGADO DE LA SECCIÓN DE EQUIPO / PROFESIONALES
   ========================================================================== */

.equipo-section {
    background-color: var(--bg-lavender);
    padding: 100px 32px;
    text-align: center;
}

/* Grid con amplio margen entre columnas */
.team-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1100px;
    margin: 48px auto 0 auto;
}

/* Tarjeta individual desahogada */
.team-card-redesigned {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 38px 28px 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 66, 96, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card-redesigned:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233, 163, 40, 0.3);
}

/* Envoltorio de la foto de perfil */
.team-photo-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin-bottom: 22px;
}

.team-photo-wrapper .team-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--card-bg);
    outline: 3px solid var(--yellow-accent);
    box-shadow: 0 8px 16px rgba(26, 66, 96, 0.12);
}

/* Badge con icono descriptivo */
.team-badge-icon {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 32px;
    height: 32px;
    background: var(--navy-primary);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Contenido textual de la tarjeta */
.team-card-body h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 6px;
}

.team-card-body .team-role {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--yellow-accent);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
}

/* Línea divisoria decorativa */
.team-divider {
    width: 40px;
    height: 2px;
    background-color: rgba(26, 66, 96, 0.1);
    margin: 0 auto 16px auto;
}

.team-card-body .team-bio {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsivo para móviles y tablets */
@media (max-width: 992px) {
    .team-grid-redesigned {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .team-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
