:root {
    --gold: #c5a059;
    --dark-bg: #0a0e14;
    --text-light: #ffffff;
    --font-main: 'Playfair Display', serif;
    --font-sub: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--dark-bg);
    font-family: var(--font-sub);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navbar Estilo Imagen */
/* --- Estilos Base del Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

/* --- Diseño del Menú Sándwich --- */
.menu-toggle {
    display: none; /* Oculto en desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

/* --- RESPONSIVO (Celulares) --- */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex; /* Mostrar sándwich */
        z-index: 2001;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #05070a;
        flex-direction: column;
        padding-top: 50px;
        gap: 30px;
        transition: all 0.5s ease;
        
        /* Ocultar menú por defecto */
        clip-path: circle(0% at 100% 0%); 
    }

    .nav-links.active {
        /* Mostrar menú con efecto circular */
        clip-path: circle(150% at 100% 0%);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Animación del Sándwich a X */
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Estilo especial para el botón de Contratar */
.btn-gold-small {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 10px 22px;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.btn-gold-small:hover {
    background: var(--gold);
    color: #000 !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

/* Ajuste para que el contenido no se pegue al menú fixed */
body {
    padding-top: 80px;
}

/* Hero Section Cinematográfico */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070') no-repeat center center/cover;
    position: relative;
}

/* El degradado oscuro de la imagen */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10,14,20,0.4) 0%, rgba(10,14,20,0.95) 80%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.top-line {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

h1 {
    font-family: var(--font-main);
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Botones como en la imagen */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-gold {
    background: var(--gold);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 34px 130px;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.4s;
}


.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

/* Animaciones de Entrada */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

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

.scroll-icon {
    position: absolute;
    bottom: 30px;
    font-size: 1.5rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* --- Secciones Generales --- */
section {
    padding: 100px 10%;
    background: #0a0e14; /* Manteniendo el fondo oscuro */
}

.section-header h2 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 40px;
}

.gold-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

/* --- Propuesta de Valor --- */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: 0.4s;
}

.value-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* --- Servicios (Tarjetas Estilo Producto) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #151b23;
    overflow: hidden;
    border-radius: 5px;
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: 0.5s;
}

.service-card:hover .service-img {
    filter: grayscale(0%);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-family: var(--font-main);
    color: var(--gold);
    margin-bottom: 10px;
}

.price {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
}

/* --- Timeline --- */
.timeline {
    border-left: 2px solid var(--gold);
    padding-left: 30px;
    margin-left: 20px;
}

.t-item {
    margin-bottom: 50px;
    position: relative;
}

.t-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
}

.t-year {
    font-weight: 700;
    color: var(--gold);
}

/* --- Formulario de Venta --- */
.contact-final {
    background: linear-gradient(rgba(10,14,20,0.8), rgba(10,14,20,0.8)), url('https://images.unsplash.com/photo-1453928334565-ef567c96a5cb?q=80&w=2070');
    background-size: cover;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(21, 27, 35, 0.95);
    padding: 50px;
    border: 1px solid var(--gold);
    text-align: center;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

input, select, textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    margin-bottom: 15px;
}

input:focus { border-color: var(--gold); outline: none; }

.main-footer {
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    background: #05070a;
}

/* --- Estilos para la Página Independiente de Servicios --- */
.services-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80&w=2000') center/cover;
    position: relative;
    padding-top: 80px;
}

.header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,14,20,0.9), rgba(10,14,20,0.7));
}

.header-content { position: relative; z-index: 10; }

.header-content h1 {
    font-family: var(--font-main);
    font-size: 3.5rem;
    color: var(--gold);
}

