﻿.contacto-page {
    padding: 40px;
}

/* HERO */

.contacto-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 50px;
    height: 340px;
}

.img-contacto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-contacto {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: white;
}

.badge-contacto {
    background: rgba(255,255,255,.15);
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 1px;
}

.overlay-contacto h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.overlay-contacto p {
    font-size: 18px;
    opacity: .9;
}

/* CONTENIDO */

.contacto-section {
    margin-bottom: 60px;
}

.contacto-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
}

/* INFO */

.contacto-info {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

    .contacto-info h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 35px;
        color: #021850;
    }

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.icono {
    color: #2563eb;
    font-size: 20px;
    margin-top: 4px;
}

.info-item a,
.info-item span,
.info-item div {
    color: #444;
    text-decoration: none;
    line-height: 1.7;
}

.line-contact {
    height: 1px;
    background: #e5e7eb;
    margin: 30px 0;
}

.info-extra p {
    margin-bottom: 15px;
    color: #444;
}

.btn-whatsapp {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 15px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .btn-whatsapp:hover {
        transform: translateY(-3px);
        color: white;
    }

/* MAPA */

.contacto-map {
    overflow: hidden;
    border-radius: 24px;
    min-height: 100%;
}

    .contacto-map iframe {
        width: 100%;
        height: 100%;
        min-height: 620px;
        border: 0;
    }

/* RESPONSIVE */

@media screen and (max-width: 992px) {

    .contacto-card {
        grid-template-columns: 1fr;
    }

    .contacto-map iframe {
        min-height: 400px;
    }
}

@media screen and (max-width: 768px) {

    .contacto-page {
        padding: 15px;
    }

    .contacto-hero {
        height: 260px;
        border-radius: 22px;
    }

    .overlay-contacto {
        padding: 25px;
    }

        .overlay-contacto h1 {
            font-size: 38px;
        }

        .overlay-contacto p {
            font-size: 15px;
        }

    .contacto-info {
        padding: 25px;
    }

        .contacto-info h3 {
            font-size: 24px;
        }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .contacto-map iframe {
        min-height: 320px;
    }
}
