/* ============================================
   SECCIONES INSTITUCIONES - DISEÑO PREMIUM
   ============================================ */

/* PROPUESTA MODERNA */
.propuesta-moderna {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

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

.diferenciador-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
    }
}

.badge-icon {
    font-size: 1.25rem;
}

.section-title-moderna {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle-moderna {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* GRID DE CARACTERÍSTICAS MODERNA */
.caracteristicas-grid-moderna {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.caracteristica-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f3f4f6;
}

.caracteristica-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.caracteristica-card.destacada {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.caracteristica-card.destacada:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 48px rgba(37, 99, 235, 0.4);
}

.caracteristica-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1f2937;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.caracteristica-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.caracteristica-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #f3f4f6;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.caracteristica-card.destacada .caracteristica-icon {
    background: rgba(255, 255, 255, 0.2);
}

.caracteristica-card:hover .caracteristica-icon {
    transform: scale(1.1) rotate(5deg);
}

.caracteristica-numero,
.caracteristica-label {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2563eb;
}

.caracteristica-card.destacada .caracteristica-numero,
.caracteristica-card.destacada .caracteristica-label {
    color: white;
}

.caracteristica-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.caracteristica-card.destacada h3 {
    color: white;
}

.caracteristica-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.caracteristica-card.destacada p {
    color: rgba(255, 255, 255, 0.9);
}

/* ACOMPAÑAMIENTO MENSUAL */
.acompanamiento-mensual {
    padding: 6rem 0;
    background: white;
}

.acompanamiento-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.acompanamiento-box-header {
    text-align: center;
    margin-bottom: 3rem;
}

.acompanamiento-box-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
}

.acompanamiento-box-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.acompanamiento-cards-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.acompanamiento-card-premium {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.acompanamiento-card-premium:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

.acompanamiento-icon-premium {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0.2;
}

.icon-bg.alertas {
    background: #fbbf24;
}

.icon-bg.clases {
    background: #2563eb;
}

.icon-bg.reportes {
    background: #ec4899;
}

.icon-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
}

.acompanamiento-card-premium h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-align: center;
}

