.hero-event {
    max-width: 1200px;
    margin: 50px auto;
    min-height: 360px;
    border-radius: 30px;
    background: linear-gradient(rgba(29, 78, 137, 0.55), rgba(29, 78, 137, 0.55)), url("../img/concerto.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18)
}
.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 15px;
}
.hero-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.7;
}
.event-card {
    max-width: 1200px;
    margin: 50px auto;
    padding: 45px;
    background: linear-gradient(135deg, #ffffff, #eaf6ff);
    box-shadow: 0 10px 25px rgba(29, 78, 137, 0.12);
    display: flex;
    align-items: center;
    gap: 50px;
}
.event-text {
    flex: 1.3;
}
.event-image {
    flex: 1;
}
.event-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 25px;
    box-shadow: 0 10px 25px;
}
.event-text h1 {
    color: #1d4e89;
    font-size: 2.2rem;
    margin-bottom: 15px;
}
.event-text p {
    color: #333;
    line-height: 1.85;
    font-size: 1.05rem;
    margin-bottom: 15px;
}
.event-text a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}
.event-text a:hover {
    background: #1d4e89;
}
@media(max-width: 850px) {
    .hero-event {
        margin: 35px 15px;
        min-height: 280px;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .event-card {
        flex-direction: column;
        margin: 35px 15px;
        padding: 28px 22px;
    }
    .event-text h1 {
        font-size: 1.8rem;
    }
}