/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Paleta de colores */
:root {
    --color-primary: #2D4059;
    --color-secondary: #EA8217;
    --color-white: #FFFFFF;
    --color-bg-light: #F8F9FA;
    --color-border: #E0E0E0;
    --color-text: #2b2b2b;
    --font-titles: 'Raleway', sans-serif;
    --font-text: 'Lato', sans-serif;
}

/* Elimina el scroll horizontal global */
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    /*evita que ciertos elementos con position: absolute (como los del carrusel) se salgan del flujo del documento.S*/
}


/*  HEADER NAVBAR ___________________________________________________________________________________________________________ */
header {
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: fadeInDown 0.6s ease;
}

.navbar {
    padding: 12px 0px;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*LOGO  */
.navbar-logo {
    margin-left: 0;
    width: 150px;
}

/* LINKS PRINCIPALES */
.navbar-nav {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.nav-link {
    font-family: var(--font-titles);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link.active {
    color: var(--color-black);
    font-weight: 700;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: 5px;
}

/* BOTONES */
.actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 10px;
}

.btn-login {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-titles);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-register {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-family: var(--font-titles);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

/* ICONO MENÚ MÓVIL  */
.menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--color-primary);
    cursor: pointer;
}

/* ===============================
   BIENVENIDA USUARIO - HEADER
   =============================== */

.Bienvenido {
    background-color: #2D4059;
    /* azul Aventura Go */
    color: #FFFFFF;
    padding: 8px 14px;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* Ajuste para que no se pegue al botón salir */
.actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bienvenido strong {
    font-weight: 700;
}

.profile-dropdown {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2D4059;
    color: #FFFFFF;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.profile-btn i {
    font-size: 16px;
}

.profile-menu {
    position: absolute;
    right: 0;
    top: 46px;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    display: none;
    z-index: 999;
}

.profile-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: #2B2B2B;
    text-decoration: none;
}

.profile-menu li a:hover {
    background-color: #F8F9FA;
}

.profile-menu .divider {
    height: 1px;
    background-color: #E0E0E0;
    margin: 6px 0;
}

.profile-menu .logout {
    color: #EA8217;
    font-weight: 600;
}


/* SECCIÓN HERO____________________________________________________________________________________________________   */
#hero {
    position: relative;
    margin-left: 0;
    padding-right: 0;
    margin-top: 80px;
}

#hero .carousel {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 40px;
}

/* Imágenes del carrusel */
#hero .carousel-item img {
    object-fit: cover;
    filter: brightness(40%);
    max-height: 700px;
}

/* Contenido superpuesto */
#hero .carousel-caption {
    position: absolute;
    top: 43%;
    left: 55%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #FFFFFF;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

/* Titulares principales */
#hero .carousel-caption h1,
#hero .carousel-caption h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

#hero .carousel-caption h1 {
    font-size: 78px;
}

#hero .carousel-caption h2 {
    font-size: 78px;
    margin-bottom: 20px;
}

/* Párrafos */
#hero .carousel-caption p {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
}

/* === Estilos flechas del carrusel === */
.carousel-control-prev {
    width: 40px;
    height: 20px;
    top: 50%;
    transition: all 0.3s ease;
    font-size: 30px;
}


.carousel-control-next {
    width: 40px;
    height: 20px;
    top: 50%;
    transition: all 0.3s ease;
    font-size: 30px;

}

/* Posicionamiento */
.carousel-control-prev {
    left: 5px;
}

.carousel-control-next {
    right: 5px;
}




/* Caja de búsqueda */
#hero .search-box {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
    width: fit-content;
}

#hero .search-box strong {
    color: #2B2B2B;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

#hero .search-btn {
    background-color: #2D4059;
    color: #FFFFFF;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s ease;
}

#hero .search-btn:hover {
    background-color: #EA8217;
}

/* Controles del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* Marca “AVENTURA GO” */
#hero h2.marca {
    font-size: 48px;
    font-weight: 700;
    position: absolute;
    bottom: 40px;
    right: 140px;
    text-align: right;
    color: white;
}





/* Bloques inferiores */
.hero-info {
    background-color: #ffffff;
    border-radius: 2px;
    padding: 15px 0;
    display: flex;
    justify-content: space-evenly;
}

/* Íconos */
.hero-info .icono-email {
    margin-left: 110px;
}

