﻿/* Fuentes */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Lato:wght@300;400;700&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;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
    width: 100%;
    font-family: var(--font-text);
}

/* ======================================================
   FIXES (NO TOCA BLOQUES "NO MODIFICAR")
   ====================================================== */

/* Separación correcta del contenido por el header fixed */
main {
    padding-top: 95px;
    /* evita que el contenido quede debajo del header */
}

/* Ajuste para secciones nuevas */
#datos .container,
#fotos .container,
#descripcion .container {
    background: transparent;
}

/* Datos (título y texto) */
#datos h1 {
    font-family: var(--font-titles);
    font-weight: 800;
    color: var(--color-secondary);
    font-size: 28px;
    margin-bottom: 6px;
}

#datos p {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

/* Galería */
.galeria-container img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Descripción */
#descripcion {
    margin-top: 18px;
}

#descripcion .container {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 22px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#descripcion p {
    margin-top: 10px;
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}

/*  HEADER  */
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;
}

.navbar {
    padding: 12px 0px;
}

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

.navbar-logo {
    width: 150px;
    height: auto;
}

.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;
}

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

.btn-login {
    background-color: var(--color-primary);
}

.btn-register {
    background-color: var(--color-secondary);
}

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

.menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--color-primary);
    cursor: pointer;
}

.main-content {
    margin-top: 80px;
    padding: 40px 20px;
}

.page-title {
    text-align: center;
    font-family: var(--font-titles);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 40px;
}

.tabs-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

/* ===============================
   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;
}

/* INICIA no modificar, estilos del dropdown--------------------------------------------- */
.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;
}

/* termina no modificar, estilos del dropdown--------------------------------------------- */

/* ESTILOS PARA EL FILTRO DE BÚSQUEDA  */
.search-filters {
    background-color: #f5f5f5;
    border-radius: 20px;
    margin-top: 75px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor de los filtros */
.filters-row {
    background-color: #23384b;
    padding: 10px 92px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
}

/* Cada ítem del filtro */
.filter-item {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 260px;
    border: 1px solid #ccc;
}

/* Iconos */
.filter-item i {
    color: #23384b;
    margin-right: 8px;
    font-size: 16px;
}

/* Input */
.filter-item input {
    border: none;
    outline: none;
    background: none;
    color: #333;
    font-size: 14px;
    width: 100%;
}

/* Flecha tipo desplegable*/
.filter-item::after {
    content: "\f078";
    /* icono fa-chevron-down */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #333;
    margin-left: 10px;
    font-size: 12px;
}

/* estilos de stars */
.stars i {
    color: var(--color-secondary);
}

/*  MAIN - INFO SECTION  */
#info {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

#info>p:first-child {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Tarjeta de información */
.tarjeta {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detalle h2 {
    font-family: var(--font-titles);
    font-size: 25px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.detalle span {
    position: absolute;
    top: 21px;
    left: 500px;
    background-color: #000000;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

.detalle #direccion {
    color: #000000;
    font-weight: 600px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.detalle>p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* .detalle {
    padding: 30px;
    display: block;
    align-items: center;
    margin-top: 20px;
} */

.detalle i {
    color: #FFD700;
    font-size: 18px;
}

.detalle samp {
    color: #888;
    font-size: 13px;
}

.detalle p {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text);
}

.detalle p .bi-clock {
    margin-right: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text);
}

.detalle p samp {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 16px;
}

.detalle p:last-child {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* Datos - Estrellas y precios */

.linea-gradiente {
    width: 2px;
    height: 180px;
    position: absolute;
    margin: 0 auto;
    bottom: 230px;
    left: 50px;
    right: 40px;
    background: linear-gradient(180deg, #3e3e3e, #545353);
    border-radius: 10px;
}

/*  SECCIÓN INFO  */
#info {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

#info>p:first-child {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Datos - Estrellas y precios */
.datos {
    padding: 30px;
    display: block;
    align-items: center;
    margin-top: 20px;
}

.datos i {
    color: #FFD700;
    font-size: 18px;
}

.datos samp {
    color: #888;
    font-size: 13px;
}

.datos p {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text);
}

.datos p .bi-clock {
    margin-right: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text);
}

.datos p samp {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 16px;
}

.datos p:last-child {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
}

/* ========== GALERÍA DE IMÁGENES ========== */
#galeria-hotel {
    padding-bottom: 50px;
}

.cont-img-principal {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.carousel-track img {
    flex-shrink: 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.cont-img-principal .prev,
.cont-img-principal .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont-img-principal .prev { left: 10px; }
.cont-img-principal .next { right: 10px; }

.item.active img {
    opacity: 1;
    outline: 2px solid #EA8217;
}


.cont-items {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.cont-items button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.cont-items img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    opacity: 0.7;
    transition: 0.3s;
}

.cont-items img:hover {
    opacity: 1;
    transform: scale(1.05);
}


#info>img:hover {
    transform: scale(1.05);
}

/* Grid de imágenes */
#info {
    display: flex;
    flex-wrap: wrap;
}

#info>.targeta {
    width: 100%;
}

