.documentacion-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 40px 20px;
}

.documentacion-titulo {
    font-size: 40px;
    color: #ffd27f;
    text-align: center;
    margin-bottom: 30px;
}

.documentacion-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: #e6e6e6;
}

.documentacion-lista {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.doc-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffb85c;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.doc-item h3 {
    color: #ffd27f;
    margin-bottom: 10px;
}

.doc-item a {
    color: #ffd27f;
    font-size: 18px;
    text-decoration: none;
}

.doc-item a:hover {
    color: #ffffff;
}

.mapa-contenedor {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ffb85c;
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablets y pantallas medianas */
@media (max-width: 900px) {

    .documentacion-contenedor {
        padding: 20px;
    }

    .documentacion-titulo {
        font-size: 32px;
    }

    .documentacion-intro {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .documentacion-lista {
        grid-template-columns: 1fr;   /* De 2 columnas → 1 */
        gap: 20px;
    }

    .doc-item {
        padding: 18px;
    }

    .doc-item h3 {
        font-size: 20px;
    }

    .doc-item a {
        font-size: 18px;
    }

    .mapa-contenedor iframe {
        height: 300px;
    }
}

/* Móviles pequeños */
@media (max-width: 600px) {

    .documentacion-titulo {
        font-size: 28px;
    }

    .documentacion-intro {
        font-size: 16px;
    }

    .doc-item {
        padding: 15px;
    }

    .doc-item h3 {
        font-size: 18px;
    }

    .doc-item a {
        font-size: 16px;
    }

    .mapa-contenedor iframe {
        height: 250px;
    }
}