.hero-info img {
    width: 40px;
    height: 40px;
    margin-left: 45px;
}

/* Títulos */
.hero-info .h2-email {
    margin-left: 97px;
}

.hero-info h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #2D4059;
    font-size: 20px;
    margin-bottom: 10px;
    margin-left: 25px;
}

/* Texto */
.hero-info h3 {
    font-weight: 400;
    font-size: 15px;
    margin: 4px 0;
    color: #2B2B2B;
    text-align: center;
}

.hero-info .h3-email {
    margin-left: 45px;
}





/* SECCION FORMULARIO DE CONTACTO___________________________________________________________________________________ */

.titulo-principal {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
}

.formulario-completo {
    display: flex;
    background: #F8F9FA;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
    margin-left: 100px;
    margin-right: 100px;
    margin-bottom: 100px;
}

/* SECCIÓN IZQUIERDA - AZUL */
.seccion-izquierda {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.seccion-izquierda img {
    width: 320px;
    margin-left: 65px;
    position: absolute;
}

.seccion-izquierda .p1 {
    font-family: 'lato', sans-serif;
    position: absolute;
    font-size: 20px;
    margin-top: 190px;
    margin-left: 65px;
    margin-bottom: 15px;
    z-index: 1;
}

.seccion-izquierda .p2 {
    font-family: 'lato', sans-serif;
    position: absolute;
    font-size: 22px;
    margin-top: 330px;
    margin-left: 65px;
    margin-bottom: 15px;
    z-index: 1;
}

/* SECCIÓN DERECHA - FORMULARIO */
.seccion-derecha {
    width: 65%;
    padding: 50px 40px;
}

.seccion-derecha h2 {
    font-family: 'raleway', sans-serif;
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.descripcion {
    font-family: 'lato', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* ESTRUCTURA FORMULARIO */
.fila-campos {
    font-family: 'lato', sans-serif;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.campo {
    flex: 1;
}

.campo-full {
    flex: 1;
}

label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

input:focus,
textarea:focus {
    border-color: #1e3c72;
    outline: none;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    background: #2a5298;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    margin-left: 560px;
}

.btn-enviar:hover {
    background: #EA8217;
}



/* E S T I L O S      S E C C I O N    M A P A______________________________________________________________________ */
/* SECCIÓN MAPA */
.mapa-section {
    text-align: center;
    font-family: 'Lato', sans-serif;
    padding: 40px 0;
    background-color: #F8F9FA;
}

.mapa-section h2 {
    font-family: 'Raleway', sans-serif;
    color: #2D4059;
    font-size: 28px;
    margin-bottom: 20px;
}

.mapa-contenedor {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    margin: 0 auto;
    /* centra horizontalmente */
    border-radius: 20px;
    overflow: hidden;
    /* oculta esquinas del iframe */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.mapa-contenedor iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}







/* E S T I L O S    F O O T E R-_________________________________________________________________________________________ */
/* footer superior */
.footer-top {
    width: 100%;
    align-content: center;
    background-color: #2D4059;
    color: white;
    padding: 5px 0;
}


.footer-top .row .col-md-12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.footer-top h2 {
    color: white;
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-left: 315px;
}

@keyframes palpitar {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.palpitando {
    animation: palpitar 1.5s infinite ease-in-out;
}

.footer-top a {
    background-color: #EA8217;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    border-radius: 20px;
    padding: 10px 20px;
    transition: transform 0.3s ease;
    margin-right: 375px;
}

.footer-top a:hover {
    transform: scale(1.05);
    text-decoration: none;
}

/* FOOTER INFERIOR------------------------------------------------------------------------ */
.footer-bottom {
    background-color: var(--color-bg-light);
    color: white;
    padding: 40px 20px;
    font-family: 'Lato', sans-serif;
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px;
}

/* Cada columna ocupa espacio automático */
.footer-bottom .col-md-2 {
    flex: 1;
    min-width: 0;
    /* Permite que se ajusten */
}

/* Logo  */
.logo-section img {
    max-width: 230px;
    margin-bottom: 0px;
    margin-top: 43px;
    margin-left: -6px;
    width: 115%;
}

/* y descripción */
.description {
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-text);
    margin-top: 33px;
    margin-left: -22px;
    margin-right: -63px;
}

/* Títulos */
.dest-section,
.enlaces-section,
.contacto-section,
.redes-section {
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-left: 35px;

}

/* Listas */
.footer-bottom .list-unstyled li {
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--color-text);
    margin-left: 35px;
    margin-right: -40px;
}

.footer-bottom .list-unstyled a {
    color: var(--color-text);
    text-decoration: none;
}

.footer-bottom .list-unstyled a:hover {
    color: #EA8217;
}

/* Contactos */
.contact-list li {
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 8px;
}

/* Redes sociales en fila */
.social-links {
    display: flex;
    gap: 10px;
    margin-left: 50px;
}

.social-links a {
    color: var(--color-primary);
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: #EA8217;
}


/* ===================================================================================
   MODAL REGISTRO 
   ================================================================================= */

#registroModal .modal-content {
    border-radius: 20px;
    border: 1px solid #E0E0E0;
    background-color: #FFFFFF;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

#registroModal .modal-header {
    border-bottom: 1px solid #E0E0E0;
    padding: 20px 24px;
    background-color: #F8F9FA;
}

#registroModal .modal-title {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2D4059;
}

/* Fondo suave del body del modal */
#registroModal .modal-body {
    background-color: #F8F9FA;
    padding: 32px 24px;
}