.services-detail-list {
    background: #0a0e14;
    padding: 100px 8%;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.service-row.reverse { flex-direction: row-reverse; }

.service-image { flex: 1; overflow: hidden; border-radius: 4px; border: 1px solid var(--gold); }
.service-image img { width: 100%; height: 500px; object-fit: cover; transition: 0.5s; filter: brightness(0.7) sepia(20%); }
.service-image:hover img { transform: scale(1.05); filter: brightness(1); }

.service-info { flex: 1; }
.service-cat { color: var(--gold); font-weight: bold; letter-spacing: 2px; }
.service-info h2 { font-family: var(--font-main); font-size: 2.5rem; margin: 15px 0; }
.service-info p { color: #ccc; font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; }

.topics h4 { color: white; margin-bottom: 15px; text-transform: uppercase; font-size: 0.9rem; }
.topics ul { list-style: none; margin-bottom: 40px; }
.topics li { margin-bottom: 12px; color: #ddd; display: flex; align-items: center; gap: 10px; }
.topics i { color: var(--gold); }

/* Animaciones simples */
.animate-left { opacity: 0; transform: translateX(-50px); animation: fadeInSide 1s forwards; }
.animate-right { opacity: 0; transform: translateX(50px); animation: fadeInSide 1s forwards; }

@keyframes fadeInSide {
    to { opacity: 1; transform: translateX(0); }
}

/* --- Estilos para la Página de Aprendizaje/Objetivos --- */
.learning-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=2000') center/cover;
}

.learning-grid-section {
    padding: 100px 8%;
    background: #0a0e14;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}

.learning-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.learning-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.1);
    transition: 0.4s;
}

.learning-card:hover {
    border-color: var(--gold);
    background: rgba(255,255,255,0.05);
    transform: translateY(-10px);
}

.card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-main);
    color: rgba(197, 160, 89, 0.2);
    font-size: 2rem;
    font-weight: bold;
}

.learning-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.learning-card h3 {
    font-family: var(--font-main);
    color: white;
    margin-bottom: 15px;
}

