/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --bg-deep: #05070a;
    --neon-blue: #00f2ff;
    --text-white: #ffffff;
    --text-dim: #94a3b8;
    --red-alert: #ff4d4d;
    --purple-royal: #9d00ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =========================================
   2. NAVBAR & MENÚ RESPONSIVE
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-blue);
}

/* Botón Hamburguesa (Móvil) */
.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Lógica Responsive del Navbar */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* =========================================
   3. HERO SECTION (PORTADA)
   ========================================= */
.hero-impact {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stairs-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
}

.vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, var(--bg-deep) 90%);
}

.relative-content {
    position: relative;
    z-index: 10;
}

/* Tipografía Hero */
.main-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.problem-desc {
    text-align: center;
    max-width: 900px;
    /*margin: 0 auto 80px;*/
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1.8;
}

.white-text {
    color: white;
    font-weight: 700;
}

/* Grilla Comparativa (Glass Cards) */
.comparison-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.right {
    text-align: right;
}

.category-label {
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.4s ease;
}

.right .glass-card {
    flex-direction: row-reverse;
}

.glass-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.glass-card i {
    font-size: 2rem;
    color: var(--text-white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.solution i {
    color: var(--neon-blue);
}

.glass-card h3 {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.cta-wrap {
    text-align: center;
    margin-top: 100px;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .comparison-overlay {
        flex-direction: column;
    }

    .right {
        text-align: left;
    }

    .right .glass-card {
        flex-direction: row;
    }

    .main-question {
        font-size: 2.2rem;
    }

    .stairs-cover-img {
        opacity: 0.4;
    }
}

/* =========================================
   4. BOTONES GLOBALES
   ========================================= */
.btn-palt-main {
    display: inline-block;
    padding: 25px 60px;
    border: 2px solid var(--neon-blue);
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
    background: rgba(0, 242, 255, 0.05);
    transition: 0.4s;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.btn-palt-main:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 50px var(--neon-blue);
    transform: scale(1.05);
}

.btn-palt-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.btn-palt-secondary:hover {
    background: #00f2ff;
    color: #05070a;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 1rem;
}

/* =========================================
   5. STATUS BOARD (ROADMAP & PRICING)
   ========================================= */
.program-status-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(90deg, #05070a 10%, rgba(5, 7, 10, 0.85) 60%, rgba(5, 7, 10, 0.6) 100%), url('../img/hrfest.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.status-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Tabs de Ciclos */
.cycle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #888;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cycle-btn:hover {
    border-color: #fff;
    color: #fff;
}

.cycle-btn.active {
    background: #00f2ff;
    border-color: #00f2ff;
    color: #05070a;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

.active-cycle {
    animation: fadeIn 0.5s ease-in-out;
}

/* Timeline */
.timeline-steps {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.step-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}

.step-marker {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    border: 2px solid #555;
    z-index: 2;
}

.step-marker.current {
    background: #05070a;
    border-color: #00f2ff;
    width: 16px;
    height: 16px;
    left: -28px;
    animation: pulse 2s infinite;
}

.step-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.roadmap-title {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 50px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Pricing Card */
.pricing-card {
    background: rgba(20, 25, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 255, 0.2);
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #00f2ff;
    color: #05070a;
    padding: 8px 25px;
    border-bottom-left-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: -5px 5px 15px rgba(0, 242, 255, 0.2);
}

.new-price {
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    display: block;
    margin: 10px 0;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.old-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.1rem;
}

.benefits-check {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    color: #ddd;
    font-size: 0.95rem;
    line-height: 2;
}

.benefits-check i {
    color: #00f2ff;
    margin-right: 12px;
}

/* Responsive Status Board */
@media (max-width: 900px) {
    .program-status-section {
        background-attachment: scroll;
        padding: 60px 0;
        background-position: center;
    }

    .status-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .roadmap-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 30px;
    }
}

/* =========================================
   6. SÍLABO (ACCORDION & LEARNING ROUTE) - CORREGIDO
   ========================================= */
.syllabus-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05); 
    transition: all 0.3s ease;
}

.syllabus-item:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion-btn.active {
    background: rgba(0, 242, 255, 0.05);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.module-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.accordion-btn.active .module-number {
    color: #00f2ff;
}

/* --- CORRECCIÓN DE TÍTULOS --- */
.module-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff; /* Asegura color blanco al contenedor */
}

.module-title h4 {
    margin: 0;
    color: #ffffff !important; /* Fuerza el blanco */
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.module-duration {
    font-size: 0.85rem;
    color: #94a3b8; /* Gris claro para el subtítulo */
    display: block;
    margin-top: 5px;
}

.arrow-icon {
    color: #fff;
    transition: transform 0.3s ease;
}

.accordion-btn.active .arrow-icon {
    transform: rotate(180deg);
    color: #00f2ff;
}

/* Panel desplegable */
.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(255, 255, 255, 0.02); 
    border-top: 1px solid rgba(255,255,255,0.05);
}

.panel-content {
    padding: 25px 25px 35px 80px; /* Ajuste de padding */
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Learning Route */
.learning-route {
    position: relative;
    padding-left: 10px;
    margin-top: 20px;
}

.learning-route::before {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 30px;
    left: 30px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.route-node {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.node-icon {
    width: 42px;
    height: 42px;
    background: #0d1117;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.route-node:hover .node-icon {
    border-color: #00f2ff;
    color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.highlight-node .node-icon {
    border-color: #00f2ff;
    color: #00f2ff;
    background: rgba(0, 242, 255, 0.05);
}

.finish-node .node-icon {
    border-color: #ff0055;
    color: #ff0055;
    background: rgba(255, 0, 85, 0.05);
}

.node-info h5 {
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 700;
}

/* Choice Cards (Capstone) */
.choice-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 25px 25px 35px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left-width: 5px !important;
    position: relative;
    overflow: hidden;
}

.choice-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.choice-card h5 {
    color: #fff; /* Asegura título blanco en tarjetas */
    font-weight: 700;
    margin-bottom: 10px;
}

/* Elite Challenge Card */
.elite-challenge {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05) 0%, rgba(157, 0, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 50px 30px 30px 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.elite-challenge:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.elite-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 6px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .panel-content {
        padding: 20px; /* Menos padding en móvil */
    }
    .module-header {
        gap: 15px;
    }
    .module-number {
        font-size: 1.5rem;
    }
    .capstone-choice {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   7. SECCIÓN AUTORIDAD & MENTORES
   ========================================= */
.authority-section {
    position: relative;
    overflow: hidden;
    background: #05070a;
    padding: 100px 0;
}

.network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

/* Tipografía de Sección */
.auth-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.auth-subtitle {
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- GRID PRINCIPAL RESPONSIVE (AUTORIDAD) --- */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 Columnas en Desktop */
    gap: 60px;
    margin-top: 60px;
    align-items: flex-start;
}

/* Estilos internos de Autoridad */
.founder-profile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.founder-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.founder-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    overflow: hidden;
    border: 2px solid #00f2ff;
    flex-shrink: 0;
}

.founder-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    color: #fff;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.2;
}

.founder-role {
    color: #00f2ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.founder-quote {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.credentials-list {
    list-style: none;
    padding: 0;
    color: #aaa;
    font-size: 0.9rem;
}

.credentials-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.credentials-list i {
    color: #00f2ff;
    margin-top: 4px;
}

.method-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.feature-block {
    margin-bottom: 30px;
}

.feature-block h4 {
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-block h4 i {
    color: #00f2ff;
    margin-right: 15px;
    font-size: 1.4rem;
}

.feature-block p {
    color: #aaa;
    margin-left: 40px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trust-badge {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-label {
    color: #666;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px 30px;
}

.std-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.std-item i {
    color: #00f2ff;
    font-size: 1.5rem;
}

.std-item span {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.2;
}

.std-item .std-sub {
    color: #888;
    font-size: 0.7rem;
    font-weight: 400;
}

/* --- ESTILOS MENTORES (GRID & TABS) --- */
.mentors-tabs {
    position: relative;
    z-index: 10;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.tab-btn.active {
    background: #00f2ff;
    color: #05070a;
    border-color: #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.tab-btn:nth-child(2).active {
    background: #9d00ff;
    color: #fff;
    border-color: #9d00ff;
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
}

.tab-content {
    display: none;
    animation: slideUpFade 0.6s ease forwards;
}

.tab-content.active-tab {
    display: grid;
}

/* Grid de Mentores Automática (Responsive por defecto) */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.mentor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.mentor-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.mentor-img-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
}

.mentor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.mentor-card:hover .mentor-img-wrap img {
    border-color: #00f2ff;
}

.exp-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: #00f2ff;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 242, 255, 0.3);
}

.mentor-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.mentor-info .role-area {
    color: #00f2ff;
    font-weight: 600;
}

.mentor-info .divider {
    height: 1px;
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px auto;
}

/* =========================================
   8. MEDIA QUERIES (HACE LA MAGIA RESPONSIVE)
   ========================================= */

@media (max-width: 992px) {

    /* Convierte la grilla principal de autoridad en 1 sola columna */
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Cambia el orden: Perfil primero, texto después */
    .founder-profile {
        order: 1;
    }

    .methodology-content {
        order: 2;
    }

    .auth-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {

    /* Ajustes específicos para celulares */
    .section-header {
        text-align: left;
        /* A veces se lee mejor a la izquierda en móvil */
    }

    .auth-title {
        font-size: 1.8rem;
    }

    .founder-header {
        flex-direction: column;
        text-align: center;
    }

    .founder-img {
        margin-bottom: 10px;
    }

    .feature-block p {
        margin-left: 0;
        /* Quita la indentación en móvil para ganar espacio */
        padding-left: 0;
    }

    .standards-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columnas de iconos en móvil */
    }
}

/* =========================================
   9. ANIMACIONES
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 242, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
    }
}

/* =========================================
   AJUSTE DE ESPACIO PARA MÓVILES (PRICING)
   ========================================= */

@media (max-width: 600px) {
    /* 1. Ganar espacio lateral reduciendo el margen del contenedor general */
    .container {
        padding: 0 20px; /* Antes 40px. Esto regala 40px extra de ancho a la tarjeta */
    }

    /* 2. Ajustes específicos de la Tarjeta de Precio */
    .pricing-card {
        /* Más espacio vertical (40px) y lateral ajustado (25px) */
        padding: 45px 25px !important; 
        margin-top: 20px;
    }

    /* 3. Reducir el tamaño del número "60" para que no se vea desproporcionado */
    .new-price {
        font-size: 3.8rem; /* Bajamos de 4.5rem para que encaje mejor */
        margin: 15px 0;
    }

    /* 4. Ajustar el contenedor del precio para que los elementos (S/. y USD) se alineen mejor */
    .new-price-container {
        display: flex;
        flex-direction: column; /* Apila el precio en soles y dólares verticalmente si es necesario */
        align-items: center;
        justify-content: center;
    }

    /* 5. Darle aire a la lista de beneficios */
    .benefits-check {
        margin-bottom: 40px; /* Más espacio antes del botón */
    }
    
    .benefits-check li {
        margin-bottom: 15px; /* Separar más los items de la lista */
        line-height: 1.5;
    }

    /* 6. Botón más grande y cómodo de presionar */
    .btn-palt-main.full-width {
        padding: 18px; /* Botón más alto */
        font-size: 0.95rem;
        white-space: normal; /* Permite que el texto baje si es muy largo */
    }
}