/* ================================
   TARJETAS
   ================================ */

.card-registro {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 18px;
    transition: all 0.25s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Línea superior decorativa */
.card-registro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #EA8217);
}

/* Hover premium */
.card-registro:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: #EA8217;
}

/* ================================
   ICONOS (EMOJIS)
   ================================ */

.icono-registro {
    font-size: 56px;
    margin-bottom: 12px;
    line-height: 1;
    text-align: center;
}

/* ================================
   TEXTO
   ================================ */

.card-registro .card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2D4059;
    margin-bottom: 8px;
}

.card-registro .card-text {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #2B2B2B;
    margin-bottom: 20px;
}

/* ================================
   BOTÓN AVENTURA GO
   ================================ */

.btn-aventura {
    background-color: #EA8217;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-aventura:hover {
    background-color: #2D4059;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* ================================
   FONDO GLASSMORPHISM DEL MODAL
   ================================ */

#registroModal .modal-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(224, 224, 224, 0.8);
}

/* Oscurecer ligeramente el fondo detrás del modal */
.modal-backdrop.show {
    opacity: 0.6;
}

/* ================================
   ANIMACIÓN DE ENTRADA TARJETAS
   ================================ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-registro {
    animation: fadeUp 0.6s ease forwards;
}

/* Pequeño delay en cascada */
.card-registro:nth-child(1) {
    animation-delay: 0.1s;
}

.card-registro:nth-child(2) {
    animation-delay: 0.2s;
}

.card-registro:nth-child(3) {
    animation-delay: 0.3s;
}

/* ================================
   HOVER: CARD SELECCIONADA
   ================================ */

.card-registro {
    cursor: pointer;
}

.card-registro:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: #EA8217;
}

