.menu-toggle {
    display: none;
}

/* =========================
   RESPONSIVE GLOBAL
========================= */
@media (max-width: 768px) {

    /* HEADER */
    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        text-align: left;
        position: relative;
    }

    header img {
        width: 70px;
    }

   nav {
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 22px 26px;
    border-radius: 18px;

    display: flex;
    flex-direction: column;
    gap: 16px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all 0.80S ease;
    z-index: 999;

}

.menu-toggle {
    width: 36px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}


nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


    nav a {
        margin: 0;
        font-size: 16px;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    /* HERO (GLOBAL) */
    .hero {
        padding: 90px 20px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 16px;
    }

    /* BOTÓN */
    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    /* INFO */
    .info {
        margin: 50px 15px;
        padding: 45px 20px;
    }

    .info h2 {
        font-size: 26px;
    }

    .info p {
        font-size: 16px;
    }

    .info .destacado {
        font-size: 16px;
        padding: 20px;
    }

    /* MAPAS */
    .mapas {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 70px;
    }

    .mapa-item iframe {
        height: 260px;
    }

    /* ACTIVIDADES */
    .actividad {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .actividad-texto h3 {
        font-size: 24px;
    }

    .actividad-texto p {
        font-size: 16px;
    }
}
