/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a2540;
    --secondary: #0066ff;
    --accent: #00d4ff;
    --text: #1a1a2e;
    --text-light: #5a6478;
    --bg: #ffffff;
    --bg-alt: #f7f9fc;
    --border: #e5e9f2;
    --shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
    --shadow-hover: 0 10px 40px rgba(10, 37, 64, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gold: #d4a574;
    --gold-dark: #b8895a;
    --whatsapp: #25D366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}
/* ===== HERO ===== */
.mentoring-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mentoring-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mentoring-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 165, 116, 0.2);
    color: var(--gold);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: white;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--gold), #f4d4a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* MARCO DE FOTOS */
.photo-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-frame:hover img {
    transform: scale(1.03);
}

.photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    pointer-events: none;
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== SECCIONES ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== PROGRAMA INTRO ===== */
.program-intro {
    padding: 80px 0;
    background: var(--bg);
}

.program-highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(212, 165, 116, 0.05));
    border: 2px dashed var(--secondary);
    border-radius: var(--radius);
    position: relative;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.program-highlight h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.program-highlight p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.program-highlight strong {
    color: var(--secondary);
    font-weight: 700;
}

/* ===== DIFERENCIADORES ===== */
.diferenciadores {
    background: var(--bg-alt);
}

.diferenciadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.diferenciador-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.diferenciador-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.diferenciador-card:hover::before {
    transform: scaleX(1);
}

.diferenciador-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.diferenciador-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.diferenciador-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.diferenciador-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== LOGROS ===== */
.logros {
    background: var(--bg);
}