/* Resaltar icono cuando se hace hover */
.card-registro:hover .icono-registro {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Resaltar botón en hover de la card */
.card-registro:hover .btn-aventura {
    background-color: #2D4059;
}

/* ================================
   RESPONSIVE modal registrate
   ================================ */

@media (max-width: 768px) {
    .icono-registro {
        font-size: 48px;
    }

    .card-registro .card-title {
        font-size: 18px;
    }
}







/* ______________________________________________________________________________________________________________________________ */
/* RESPONSIVE PARA IPHONE 14 PRO MAX - 430px x 932ps_____________________________________________________________________________ */
@media screen and (max-width: 430px) {

    /* responsive HEADER ____________________________________ */
    .navbar {
        padding: 8px 16px;
    }

    .navbar .container-fluid {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }

    /* Logo */
    .navbar-logo {
        width: 100px;
        margin-left: 0;
    }

    /* Ocultar menú por defecto */
    .navbar-nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 18px;
        width: 160px;
        background-color: var(--color-white);
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        z-index: 1000;
    }

    .navbar-nav.show {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-link {
        font-size: 14px;
        padding: 0px 12px;
        text-align: left;
        width: 100%;
    }

    /* Botones */
    .actions {
        margin-right: 5px;
        gap: 8px;
    }

    .btn-login,
    .btn-register {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 6px;
    }

    .menu-toggle {
        display: block;
        font-size: 20px;
    }

    /* RESPONSIVE - Hero Contactanos */
    #hero-contactanos {
        padding: 30px 0;
    }

    #hero-contactanos .header-arriba img {
        height: 250px;
        width: 95%;
        margin-top: 70px;
        border-radius: 15px;
    }

    #hero-contactanos .header-arriba h1 {
        font-size: 28px;
        left: 20%;
        top: 45%;
        letter-spacing: 0.5px;
    }

    #hero-contactanos .hero-info {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    #hero-contactanos .hero-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #hero-contactanos .hero-info img {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
    }

    #hero-contactanos .hero-info h2 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    #hero-contactanos .hero-info h3 {
        font-size: 14px;
    }

    /* Ajuste específico para la animación en móviles */
    .palpitando {
        animation: palpitar 2s infinite ease-in-out;
    }




    /*SECCION FORMULARIO_____________________________________________________________________________________________________*/

    .titulo-principal {
        font-size: 22px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .formulario-completo {
        flex-direction: column;
        margin: 20px;
        min-height: auto;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    }

    /* SECCIÓN IZQUIERDA */
    .seccion-izquierda {
        width: 100%;
        background-color: #2D4059;
        color: white;
        padding: 30px 10px;
        text-align: center;
        position: relative;
    }

    .seccion-izquierda img {
        width: 200px;
        margin: 0 auto;
        position: relative;
        left: 0;
        top: 0;
    }

    .seccion-izquierda .p1,
    .seccion-izquierda .p2 {
        position: relative;
        margin: 10px 0 0 0;
        font-size: 16px;
    }

    .seccion-izquierda .p2 {
        font-size: 18px;
        font-weight: bold;
    }

    /* SECCIÓN DERECHA */
    .seccion-derecha {
        width: 100%;
        padding: 25px 20px;
    }

    .seccion-derecha h2 {
        font-size: 20px;
        text-align: center;
    }

    .descripcion {
        font-size: 14px;
        text-align: justify;
        margin-bottom: 25px;
    }

    /* CAMPOS DEL FORMULARIO */
    .fila-campos {
        flex-direction: column;
        gap: 10px;
    }

    label {
        font-size: 13px;
    }

    input,
    textarea {
        font-size: 13px;
        padding: 10px;
    }

    textarea {
        min-height: 100px;
    }

    /* BOTÓN */
    .btn-enviar {
        width: 100%;
        margin: 15px 0 0 0;
        font-size: 18px;
        padding: 12px;
    }

    @keyframes palpitar {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    .palpitando {
        animation: palpitar 1.5s infinite ease-in-out;
    }



    /* RESPONSIVE MAPA________________________________________________- */
    .mapa-section {
        padding: 20px 0;
    }

    .mapa-section h2 {
        font-size: 22px;
    }

    .mapa-contenedor {
        width: 95%;
        height: 300px;
        border-radius: 15px;
    }






    /* responsive FOOTER____________________________________________________________________________________________ */
    #footer {
        text-align: center;
        padding: 0;
    }

    /* Sección superior */
    .footer-top {
        padding: 20px 15px;
    }

    .footer-top .row .col-md-12 {
        flex-direction: column;
        gap: 15px;
        margin: 0;
    }

    .footer-top h2 {
        font-size: 16px;
        margin: 0;
        text-align: center;
    }

    .footer-top a {
        padding: 10px 20px;
        font-size: 14px;
        margin: 0;
    }

    /* Footer inferior */
    .footer-bottom {
        padding: 30px 15px;
    }

    .footer-bottom .row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-bottom .col-md-2 {
        width: 100%;
        margin-bottom: 0;
        text-align: center;
    }

    .logo-section img {
        width: 150px;
        margin: 0 auto;
    }

    .description {
        max-width: 100%;
        margin: 0 10px;
        font-size: 14px;
        line-height: 1.5;
        padding: 0 10px;
    }

    .dest-section,
    .enlaces-section,
    .contacto-section,
    .redes-section {
        margin-left: 0;
        font-size: 16px;
    }

    .footer-bottom .list-unstyled li {
        margin-left: -57px;
        margin-right: 0;
        font-size: 14px;
    }

    .contact-list li {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin: 10px 0 0 0;
    }

    .social-links a i {
        font-size: 18px;
    }
}