.acompanamiento-card-premium p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* FORTALECIMIENTO TRIMESTRAL */
.fortalecimiento-trimestral {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.trimestre-badge-grande {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.badge-icon-grande {
    font-size: 1.25rem;
}

.trimestre-title-principal {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 3rem;
    text-align: center;
}

.fortalecimiento-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, #2563eb 0%, transparent 100%);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.timeline-note {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
    margin-top: 0.5rem;
}

/* REFUERZOS PREMIUM */
.refuerzos-premium {
    padding: 6rem 0;
    background: white;
}

.refuerzos-title-premium {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.75rem;
}

.refuerzos-subtitle-premium {
    font-size: 1.25rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.refuerzos-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.refuerzo-card-premium {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.refuerzo-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    z-index: 1;
}

.refuerzo-card-premium.virtual .refuerzo-card-bg {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.refuerzo-card-premium.presencial .refuerzo-card-bg {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.refuerzo-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.refuerzo-card-premium.virtual:hover {
    border-color: #a855f7;
}

.refuerzo-card-premium.presencial:hover {
    border-color: #06b6d4;
}

.refuerzo-badge-premium {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.refuerzo-badge-premium.presencial {
    color: #0891b2;
}

.refuerzo-icon-premium {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.refuerzo-card-premium h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.refuerzo-descripcion {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.refuerzo-features-premium {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    position: relative;
    z-index: 2;
}

.feature-premium {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f9fafb;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-premium:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.feature-check-premium {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-premium span:last-child {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .caracteristicas-grid-moderna {
        grid-template-columns: repeat(2, 1fr);
    }

    .caracteristica-card.destacada {
        transform: scale(1);
    }

    .caracteristica-card.destacada:hover {
        transform: translateY(-8px) scale(1);
    }

    .acompanamiento-cards-premium {
        grid-template-columns: 1fr;
    }

    .refuerzos-grid-premium {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title-moderna {
        font-size: 2rem;
    }

    .caracteristicas-grid-moderna {
        grid-template-columns: 1fr;
    }

    .acompanamiento-box {
        padding: 3rem 2rem;
    }

    .acompanamiento-box-header h2 {
        font-size: 1.75rem;
    }

    .trimestre-title-principal {
        font-size: 1.75rem;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-line {
        top: 60px;
        height: 60px;
    }

    .refuerzos-title-premium {
        font-size: 2rem;
    }

    .refuerzo-card-premium {
        padding: 2.5rem 2rem;
    }
}
/* ============================================
   SECCIONES ADICIONALES - ¿PARA QUIÉN? Y CTA
   ============================================ */

/* ¿PARA QUIÉN ES LIGA SABER? */
.para-quien-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

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

.para-quien-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.para-quien-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.para-quien-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.para-quien-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.para-quien-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.para-quien-card.estudiantes {
    border-top: 4px solid #3b82f6;
}

.para-quien-card.estudiantes:hover {
    border-color: #3b82f6;
}

.para-quien-card.docentes {
    border-top: 4px solid #8b5cf6;
}

.para-quien-card.docentes:hover {
    border-color: #8b5cf6;
}

.para-quien-card.instituciones {
    border-top: 4px solid #10b981;
}

.para-quien-card.instituciones:hover {
    border-color: #10b981;
}

.para-quien-card.destacada {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: scale(1.05);
    border: 3px solid #10b981;
}

.para-quien-card.destacada:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25);
}

.para-quien-badge {
    position: absolute;
    top: -16px;
    right: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.para-quien-icon-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.para-quien-card:hover .para-quien-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.para-quien-card.estudiantes .para-quien-icon-container {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.para-quien-card.docentes .para-quien-icon-container {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}

.para-quien-card.instituciones .para-quien-icon-container {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.para-quien-icon {
    font-size: 3rem;
}

.para-quien-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.para-quien-descripcion {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
}

.para-quien-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.benefit-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.benefit-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA FINAL INSTITUCIONES */
.cta-final-instituciones {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.cta-final-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.cta-final-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.cta-final-content h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-final-content p {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-final-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-final-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #2563eb;
    padding: 1.25rem 2.75rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-final-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    background: #fbbf24;
    color: #1f2937;
}

.btn-cta-final-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-final-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .para-quien-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .para-quien-card.destacada {
        transform: scale(1);
    }

    .para-quien-card.destacada:hover {
        transform: translateY(-12px) scale(1);
    }
}

@media (max-width: 768px) {
    .para-quien-header h2 {
        font-size: 2rem;
    }

    .para-quien-card {
        padding: 2.5rem 2rem;
    }

    .cta-final-content h2 {
        font-size: 2rem;
    }

    .cta-final-content p {
        font-size: 1.125rem;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-final-primary,
    .btn-cta-final-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .para-quien-card h3 {
        font-size: 1.5rem;
    }

    .cta-final-icon {
        font-size: 3rem;
    }

    .cta-final-content h2 {
        font-size: 1.75rem;
    }
}
/* ============================================
   BENEFICIOS Y RECURSOS PARA INSTITUCIONES
   ============================================ */

/* BENEFICIOS PARA INSTITUCIONES */
.beneficios-instituciones-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

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

.beneficios-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.beneficios-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.beneficio-card:hover::before {
    transform: scaleX(1);
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.beneficio-numero {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: #f3f4f6;
    line-height: 1;
    z-index: 0;
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-numero {
    color: #e5e7eb;
    transform: scale(1.1);
}

.beneficio-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: scale(1.1) rotate(5deg);
}

.beneficio-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.875rem;
    position: relative;
    z-index: 1;
}

.beneficio-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* RECURSOS PARA INSTITUCIONES */
.recursos-instituciones-section {
    padding: 6rem 0;
    background: white;
}

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

.recursos-header h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
}

.recursos-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recurso-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.recurso-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.recurso-card.proximamente {
    opacity: 0.7;
}

.recurso-card.proximamente:hover {
    transform: translateY(-8px);
    opacity: 0.8;
}

.recurso-badge-prox {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.recurso-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.recurso-card:hover .recurso-icon-container {
    transform: scale(1.1) rotate(-5deg);
}

.recurso-icon-container.presentacion {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.recurso-icon-container.documentacion {
    background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
}

.recurso-icon-container.video {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.recurso-icon {
    font-size: 3rem;
}

.recurso-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.recurso-descripcion {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
    flex: 1;
}

.recurso-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.recurso-tipo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.tipo-icon {
    font-size: 1.125rem;
}

.recurso-tamano {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.btn-recurso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-recurso:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-recurso.disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-recurso.disabled:hover {
    transform: none;
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-recurso:hover .btn-icon {
    transform: translateY(2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .beneficios-grid,
    .recursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beneficios-instituciones-section,
    .recursos-instituciones-section {
        padding: 4rem 0;
    }

    .beneficios-header h2,
    .recursos-header h2 {
        font-size: 2rem;
    }

    .beneficios-grid,
    .recursos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .beneficio-card,
    .recurso-card {
        padding: 2.5rem 2rem;
    }

    .beneficio-numero {
        font-size: 3rem;
    }

    .beneficio-icon {
        font-size: 2.5rem;
    }

    .recurso-icon-container {
        width: 80px;
        height: 80px;
    }

    .recurso-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .beneficio-card h3,
    .recurso-card h3 {
        font-size: 1.25rem;
    }

    .recurso-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .btn-recurso {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   SECCIÓN INVERSIÓN INTELIGENTE
   ═══════════════════════════════════════════════════════════ */
.inversion-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.inversion-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* LADO IZQUIERDO */
.inversion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.inversion-section .inversion-left h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.inversion-section .inversion-descripcion {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* DIFERENCIADORES GRID */
.diferenciadores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.diferenciador-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.diferenciador-item:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.diferenciador-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.diferenciador-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.diferenciador-content p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* LADO DERECHO - PRECIO MODERNO */
.inversion-right {
    display: flex;
    flex-direction: column;
}

.precio-card-moderna {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    position: sticky;
    top: 100px;
}

.precio-header-moderna {
    text-align: center;
    margin-bottom: 2rem;
}

.precio-label {
    display: block;
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.precio-header-moderna h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}

.precio-principal-moderna {
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid #f3f4f6;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 2rem;
}

.precio-desde {
    display: block;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.precio-monto-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.simbolo-peso {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    margin-top: 0.5rem;
}

.precio-numero {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.precio-periodo {
    display: block;
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* VALOR BOX */
.precio-valor-box {
    margin-bottom: 2rem;
}

.precio-valor-box p {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.valor-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.valor-lista li {
    font-size: 0.9rem;
    color: #4b5563;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.valor-lista li:last-child {
    border-bottom: none;
}

/* BOTÓN CTA */
.btn-inversion-cta {
    display: block;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-inversion-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

.garantias-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.garantias-badge span {
    font-size: 0.8rem;
    color: #6b7280;
    background: #f9fafb;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
}

/* PREPARACIÓN UNIVERSITARIA BOX - ANCHO COMPLETO */
.preparacion-universitaria-box {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    color: white;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.prep-uni-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.prep-uni-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.prep-uni-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.prep-uni-texto {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.prep-uni-texto strong {
    color: white;
    font-weight: 800;
}

.competencias-universitarias {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.competencia-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.competencia-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.prep-uni-footer {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: white;
    border-left: 4px solid white;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.prep-uni-footer strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .inversion-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .diferenciadores-grid {
        grid-template-columns: 1fr;
    }
    
    .preparacion-universitaria-box {
        padding: 2rem;
    }
    
    .prep-uni-header {
        flex-direction: column;
        text-align: center;
    }
    
    .prep-uni-header h3 {
        font-size: 1.5rem;
    }
    
    .competencias-universitarias {
        grid-template-columns: 1fr;
    }
    
    .precio-card-moderna {
        position: static;
    }
    
    .inversion-section .inversion-left h2 {
        font-size: 2rem;
    }
    
    .precio-numero {
        font-size: 3rem;
    }
}