.learning-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Metodología */
.methodology-section {
    padding: 100px 8%;
    background: #05070a;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.method-text { flex: 1; }
.method-text h2 { font-family: var(--font-main); font-size: 2.5rem; margin-bottom: 30px; color: var(--gold); }
.method-text p { color: #ccc; margin-bottom: 30px; }

.m-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.m-icon {
    font-size: 1.5rem;
    color: var(--gold);
    padding-top: 5px;
}

.m-item h4 { color: white; margin-bottom: 5px; }

.method-image { flex: 1; }
.method-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 20px 20px 0px var(--gold); /* Cuadro decorativo */
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 8%;
    background: var(--gold);
    color: #000;
}

.cta-section h2 { font-family: var(--font-main); font-size: 2.5rem; margin-bottom: 20px; }
.cta-section p { font-size: 1.2rem; margin-bottom: 40px; font-weight: 500; }
.cta-section .btn-gold { background: #000; color: var(--gold); border: none; }

/* --- Entregables --- */
.deliverables-section {
    background: #0a0e14;
    padding: 80px 8%;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.deliverables-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.d-item {
    background: rgba(197, 160, 89, 0.03);
    padding: 30px;
    border-radius: 4px;
    flex: 1;
    text-align: center;
    border: 1px dashed rgba(197, 160, 89, 0.3);
}

.d-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.d-item h4 {
    color: white;
    margin-bottom: 10px;
    font-family: var(--font-main);
}

/* --- Acordeón de Temario --- */
.curriculum-section {
    background: #05070a;
    padding: 100px 8%;
}

.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    background: #111;
    margin-bottom: 15px;
    border: 1px solid #222;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--gold);
    font-weight: 600;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #1a1a1a;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #0d0d0d;
}

.accordion-content p {
    padding: 20px 0;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Clase activa para JS */
.accordion-item.active .accordion-content {
    max-height: 200px;
}
.accordion-item.active i {
    transform: rotate(45deg);
    color: white;
}

/* --- Detalle de Aprendizaje --- */
.detailed-learning {
    background: #0a0e14;
    padding: 100px 8%;
}

.learning-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
}

.learning-row.reverse { flex-direction: row-reverse; }

.learning-text { flex: 2; }
.learning-text h3 {
    font-family: var(--font-main);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detailed-list {
    list-style: none;
    margin-top: 25px;
}

.detailed-list li {
    background: rgba(255,255,255,0.03);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    border-left: 2px solid var(--gold);
    color: #ddd;
    transition: 0.3s;
}

.detailed-list li:hover {
    background: rgba(197, 160, 89, 0.1);
    transform: scale(1.02);
}

.detailed-list li strong { color: var(--gold); }

.learning-benefit {
    flex: 1;
    display: flex;
    justify-content: center;
}

.benefit-box {
    width: 250px;
    height: 250px;
    border: 1px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transform: rotate(45deg); /* Estilo diamante */
    transition: 0.5s;
}

.benefit-box:hover {
    background: var(--gold);
    color: #000;
    transform: rotate(45deg) scale(1.1);
}

.benefit-box * { transform: rotate(-45deg); } /* Enderezar texto */

.benefit-box span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.benefit-box h4 { font-family: var(--font-main); font-size: 1.5rem; }

/* --- Matriz de Habilidades --- */
.skills-matrix {
    padding: 80px 8%;
    background: #05070a;
    display: flex;
    justify-content: center;
}

.matrix-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    max-width: 1000px;
}

.skill-group h4 {
    margin-bottom: 30px;
    font-family: var(--font-main);
    color: white;
    text-align: center;
}

.skill-bar {
    background: rgba(255,255,255,0.1);
    height: 35px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.skill-bar .fill {
    position: absolute;
    left: 0; top: 0; height: 100%;
    background: #333;
    z-index: 1;
}

.skill-bar .fill.gold { background: var(--gold); }

.skill-bar span {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Sección Proceso --- */
.process-section {
    padding: 100px 8%;
    background: #0a0e14;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.step-card:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.step-num {
    font-family: var(--font-main);
    font-size: 3.5rem;
    color: rgba(197, 160, 89, 0.1);
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-content h4 {
    font-family: var(--font-main);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.step-content p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-card.highlight {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid var(--gold);
}

/* --- Banner de Contadores --- */
.counters-banner {
    background: var(--gold);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 8%;
    color: #000;
}

.counter-item {
    text-align: center;
}

.counter-item .number {
    display: block;
    font-size: 3rem;
    font-family: var(--font-main);
    font-weight: 800;
}

.counter-item .label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.counter-divider {
    width: 1px;
    height: 60px;
    background: rgba(0,0,0,0.2);
}
/* --- Sección Sin Diapositivas --- */
.no-slides-section {
    padding: 120px 8%;
    background: linear-gradient(to right, #05070a 50%, #0a0e14 50%);
    position: relative;
    overflow: hidden;
}

.oratory-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.oratory-content {
    flex: 1.2;
}

.oratory-content h2 {
    font-family: var(--font-main);
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 20px 0;
    color: var(--gold);
}

.light-text {
    color: white;
    font-weight: 300;
}

.main-p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-list .f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.f-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.f-item h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.f-item p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Lado Visual */
.oratory-visual {
    flex: 0.8;
    position: relative;
}

.oratory-img-container {
    position: relative;
    border: 1px solid var(--gold);
    padding: 15px;
}

.oratory-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
    display: block;
}

.img-overlay-gold {
    position: absolute;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
    background: rgba(197, 160, 89, 0.1);
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--gold);
    color: #000;
    padding: 30px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-main);
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Página de Metodología --- */
.method-header {
    height: 45vh;
    background: #05070a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.method-header h1 {
    font-family: var(--font-main);
    font-size: 3.5rem;
    color: var(--gold);
    margin: 10px 0;
}

.manifesto {
    padding: 100px 15%;
    background: #0a0e14;
    text-align: center;
}

.manifesto-text h2 {
    font-family: var(--font-main);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.manifesto-text p {
    font-size: 1.2rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Pilares */
.pillars-section {
    padding: 80px 8%;
    background: #05070a;
}

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

.pillar-item {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.01);
    transition: 0.4s;
    text-align: center;
}

.pillar-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.pillar-icon {
    font-family: var(--font-main);
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 20px;
    opacity: 0.5;
}

.pillar-item h3 {
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-main);
}

/* Flujo de Proceso */
.process-flow {
    padding: 100px 8%;
    background: #0a0e14;
    text-align: center;
}

.flow-steps {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
}

.flow-step {
    flex: 1;
    padding: 0 20px;
}

.flow-step .circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 1.5rem;
}

.flow-step h4 { color: white; margin-bottom: 15px; }
.flow-step p { color: #888; font-size: 0.9rem; }

/* --- Estilo Premium de Contacto --- */
.contact-premium {
    height: 100vh;
    background: #05070a;
}

.split-layout {
    display: flex;
    height: 100%;
}

/* Lado de la Imagen */
.contact-visual {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&q=80&w=1200') center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.visual-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, #05070a 10%, rgba(5,7,10,0.1));
}

.visual-text {
    position: relative;
    z-index: 5;
}

.visual-text h2 {
    font-size: 3rem;
    color: white;
    max-width: 400px;
}

/* Lado del Contenido */
.contact-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05070a;
    padding: 60px;
}

.content-inner {
    max-width: 500px;
    width: 100%;
}

.contact-header h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.gold-line-left {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 30px;
}

.contact-header p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* El Botón "Stealth" (Elegante) */
.premium-wa-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #0a0e14;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 25px;
    transition: 0.5s;
    margin-bottom: 40px;
}

.wa-icon-box {
    font-size: 2.5rem;
    color: #25D366;
    margin-right: 25px;
}

.wa-text-box strong {
    display: block;
    color: white;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wa-text-box small {
    color: var(--gold);
    font-weight: 600;
}

.premium-wa-link:hover {
    border-color: var(--gold);
    background: #111;
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
}

/* Garantías */
.g-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.g-row i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 5px;
}

.g-row p {
    color: #888;
    font-size: 0.9rem;
}

.back-link a {
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.back-link a:hover { color: var(--gold); }

/* --- Estilos Página FAQ --- */
.faq-header {
    padding: 150px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #05070a, #0a0e14);
}

.faq-wrapper {
    max-width: 900px;
    margin: 40px auto;
}

.faq-group {
    margin-bottom: 60px;
}

.faq-group h3 {
    color: var(--gold);
    font-family: var(--font-main);
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #efefef;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(197, 160, 89, 0.05);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-left: 3px solid var(--gold);
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px; /* Ajustar según contenido */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-cta {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* --- Página de Universidades --- */
.unis-header {
    padding: 180px 0 80px;
    background: linear-gradient(to bottom, #05070a, #0a0e14);
    text-align: center;
}

.unis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.uni-card {
    background: #ffffff;
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 40px;
    text-decoration: none;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.uni-logo-box {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    filter: grayscale(100%) brightness(0.8);
    transition: 0.5s;
}

.uni-logo-box img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}

.uni-info h3 {
    color: white;
    font-family: var(--font-main);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.uni-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.visit-link {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
}

/* Efectos Hover */
.uni-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.uni-card:hover .uni-logo-box {
    filter: grayscale(0%) brightness(1);
}

.uni-card:hover .visit-link {
    opacity: 1;
    transform: translateY(0);
}

/* Frase de Cierre */
.uni-quote {
    padding: 100px 10%;
    background: #05070a;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
}

.uni-quote blockquote {
    font-family: var(--font-main);
    font-size: 2rem;
    color: #eee;
    font-style: italic;
    margin: 30px 0;
}

.uni-quote cite {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
/* Ajuste de Grilla para 4 elementos */
@media (min-width: 1100px) {
    .unis-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Impact Stats --- */
.impact-stats {
    background: var(--gold);
    padding: 60px 0;
    color: #000;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-family: var(--font-main);
    font-weight: 800;
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,0,0,0.2);
}
/* --- Nuevo Diseño de Tarjetas Académicas --- */
.unis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.uni-card {
    position: relative;
    background: linear-gradient(145deg, #121821, #0a0e14);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 60px 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px; /* Manteniendo el toque institucional */
}

/* Efecto de luz interna al pasar el mouse */
.uni-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: 0.5s;
}

.uni-card:hover::before {
    opacity: 1;
}

/* Contenedor del Logo con Efecto Espejo */
.uni-logo-box {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.2);
    transition: 0.5s ease;
    z-index: 2;
}

.uni-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: 0.5s ease;
}

/* Títulos y textos */
.uni-info h3 {
    font-family: var(--font-main);
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.uni-info p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    height: 45px; /* Mantiene la alineación */
}

/* Link animado */
.visit-link {
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
    transition: 0.4s;
}

/* HOVER EFFECTS: LA MAGIA */
.uni-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(197, 160, 89, 0.1);
}

.uni-card:hover .uni-logo-box {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.4);
}

.uni-card:hover .uni-logo-box img {
    filter: grayscale(0);
}

.uni-card:hover .visit-link {
    color: var(--gold);
    padding-left: 10px;
    padding-right: 10px;
}

/* ==========================================================================
   CONFIGURACIÓN RESPONSIVA GLOBAL
   ========================================================================== */

@media (max-width: 1024px) {
    /* Navbar móvil */
    .menu-toggle {
        display: flex;
        z-index: 2001;
    }



    /* Ajuste de Hero para Tablets */
    h1 { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    /* Ajustes de Secciones */
    section {
        padding: 60px 5%;
    }

    .pillar-grid {
        grid-template-columns: 1fr; /* Cambia de 3 columnas a 1 sola */
        gap: 20px; /* Reducimos el espacio para que no sea tan largo el scroll */
    }

    .pillar-item {
        padding: 30px 20px; /* Ajustamos el espacio interno */
    }
    /* Hero Section */
    h1 { font-size: 2.5rem; }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .btn-gold, .btn-outline {
        width: 100%;
        text-align: center;
    }

    /* Servicios y Filas de Aprendizaje */
    .service-row, .learning-row, .oratory-wrapper, .method-content {
        flex-direction: column !important; /* Fuerza a que todo sea vertical */
        text-align: center;
        gap: 40px;
    }

    .service-image, .method-image, .oratory-visual {
        width: 100%;
    }

    .service-image img, .method-image img {
        height: auto;
        max-height: 350px;
    }

    /* Matriz de Habilidades */
    .matrix-container {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        gap: 40px;
    }

    /* Estadísticas e Impacto */
    .stats-container, .counters-banner, .flow-steps, .deliverables-flex {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider, .counter-divider {
        display: none; /* Elimina líneas verticales que estorban en móvil */
    }

    /* Sección de Contacto Premium */
    .split-layout {
        flex-direction: column;
    }

    .contact-visual {
        display: none; /* Oculta la imagen lateral para ahorrar espacio */
    }

    .contact-content {
        padding: 40px 5%;
        height: auto;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    /* Diapositivas / Oratoria */
    .no-slides-section {
        background: #05070a;
        text-align: center;
    }

    .experience-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto;
        width: fit-content;
    }

    /* Footer */
    .main-footer {
        padding: 40px 20px;
    }
}

/* Ajustes para pantallas extra pequeñas */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    .top-line { font-size: 0.7rem; letter-spacing: 2px; }
    .benefit-box {
        width: 180px;
        height: 180px;
    }
    .pillar-item {
        padding: 20px;
    }
}

.activee {
    color: var(--gold) !important;
    position: relative;
}


