/* ================== TEXTO ================== */
.texto {
    display: grid;
    background-color: #ffffff;
    padding: 1%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
}

.texto p {
    font-family: 'Arial', sans-serif;
    font-size: 1.06rem;
    line-height: 1.8;
    color: #000000;
    text-align: justify;
    margin-left: 2%;
    max-width: 80%;
}

.texto h1 {
    padding-left: 3.3%;
    font-family: 'Arial', serif;
    margin-bottom: 30px;
    text-align: left;
    font-size: 2rem; 
    color: #000000;
}

/* ================== MAPA ================== */
.mapa-container {
    width: 90%;
    max-width: 1200px; /* ancho máximo en PC */
    margin: 20px auto;
    position: relative;
    padding-top: 40%; /* menos alto en escritorio */
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mapa-container iframe:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: #d1a04c;
}

/* ================== TABLET ================== */
@media (max-width: 1024px) {
    .texto p {
        font-size: 1rem;
        max-width: 90%;
        margin-left: 0;
    }

    .texto h1 {
        font-size: 1.8rem;
        padding-left: 1%;
    }

    .mapa-container {
        width: 95%;
        padding-top: 60%; /* un poco más alto para tablets */
    }
}

/* ================== MÓVILES ================== */
@media (max-width: 768px) {
    .texto {
        grid-template-columns: 1fr;
        padding: 2%;
    }

    .texto p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .texto h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .mapa-container {
        width: 100%;
        padding-top: 75%; /* más alto para móviles */
    }

    .mapa-container iframe:hover {
        transform: scale(1); /* desactivamos zoom en móviles */
    }
}