.logros-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.logros-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.logros-content p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.logros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.logro-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.logro-item:hover {
    background: white;
    border-color: var(--secondary);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.logro-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.logro-item p {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== MENTOR ===== */
.mentor-section {
    background: var(--bg-alt);
}

.mentor-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.mentor-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.mentor-title {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 16px;
}

.mentor-title strong {
    color: var(--secondary);
}

.mentor-content > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.mentor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
    padding: 28px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.mentor-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.mentor-specialties h4 {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 20px;
}

.mentor-specialties h4:first-child {
    margin-top: 0;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ===== INCLUYE ===== */
.incluye-section {
    background: var(--bg);
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.incluye-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.incluye-item:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.incluye-item.destacado {
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    border: none;
}

.incluye-item.destacado h4,
.incluye-item.destacado p {
    color: white;
}

.check-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.incluye-item.destacado .check-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.incluye-item h4 {
    color: var(--primary);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.incluye-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== TIMELINE PROGRAMA ACADÉMICO ===== */
.programa-section {
    background: var(--bg-alt);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary), var(--accent), var(--gold));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
    z-index: 1;
}

.timeline-item.final .timeline-marker {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
}

.timeline-item.final .session-number {
    color: white;
}

.session-number {
    font-weight: 800;
    color: var(--secondary);
    font-size: 0.85rem;
}

.timeline-content {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.timeline-module {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--secondary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.timeline-item.final .timeline-module {
    background: rgba(212, 165, 116, 0.15);
    color: var(--gold-dark);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== MODALIDAD ===== */
.modalidad-section {
    background: var(--bg);
    padding: 80px 0;
}

.modalidad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.modalidad-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.modalidad-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.modalidad-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.modalidad-card h3 {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}

.modalidad-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.modalidad-card p:last-child {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== INVERSIÓN ===== */
.inversion-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.inversion-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.inversion-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inversion-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.inversion-content .section-tag {
    color: var(--gold);
}

.inversion-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* TARJETA DE PRECIO */
.price-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    color: var(--text);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.price-amount {
    margin: 24px 0 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.price-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-includes li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border);
}

.price-includes li:last-child {
    border-bottom: none;
}

/* ===== AUDIENCIA ===== */
.audiencia-section {
    background: var(--bg);
}

.audiencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.audiencia-card {
    background: white;
    padding: 32px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.audiencia-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.audiencia-card.featured {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border: none;
    grid-column: span 2;
}

.audiencia-card.featured h3 {
    color: white;
}

.audiencia-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.audiencia-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

/* ===== CITA CIERRE ===== */
.closing-quote {
    background: var(--bg-alt);
    padding: 100px 0;
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.quote-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.quote-wrapper p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

/* ===== INSCRIPCIÓN ===== */
.inscripcion-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f9fc 0%, #e8f0ff 100%);
}

.inscripcion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.inscripcion-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.inscripcion-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.contacto-card-link {
    text-decoration: none;
    transition: var(--transition);
}

.contacto-card-link:hover {
    transform: translateY(-4px);
}

.contacto-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
}

.contacto-card-link:hover .contacto-card {
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.contacto-card-link.whatsapp:hover .contacto-card {
    border-color: var(--whatsapp);
}

.contacto-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contacto-icon.whatsapp-icon {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
}

.contacto-card strong {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contacto-card span {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
}

.respuesta-badge {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border: 1px dashed var(--secondary);
    border-radius: 100px;
    box-shadow: var(--shadow);
}

.respuesta-icon {
    font-size: 1.3rem;
}

.respuesta-badge p {
    color: var(--text);
    font-size: 0.9rem;
    margin: 0;
}

.respuesta-badge strong {
    color: var(--secondary);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 37, 64, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-alt);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.modal-content h3 {
    color: var(--primary);
    margin: 24px 0 12px;
    font-size: 1.1rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-grid,
    .logros-wrapper,
    .mentor-grid,
    .inversion-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .modalidad-grid,
    .contacto-grid {
        grid-template-columns: 1fr;
    }

    .audiencia-card.featured {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mentoring-hero {
        padding: 130px 0 70px;
    }

    section {
        padding: 70px 0;
    }

    .inversion-section {
        padding: 80px 0;
    }

    .price-value {
        font-size: 3rem;
    }

    .mentor-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .logros-grid,
    .incluye-grid {
        grid-template-columns: 1fr;
    }

    .audiencia-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -10px;
        width: 32px;
        height: 32px;
    }

    .session-number {
        font-size: 0.75rem;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}
/* ============================================
   ESTILOS ADICIONALES - MENTORING CONFERENCISTAS
   ============================================ */

/* Timeline con lista de bullets */
.timeline-list {
    list-style: none;
    margin-top: 12px;
    padding: 0;
}

.timeline-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.timeline-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.timeline-item.final .timeline-list li::before {
    color: var(--gold);
}

/* Grid de modalidad con 3 columnas */
.modalidad-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Sección header con texto blanco (para inversión) */
.section-header-light {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header-light .section-tag {
    color: var(--gold);
}

.section-header-light h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header-light p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Grid de precios - DOS TARJETAS */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    color: var(--text);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(212, 165, 116, 0.4);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-badge.featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.pricing-card.featured .pricing-value {
    color: var(--gold-dark);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-detail {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-includes {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-includes li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--border);
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.pricing-includes li strong {
    color: var(--gold-dark);
}

/* Botón secundario oscuro (para plan mensual) */
.btn-secondary-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-secondary-dark:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
}

/* Responsive para pricing */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .modalidad-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-value {
        font-size: 2.8rem;
    }

    .pricing-card {
        padding: 32px 24px;
    }
}
/* ============================================
   ESTILOS ADICIONALES - COACHING EJECUTIVO
   ============================================ */

/* Wrapper para precio único centrado */
.single-price-wrapper {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.single-price-card {
    background: white;
    padding: 48px 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    position: relative;
    color: var(--text);
    border: 2px solid var(--gold);
}

.single-price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
    margin-bottom: 20px;
}

/* Nota de beneficios especiales */
.benefits-note {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.15));
    border: 1px dashed var(--gold);
    border-radius: var(--radius);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
}

.benefits-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefits-note p {
    color: var(--text);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.benefits-note strong {
    color: var(--gold-dark);
}

/* Responsive para single price */
@media (max-width: 768px) {
    .single-price-card {
        padding: 36px 24px;
    }

    .single-price-wrapper {
        max-width: 100%;
    }
}
/* ============================================
   ESTILOS ADICIONALES - MÁSTER EN IA
   ============================================ */

/* Badge de características en el Hero */
.hero-features-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-icon {
    font-size: 1rem;
}

/* Caja de "No se requieren conocimientos" */
.no-requisitos-box {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
    border: 2px dashed var(--secondary);
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    align-items: center;
    text-align: left;
}

.no-requisitos-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.no-requisitos-box p {
    color: var(--text);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.no-requisitos-box strong {
    color: var(--secondary);
}

/* Sección de Certificación IA */
.certificacion-ia-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), #1a3a5c);
    color: white;
    position: relative;
    overflow: hidden;
}

.certificacion-ia-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.certificacion-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.certificacion-content .section-tag {
    color: var(--gold);
}

.certificacion-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.certificacion-content > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.certificado-box {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 165, 116, 0.4);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.certificado-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.certificado-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.certificado-emisor {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.certificado-emisor strong {
    color: var(--gold);
}

.certificacion-image .photo-frame {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Sección Red Internacional */
.red-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.red-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.red-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.red-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.red-wrapper p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Tarjeta de precio premium */
.single-price-card-premium {
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(212, 165, 116, 0.3);
}

.single-price-card-premium .pricing-value {
    font-size: 4.5rem;
    color: var(--gold-dark);
}

/* Responsive */
@media (max-width: 900px) {
    .certificacion-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .certificacion-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-features-badge {
        justify-content: center;
    }

    .no-requisitos-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .feature-pill {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .certificado-box {
        flex-direction: column;
        text-align: center;
    }

    .red-wrapper {
        padding: 32px 24px;
    }

    .single-price-card-premium .pricing-value {
        font-size: 3.5rem;
    }
}/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
    border: 1px solid var(--border);
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cookie-banner p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-banner p a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--secondary);
    color: white;
}

.cookie-accept:hover {
    background: #0052cc;
}

.cookie-settings {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-settings:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        max-width: none;
        padding: 20px;
    }
}