/* Efectos específicos para la página de inicio */
.hero-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
}

/* Grid de semanas mejorado */
.semanas-section {
    padding: 4rem 0;
}

/* Efectos hover para tarjetas */
.semana-card {
    position: relative;
    overflow: hidden;
}

.semana-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-code {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 2rem auto 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .card-header {
        padding: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}