/* =====================================
   SECCIÓN DE MAPAS
===================================== */
.mapa-contacto {
    width: 90%;
    margin: 60px auto 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.mapa-item {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.mapa-item h3 {
    font-size: 20px;
    color: #f30817;
    margin-bottom: 5px;
}

.mapa-item p {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.mapa-item iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.22);
}

/* =====================================
   FORMULARIO
===================================== */
.formulario-contacto {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 80px;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.formulario-contacto h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #f30817;
}

.formulario-contacto label {
    display: block;
    margin: 15px 0 5px;
    font-weight: bold;
}

.formulario-contacto input,
.formulario-contacto textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 6px;
    background-color: #f5f5f5;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
    outline: none;
    border-color: #f30817;
    background-color: #fff;
}

.formulario-contacto button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #f30817;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

/* =====================================
   INFORMACIÓN DE CONTACTO
===================================== */
.contacto-contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.info-contacto {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* =====================================
   WHATSAPP
===================================== */
.whatsapp-link {
    text-align: center;
    margin-top: 15px;
}

.whatsapp-icon {
    width: 100px;
    transition: transform 0.2s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* =====================================
   RESPONSIVE GLOBAL
===================================== */
@media (max-width: 1280px) {

    /* MAPAS */
    .mapa-contacto {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .mapa-item {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    .mapa-item iframe {
        height: 260px;
    }

    /* FORMULARIO */
    .formulario-contacto {
        padding: 25px;
        margin-bottom: 60px;
    }

    /* INFO CONTACTO */
    .contacto-contenedor {
        padding: 0 10px;
        gap: 30px;
    }

    .info-contacto {
        padding: 20px;
    }

    /* WHATSAPP */
    .whatsapp-icon {
        width: 80px;
    }
}
