.hero-section {
    padding: 30px 0 40px 0;
    margin-bottom: 20px;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-description {
    font-size: 26px;
    color: #313E49;
    max-width: 900px;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.7;
}

/* Removed: Met Opera logo styles moved to highlight box */

.recitals-section {
    padding: 40px 0 50px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #73CCBF;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none !important;
    text-decoration: none !important;
    border-bottom: none !important;
    border-top: none !important;
}

.section-subtitle {
    font-size: 19px;
    color: #8F8F8F;
    text-align: center;
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.recitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.recital-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #73CCBF, #30A493);
}

.recital-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(115, 204, 191, 0.2);
    border-color: #73CCBF;
}

.recital-card.nuestras-voces::before {
    background: linear-gradient(90deg, #73CCBF, #30A493);
}

.recital-card.quien-sera::before {
    background: linear-gradient(90deg, #C49A6C, #30A493);
}

.recital-icon {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E3F5F2;
}

.recital-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.recital-title {
    font-size: 24px;
    font-weight: 700;
    color: #313E49;
    margin-bottom: 16px;
    line-height: 1.3;
}

.recital-description {
    font-size: 16px;
    color: #8F8F8F;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recital-level {
    display: inline-block;
    background: #E3F5F2;
    color: #30A493;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.artists-section {
    background: #F8F9FA;
    padding: 50px 20px;
    margin: 30px -20px 40px -20px;
    border-radius: 20px;
}

.artists-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.artists-title {
    font-size: 28px;
    font-weight: 700;
    color: #313E49;
    margin-bottom: 20px;
}

.artists-description {
    font-size: 16px;
    color: #8F8F8F;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.artists-link {
    margin-top: 25px;
}

.artists-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #30A493, #73CCBF);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(115, 204, 191, 0.3);
}

.artists-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(115, 204, 191, 0.4);
    color: white;
    text-decoration: none;
}

.highlight-box {
    background: linear-gradient(135deg, #30A493, #73CCBF);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.highlight-collaboration {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.highlight-met-logo {
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-met-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.highlight-met-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.highlight-collaboration-text {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-benefit {
    flex: 1;
    text-align: left;
}

.highlight-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 0;
}

.highlight-text {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Container for large screens */
.hero-content,
.recitals-section,
.highlight-box {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .hero-description {
        font-size: 24px;
        max-width: 800px;
    }
    
    .met-opera-logo img {
        height: 80px;
    }
    
    .recitals-grid {
        max-width: 900px;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0 30px 0;
    }
    
    .hero-description {
        font-size: 22px;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .met-opera-logo {
        padding: 20px 30px;
    }
    
    .met-opera-logo img {
        height: 70px;
    }
    
    .recitals-section {
        padding: 30px 0 40px 0;
    }
    
    .recitals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .recital-card {
        padding: 30px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .recital-icon {
        height: 140px;
    }
    
    .artists-section {
        margin: 20px -20px 30px -20px;
        padding: 40px 20px;
    }
    
    .highlight-box {
        margin: 20px 0 30px 0;
        padding: 30px;
    }
    
    .highlight-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .highlight-collaboration {
        min-width: auto;
    }
    
    .highlight-benefit {
        text-align: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-description {
        font-size: 20px;
    }
    
    .met-opera-logo img {
        height: 60px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .recital-card {
        padding: 25px;
    }
}