/* ========== DESCRIPCIÓN LARGA ========== */
#info>p:last-of-type {
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin: 30px 0;
    padding: 0 10px;
}

.dato {
    background: #FFFFFF;
    /* margin-top: 30px;
    padding: 20px; */
    border-radius: 20px;
}

/* ========== MAPA ========== */
.mapa-section {
    width: 100%;
    margin: 40px 0;
    border-radius: 15px;
    padding: 30px;
}

.mapa-contenedor {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Estilos del formulario de reserva */
.form-reserva {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: sticky; /* Cambiado de fixed a sticky */
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    min-height: 300px;
    max-width: 400px;
    z-index: 10; /* Aumentado para que esté sobre el contenido */
}

.form-reserva h1{
    font-size: 25px;
    text-align: center;
    font-weight: 700;
}

/* Agregado: responsividad */
@media (max-width: 768px) {
    .form-reserva {
        position: static; /* Quita el fixed en móviles */
        width: 100%;
        margin-top: 20px;
    }
}

.form-reserva .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-reserva label {
    font-weight: 600;
    color: #333;
}

.form-reserva .form-control {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #ddd;
}

.form-reserva .form-control:focus {
    border-color: #ff7a00;
    box-shadow: 0 0 0 0.15rem rgba(255, 122, 0, 0.25);
}


.form-reserva button {
    background: linear-gradient(135deg, #ff7a00, #ff9f45);
    border: none;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 5px;
    border-radius: 12px;
    color: #fff;
}

.form-reserva button:hover {
    background: linear-gradient(135deg, #e96a00, #ff8c2b);
}

.form-reserva button:active {
    transform: scale(0.98);
}


/* NO MODIFICAR ESTILOS DE ESTE BOTON */
/* NO MODIFICAR ESTILOS DE ESTE BOTON */
/* NO MODIFICAR ESTILOS DE ESTE BOTON */
/* Botón */
.btn-ver-mas {
    display: inline-block;
    padding: 15px 25px;
    font-size: 25px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    background-color: #11dc65;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-left: 1235px;
    margin-bottom: 20px;
}

/* Hover */
.btn-ver-mas:hover {
    background-color: #EA8217;
    /* Naranja Aventura Go */
    transform: translateY(-2px);
}

/* Click (feedback visual) */
.btn-ver-mas:active {
    transform: translateY(0);
}

.button {
    position: fixed;
    top: 230px;
    right: 20px;
    z-index: 9999;
}

/* NO MODIFICAR ESTILOS DE ESTE BOTON */
/* NO MODIFICAR ESTILOS DE ESTE BOTON */
/* NO MODIFICAR ESTILOS DE ESTE BOTON */

.activities-grid {
    margin-top: 150px;
    margin-left: 25px;
}

/* OJO EL FOOOOTER ESTA BIEN  NO LO MODIFIQUE */
/*  FOOTER  */
.container-fluid {
    width: 100%;
    padding: 0;
}

.footer-top {
    width: 100%;
    background-color: #2D4059;
    color: white;
    padding: 30px 0;
}

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

.footer-top h2 {
    color: white;
    font-family: var(--font-titles);
    font-size: 28px;
    font-weight: 400;
    animation: palpitar 1.5s infinite ease-in-out;
}

@keyframes palpitar {

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

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

.footer-top a {
    background-color: #EA8217;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    font-family: var(--font-titles);
    border-radius: 20px;
    padding: 12px 30px;
    transition: transform 0.3s ease;
}

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

/* Footer Inferior */
.footer-bottom {
    background-color: var(--color-bg-light);
    padding: 40px 0 10px 0;
    font-family: var(--font-text);
}

.footer-bottom .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom .col-md-2 {
    flex: 1;
    min-width: 150px;
}

.logo-section img {
    max-width: 180px;
}

.description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text);
}

.dest-section,
.enlaces-section,
.contacto-section,
.redes-section {
    font-family: var(--font-titles);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text);
}

.footer-bottom .list-unstyled {
    padding: 0;
    margin: 0;
}

.footer-bottom .list-unstyled li {
    margin-bottom: 8px;
    font-size: 13px;
    color: #666;
}

.footer-bottom .list-unstyled a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--color-primary);
    font-size: 20px;
    transition: color 0.3s;
}

