/* =========================================================
   HERO
   ========================================================= */

.hero-contacto {
    position: relative;
    height: 50vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-contacto .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-contacto .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-contacto .hero-content {
    position: absolute;
    color: white;
    text-align: center;
    z-index: 2;
}

.hero-contacto h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-contacto p {
    font-size: 18px;
}


/* =========================================================
   INFO DE CONTACTO
   ========================================================= */

.info-contacto {
    padding: 70px 20px;
    text-align: center;
}

.info-contacto h2 {
    color: var(--azul);
    margin-bottom: 40px;
}

.contacto-grid {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.contacto-card {
    background: white;
    width: 300px;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.contacto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 86, 163, 0.28);
}

.contacto-card i {
    font-size: 45px;
    color: var(--azul);
    margin-bottom: 15px;
}

.contacto-card h3 {
    color: var(--azul-oscuro);
    margin-bottom: 8px;
}

.contacto-card p {
    font-size: 15px;
}


/* =========================================================
   MAPA
   ========================================================= */

.mapa {
    padding: 70px 20px;
    text-align: center;
}

.mapa h2 {
    color: var(--azul);
    margin-bottom: 25px;
}

.mapa iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
    .hero-contacto h1 {
        font-size: 30px;
    }

    .contacto-card {
        width: 100%;
        max-width: 330px;
    }
}
