/* ===== ACADEMIA TRANSFORMADA - DISEÑO TECNOLÓGICO ===== */

/* Variables de la Academia */
:root {
    --academia-primary: #FF6B35;
    --academia-secondary: #004E89;
    --academia-accent: #00D4AA;
    --academia-dark: #1A1A2E;
    --academia-light: #F8F9FA;
    --academia-glow: #FF6B35;
    --academia-gradient: linear-gradient(135deg, #FF6B35, #FF8E53);
    --academia-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    --academia-border: 2px solid rgba(255, 107, 53, 0.3);
}

/* ===== SECCIÓN ACADEMIA TRANSFORMADA ===== */
.nuestra-academia {
    position: relative;
    padding: 8rem 0;
    background: var(--academia-dark);
    overflow: hidden;
}

/* ===== TÍTULO PRINCIPAL TRANSFORMADO ===== */
.academia-main-title {
    font-size: 4rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--academia-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
    animation: titleGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.academia-main-title .title-gradient {
    background: linear-gradient(135deg, var(--academia-primary), var(--academia-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
}

.academia-main-subtitle {
    font-size: 1.8rem;
    color: var(--academia-light);
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.academia-main-subtitle .subtitle-accent {
    color: var(--academia-accent);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
    animation: subtitleGlow 4s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    0% { 
        filter: drop-shadow(0 0 15px rgba(0, 212, 170, 0.4));
        text-shadow: 0 0 20px rgba(0, 212, 170, 0.6);
    }
    100% { 
        filter: drop-shadow(0 0 25px rgba(0, 212, 170, 0.8));
        text-shadow: 0 0 30px rgba(0, 212, 170, 0.9);
    }
}

/* Fondo Tecnológico */
.nuestra-academia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.05) 50%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

/* Grid de Fondo */
.nuestra-academia::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Contenedor Principal */
.academia-content {
    position: relative;
    z-index: 2;
}

/* ===== HERO TRANSFORMADO ===== */
.academia-hero {
    text-align: center;
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background: rgba(255, 107, 53, 0.05);
    border: var(--academia-border);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.academia-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.academia-hero-content {
    position: relative;
    z-index: 2;
}

.academia-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--academia-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6)); }
}

.academia-hero-subtitle {
    font-size: 1.5rem;
    color: var(--academia-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.academia-hero-highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--academia-light);
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.highlight-reason {
    font-size: 1.1rem;
    color: var(--academia-accent);
    font-style: italic;
    padding: 1rem 2rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.3);
    backdrop-filter: blur(10px);
}

/* ===== ESTADÍSTICAS FLOTANTES ===== */
.academia-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    position: relative;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: var(--academia-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(2) {
    animation-delay: -2s;
}

.stat-item:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--academia-shadow);
    border-color: var(--academia-primary);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--academia-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: var(--academia-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== SECCIONES INTERACTIVAS ===== */
.academia-section {
    margin-bottom: 5rem;
    padding: 3rem;
    background: rgba(255, 107, 53, 0.03);
    border: var(--academia-border);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.academia-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.academia-section:hover::before {
    left: 100%;
}

.academia-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--academia-shadow);
    border-color: var(--academia-primary);
}

.academia-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.academia-section-header h3 {
    color: var(--academia-primary);
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.academia-section-header h3 i {
    font-size: 1.8rem;
    color: var(--academia-accent);
}

.academia-badge {
    background: var(--academia-gradient);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== GRID DE BENEFICIOS HOVER ===== */
.academia-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    position: relative;
    padding: 2.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--academia-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--academia-shadow);
    border-color: var(--academia-primary);
}

.benefit-icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--academia-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.benefit-card h4 {
    position: relative;
    z-index: 2;
    color: var(--academia-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    position: relative;
    z-index: 2;
    color: var(--academia-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== SELECTOR DE HORARIOS REVOLUCIONARIO ===== */
.horarios-selector {
    margin-top: 3rem;
}

.selector-header {
    text-align: center;
    margin-bottom: 4rem;
}

.selector-header h4 {
    color: var(--academia-light);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.selector-header p {
    color: var(--academia-accent);
    font-size: 1.2rem;
}

.paises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pais-selector {
    cursor: pointer;
    transition: all 0.4s ease;
}

.pais-selector:hover .pais-card {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.pais-card {
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.pais-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--academia-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pais-selector:hover .pais-card::before {
    opacity: 0.1;
}

.pais-flag-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 53, 0.3));
}

.pais-card h5 {
    color: var(--academia-primary);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pais-timezone {
    color: var(--academia-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.pais-indicator {
    color: var(--academia-primary);
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.pais-selector:hover .pais-indicator {
    transform: translateY(5px) scale(1.2);
    color: var(--academia-accent);
}

/* ===== DISPLAY DE HORARIOS ===== */
.horarios-display {
    background: rgba(255, 107, 53, 0.05);
    border: var(--academia-border);
    border-radius: 25px;
    padding: 4rem;
    text-align: center;
    backdrop-filter: blur(15px);
}

.horarios-placeholder {
    color: var(--academia-light);
}

.placeholder-icon {
    font-size: 5rem;
    color: var(--academia-primary);
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.horarios-placeholder h4 {
    color: var(--academia-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.horarios-placeholder p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--academia-light);
}

/* ===== DETALLE DE HORARIOS ===== */
.horarios-pais-detalle {
    background: rgba(255, 107, 53, 0.08);
    border: 3px solid var(--academia-primary);
    border-radius: 25px;
    margin-top: 2rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: slideInHorarios 0.6s ease-out;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Clase para mostrar horarios */
.horarios-pais-detalle.mostrar-horarios {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: slideInHorarios 0.6s ease-out;
}

@keyframes slideInHorarios {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pais-detalle-header {
    background: var(--academia-gradient);
    color: white;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pais-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pais-info .pais-flag {
    font-size: 3rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.pais-info h4 {
    font-size: 2.2rem;
    margin: 0 0 0.75rem 0;
    font-weight: 800;
}

.pais-info .pais-timezone {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.cerrar-horarios {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cerrar-horarios:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.horario-dias-detalle {
    padding: 2.5rem;
}

.dia-horario-detalle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
}

.dia-horario-detalle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--academia-primary);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.dia-horario-detalle:last-child {
    margin-bottom: 0;
}

.dia-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.dia-numero {
    background: var(--academia-gradient);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.dia-nombre {
    color: var(--academia-light);
    font-weight: 700;
    font-size: 1.3rem;
}

.horario-info {
    text-align: right;
}

.horario-tiempo {
    display: block;
    color: var(--academia-primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.horario-duracion {
    color: var(--academia-accent);
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* ===== GRID DE LOGROS ===== */
.logros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.logro-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.logro-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--academia-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logro-item:hover::before {
    opacity: 0.1;
}

.logro-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--academia-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.logro-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: var(--academia-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    transition: all 0.4s ease;
}

.logro-item:hover .logro-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.logro-item h4 {
    position: relative;
    z-index: 2;
    color: var(--academia-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.logro-item p {
    position: relative;
    z-index: 2;
    color: var(--academia-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== PRECIOS PREMIUM ===== */
.academia-pricing {
    margin-bottom: 5rem;
    padding: 4rem;
    background: rgba(255, 107, 53, 0.05);
    border: var(--academia-border);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h3 {
    color: var(--academia-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pricing-subtitle {
    color: var(--academia-accent);
    font-size: 1.3rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-card {
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.pricing-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--academia-primary), var(--academia-accent));
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.pricing-label .label-text {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-label .label-flag {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.pricing-card.primary {
    background: rgba(255, 107, 53, 0.1);
    border: 3px solid var(--academia-primary);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card.secondary {
    background: rgba(0, 212, 170, 0.05);
    border: 3px solid rgba(0, 212, 170, 0.3);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.4);
}

.pricing-amount {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    margin: 0;
    padding: 2rem 0;
}

.currency {
    font-size: 2rem;
    color: var(--academia-light);
    font-weight: 600;
}

.amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--academia-primary);
    margin: 0 0.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.period {
    font-size: 1.3rem;
    color: var(--academia-accent);
    font-weight: 600;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.pricing-note {
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-note:hover {
    background: rgba(0, 212, 170, 0.15);
    border-color: var(--academia-accent);
    transform: translateY(-2px);
}

.pricing-note .note-icon {
    background: linear-gradient(135deg, var(--academia-accent), #00d4aa);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.pricing-note .note-icon i {
    color: white;
    font-size: 1.5rem;
}

.pricing-note .note-content p {
    color: var(--academia-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-note .note-content strong {
    color: var(--academia-accent);
    font-weight: 700;
}

.feature {
    color: var(--academia-light);
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--academia-primary);
    transform: translateX(5px);
}

.pricing-terms {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-terms p {
    color: var(--academia-light);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.pricing-terms i {
    color: var(--academia-accent);
    font-size: 1.3rem;
}

/* ===== CTA FINAL REVOLUCIONARIO ===== */
.academia-cta-final {
    text-align: center;
    padding: 6rem 4rem;
    background: rgba(255, 107, 53, 0.08);
    border: var(--academia-border);
    border-radius: 35px;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
}

.academia-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-hero {
    margin-bottom: 4rem;
}

.cta-sparkle {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    animation: sparkleRotate 3s ease-in-out infinite;
}

@keyframes sparkleRotate {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 1; }
}

.cta-hero h3 {
    color: var(--academia-light);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    background: var(--academia-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
}

.cta-hero p {
    color: var(--academia-accent);
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.cta-main-action {
    position: relative;
}

.btn-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 2rem 4rem;
    border-radius: 80px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    transition: all 0.5s ease;
    overflow: hidden;
    background: var(--academia-gradient);
    color: white;
    border: none;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transform-style: preserve-3d;
}

.btn-cta-primary:hover {
    transform: translateY(-10px) scale(1.05) rotateX(10deg);
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.6);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.btn-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 80px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-primary:hover .btn-glow {
    opacity: 1;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    color: var(--academia-light);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.benefit-tag:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--academia-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.benefit-tag i {
    color: var(--academia-accent);
    font-size: 1.2rem;
}

/* ===== BOTÓN CONOCER ENTRENADOR ===== */
.entrenador-cta {
    margin-top: 3rem;
    text-align: center;
}

.btn-conocer-entrenador {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--academia-accent), #00b894);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-conocer-entrenador::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-conocer-entrenador:hover::before {
    left: 100%;
}

.btn-conocer-entrenador:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 212, 170, 0.6);
}

.btn-conocer-entrenador i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-conocer-entrenador:hover i:last-child {
    transform: translateX(5px);
}

/* ===== MODAL DEL ENTRENADOR ===== */
.modal-entrenador {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-entrenador.active {
    display: flex;
    opacity: 1;
}

.modal-entrenador-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-entrenador-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    margin: auto;
    background: var(--academia-dark);
    border: 3px solid var(--academia-accent);
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 212, 170, 0.4);
    overflow: hidden;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-entrenador-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, var(--academia-accent), #00b894);
    color: white;
}

.modal-entrenador-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-entrenador-header h3 i {
    font-size: 1.6rem;
}

.modal-entrenador-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.modal-entrenador-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.modal-entrenador-content {
    padding: 2rem 3rem 3rem;
    background: var(--academia-dark);
}

/* ===== RESPONSIVIDAD ===== */
@media (max-width: 768px) {
    .nuestra-academia {
        padding: 3rem 0;
        margin: 0;
    }
    
    .academia-main-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .academia-main-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-conocer-entrenador {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .modal-entrenador-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-entrenador-header {
        padding: 1.5rem 2rem;
    }
    
    .modal-entrenador-header h3 {
        font-size: 1.4rem;
    }
    
    .modal-entrenador-content {
        padding: 1.5rem 2rem 2rem;
    }
    
    .academia-hero {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
        overflow: visible;
    }
    
    .academia-hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .academia-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .academia-hero-text {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .academia-hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .academia-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .academia-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
        max-width: 98% !important;
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
        width: calc(100% - 0.5rem) !important;
    }
    
    .stat-item {
        padding: 0.8rem !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .stat-number {
        font-size: 1.4rem;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.1;
    }
    
    .academia-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .academia-section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .academia-section-header h3 {
        font-size: 1.4rem;
    }
    
    .academia-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .academia-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card h4 {
        font-size: 1.3rem;
    }
    
    .benefit-card p {
        font-size: 1rem;
    }
    
    .paises-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .pais-card {
        padding: 1.5rem 1rem;
    }
    
    .pais-flag-large {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .pais-card h5 {
        font-size: 1.3rem;
    }
    
    .pais-timezone {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .horarios-display {
        padding: 2rem 1rem;
    }
    
    .placeholder-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .horarios-placeholder h4 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .horarios-placeholder p {
        font-size: 1rem;
    }
    
    .pais-detalle-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pais-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pais-info .pais-flag {
        font-size: 2rem;
    }
    
    .pais-info h4 {
        font-size: 1.5rem;
        margin: 0;
    }
    
    .pais-info .pais-timezone {
        font-size: 1rem;
    }
    
    .cerrar-horarios {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .horario-dias-detalle {
        padding: 1.5rem;
    }
    
    .dia-horario-detalle {
        padding: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .dia-info {
        justify-content: center;
        gap: 1rem;
    }
    
    .dia-numero {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dia-nombre {
        font-size: 1.1rem;
    }
    
    .horario-info {
        text-align: center;
    }
    
    .horario-tiempo {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .horario-duracion {
        font-size: 0.9rem;
    }
    
    .logros-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .logro-item {
        padding: 1.5rem;
    }
    
    .logro-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .logro-item h4 {
        font-size: 1.2rem;
    }
    
    .logro-item p {
        font-size: 0.9rem;
    }
    
    .academia-pricing {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }
    
    .pricing-header {
        margin-bottom: 2rem;
    }
    
    .pricing-header h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .pricing-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }
    
    .pricing-label {
        top: -12px;
        padding: 0.6rem 1.2rem;
    }
    
    .pricing-label .label-text {
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }
    
    .pricing-label .label-flag {
        font-size: 1rem;
    }
    
    .pricing-amount {
        min-height: 100px;
        padding: 1.5rem 0;
    }
    
    .currency {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .period {
        font-size: 1.1rem;
    }
    
    .pricing-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-note {
        padding: 1.5rem;
        margin: 1.5rem 0;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .pricing-note .note-icon {
        width: 40px;
        height: 40px;
    }
    
    .pricing-note .note-icon i {
        font-size: 1.2rem;
    }
    
    .pricing-note .note-content p {
        font-size: 1rem;
    }
    
    .feature {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .pricing-terms {
        gap: 0.75rem;
    }
    
    .pricing-terms p {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .pricing-terms i {
        font-size: 1.1rem;
    }
    
    .academia-cta-final {
        padding: 3rem 1rem;
    }
    
    .cta-hero {
        margin-bottom: 3rem;
    }
    
    .cta-sparkle {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-hero h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-hero p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        gap: 2rem;
    }
    
    .btn-cta-primary {
        padding: 1.25rem 2rem;
    }
    
    .btn-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .btn-text {
        align-items: center;
        gap: 0.25rem;
    }
    
    .btn-title {
        font-size: 1.2rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
    
    .cta-benefits {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-tag {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .benefit-tag i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nuestra-academia {
        padding: 2rem 0;
        margin: 0;
    }
    
    .academia-main-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .academia-main-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-conocer-entrenador {
        padding: 1rem 2rem;
        font-size: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-entrenador-container {
        width: 98%;
        max-height: 98vh;
    }
    
    .modal-entrenador-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-entrenador-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-entrenador-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .academia-hero {
        padding: 1.5rem 0.75rem;
        margin-bottom: 2rem;
        overflow: visible;
    }
    
    .academia-hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .academia-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .academia-hero-text {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .academia-hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .academia-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .academia-stats {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.5rem !important;
        max-width: 99% !important;
        margin-left: 0.1rem !important;
        margin-right: 0.1rem !important;
        width: calc(100% - 0.2rem) !important;
    }
    
    .stat-item {
        padding: 0.5rem !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .stat-number {
        font-size: 1.1rem;
        line-height: 1.1;
        word-break: break-word;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.0;
    }
    
    .academia-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .academia-section-header {
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .academia-section-header h3 {
        font-size: 1.2rem;
    }
    
    .academia-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
    
    .academia-benefits-grid {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .paises-grid {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .pais-card {
        padding: 1rem 0.75rem;
    }
    
    .pais-flag-large {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .pais-card h5 {
        font-size: 1.1rem;
    }
    
    .pais-timezone {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .horarios-display {
        padding: 1.5rem 0.75rem;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .horarios-placeholder h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .horarios-placeholder p {
        font-size: 0.9rem;
    }
    
    .pais-detalle-header {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .pais-info {
        gap: 0.75rem;
    }
    
    .pais-info .pais-flag {
        font-size: 1.5rem;
    }
    
    .pais-info h4 {
        font-size: 1.3rem;
    }
    
    .pais-info .pais-timezone {
        font-size: 0.9rem;
    }
    
    .cerrar-horarios {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .horario-dias-detalle {
        padding: 1rem;
    }
    
    .dia-horario-detalle {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .dia-info {
        gap: 0.75rem;
    }
    
    .dia-numero {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .dia-nombre {
        font-size: 1rem;
    }
    
    .horario-tiempo {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .horario-duracion {
        font-size: 0.8rem;
    }
    
    .logros-grid {
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .logro-item {
        padding: 1rem;
    }
    
    .logro-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .logro-item h4 {
        font-size: 1.1rem;
    }
    
    .logro-item p {
        font-size: 0.85rem;
    }
    
    .academia-pricing {
        padding: 1.5rem 0.75rem;
        margin-bottom: 2rem;
    }
    
    .pricing-header {
        margin-bottom: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-cards {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .pricing-label {
        top: -10px;
        padding: 0.5rem 1rem;
    }
    
    .pricing-label .label-text {
        font-size: 0.7rem;
        line-height: 1.3;
        text-align: center;
        white-space: nowrap;
    }
    
    .pricing-label .label-flag {
        font-size: 0.9rem;
    }
    
    .pricing-amount {
        min-height: 90px;
        padding: 1.2rem 0;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .period {
        font-size: 1rem;
    }
    
    .pricing-features {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-note {
        padding: 1rem;
        margin: 1rem 0;
        gap: 0.75rem;
    }
    
    .pricing-note .note-icon {
        width: 35px;
        height: 35px;
    }
    
    .pricing-note .note-icon i {
        font-size: 1rem;
    }
    
    .pricing-note .note-content p {
        font-size: 0.9rem;
    }
    
    .feature {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
    
    .pricing-terms {
        gap: 0.5rem;
    }
    
    .pricing-terms p {
        font-size: 0.9rem;
        gap: 0.4rem;
    }
    
    .pricing-terms i {
        font-size: 1rem;
    }
    
    .academia-cta-final {
        padding: 2rem 0.75rem;
    }
    
    .cta-hero {
        margin-bottom: 2rem;
    }
    
    .cta-sparkle {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-hero h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-hero p {
        font-size: 1rem;
    }
    
    .cta-actions {
        gap: 1.5rem;
    }
    
    .btn-cta-primary {
        padding: 1rem 1.5rem;
    }
    
    .btn-content {
        gap: 0.5rem;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .btn-text {
        gap: 0.2rem;
    }
    
    .btn-title {
        font-size: 1.1rem;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
    }
    
    .cta-benefits {
        gap: 0.5rem;
    }
    
    .benefit-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .benefit-tag i {
        font-size: 0.9rem;
    }
}

/* ===== ELEMENTOS DE VIDEO EN LOGROS ===== */
.logro-video {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logro-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.logro-video:hover::before {
    opacity: 1;
}

.logro-video:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
}

.logro-video .logro-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    position: relative;
    z-index: 2;
}

.logro-video h4,
.logro-video p {
    position: relative;
    z-index: 2;
}

.text-orange {
    color: #FFD700 !important;
    font-weight: 600;
}

.text-white {
    color: var(--text-primary) !important;
    font-weight: 500;
}

/* ===== MODAL DE VIDEO ===== */
.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.modal-video.active {
    display: flex;
    opacity: 1;
}

.modal-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-video-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: auto;
    background: var(--background-dark);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.4);
    overflow: hidden;
    animation: modalVideoSlideIn 0.4s ease-out;
}

@keyframes modalVideoSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #1a1a1a;
}

.modal-video-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-video-header h3 i {
    font-size: 1.6rem;
}

.modal-video-close {
    background: rgba(26, 26, 26, 0.2);
    border: none;
    color: #1a1a1a;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.modal-video-close:hover {
    background: rgba(26, 26, 26, 0.3);
    transform: scale(1.1) rotate(90deg);
}

.modal-video-content {
    padding: 2rem 3rem 3rem;
    background: var(--background-dark);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* ===== RESPONSIVIDAD PARA MODAL DE VIDEO ===== */
@media (max-width: 768px) {
    .modal-video-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-video-header {
        padding: 1.5rem 2rem;
    }
    
    .modal-video-header h3 {
        font-size: 1.4rem;
    }
    
    .modal-video-content {
        padding: 1.5rem 2rem 2rem;
    }
    
    .logro-video:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .modal-video-container {
        width: 98%;
        max-height: 98vh;
    }
    
    .modal-video-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-video-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-video-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .video-container {
        border-radius: 10px;
    }
    
    .video-container iframe {
        border-radius: 10px;
    }
}