.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 DESIGN – AVENTURA GO
   ====================================================== */

/* =======================
   TABLETS (≤ 992px)
   ======================= */
@media (max-width: 992px) {

    /* NAV */
    .navbar-nav {
        gap: 18px;
    }

    .navbar-logo {
        width: 130px;
    }

    /* FILTROS */
    .filters-row {
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-item {
        min-width: 220px;
    }

    /* TARJETA INFO */
    .detalle span {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }

    .linea-gradiente {
        display: none;
    }

    /* GALERÍA */
    .img-grande {
        min-height: 320px;
    }

    /* BOTÓN FLOTANTE */
    .btn-ver-mas {
        margin-left: 0;
        font-size: 20px;
        padding: 12px 20px;
    }
}

/* =======================
   MOBILE (≤ 768px)
   ======================= */
@media (max-width: 768px) {

    /* HEADER */
    .menu-toggle {
        display: block;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav.active {
        display: flex;
    }

    /* BIENVENIDA */
    .Bienvenido {
        font-size: 13px;
        padding: 6px 10px;
    }

    /* FILTROS */
    .search-filters {
        padding: 10px;
    }

    .filters-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 70px;
    }

    .filter-item {
        width: 100%;
        min-width: auto;
    }

    /* CONTENIDO */
    .main-content {
        padding: 20px 10px;
    }

    .page-title {
        font-size: 26px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    /* TARJETA */
    .targeta {
        padding: 20px;
    }

    .detalle h2 {
        font-size: 22px;
    }

    /* GALERÍA */
    .img-grande {
        min-height: 260px;
    }

    .img-mediana,
    .img-pequena {
        height: 160px;
    }

    /* BOTÓN FLOTANTE */
    .button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
    }

    .btn-ver-mas {
        font-size: 18px;
        padding: 12px 18px;
    }
}

/* =======================
   SMALL MOBILE (≤ 480px)
   ======================= */
@media (max-width: 480px) {

    /* TEXTO */
    .page-title {
        font-size: 22px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    /* TARJETA */
    .detalle h2 {
        font-size: 20px;
    }

    .datos p:last-child {
        font-size: 20px;
    }

    /* MAPA */
    .mapa-contenedor {
        height: 280px;
    }

    /* FOOTER */
    .footer-bottom .row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-top h2 {
        font-size: 22px;
        text-align: center;
    }

    .footer-top a {
        font-size: 16px;
        padding: 10px 20px;
    }
}
/* ─── NAVBAR + FOOTER RESPONSIVE (≤768px) — v2 ─── */
@media screen and (max-width: 768px) {
    /* Navbar */
    .navbar      { padding: 8px 16px; }
    .navbar-logo { width: 90px; }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 58px;
        right: 12px;
        width: 200px;
        background-color: #ffffff;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
        z-index: 1000;
    }
    .navbar-nav.show { display: flex; }
    .menu-toggle     { display: block; font-size: 22px; }
    .actions         { margin-right: 0; gap: 8px; }
    .btn-login,
    .btn-register    { padding: 6px 10px; font-size: 12px; border-radius: 6px; }

    /* Carousel full-width */
    #hero            { margin-top: 60px; }
    #hero .carousel  { margin: 0; border-radius: 0; }
    #hero .carousel-item img { height: 260px; object-fit: cover; }
    #hero .carousel-caption  {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
    }
    #hero .carousel-caption h1,
    #hero .carousel-caption h2 { font-size: 26px; line-height: 1.2; }
    #hero .carousel-caption p  { font-size: 12px; }
    #hero h2.marca             { display: none; }

    /* Footer superior */
    .footer-top { text-align: center; padding: 20px 15px; }
    .footer-top .row .col-md-12 { flex-direction: column; align-items: center; gap: 16px; margin: 0; }
    .footer-top h2 { margin-left: 0; font-size: 18px; text-align: center; padding: 0; }
    .footer-top a  { margin-right: 0; margin-left: 0; font-size: 14px; padding: 10px 20px; }

    /* Footer inferior */
    .footer-bottom .row     { flex-wrap: wrap; gap: 20px; }
    .footer-bottom .col-md-2 { min-width: 45%; text-align: center; }
    .dest-section, .enlaces-section,
    .contacto-section, .redes-section { margin-left: 0; }
    .footer-bottom .list-unstyled li  { margin-left: 0; margin-right: 0; }
    .social-links { justify-content: center; margin-left: 0; }
}
