/* Estilos Generales */
body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.page-content {
    padding-top: 80px; /* Ajuste para la barra de navegación fija */
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 900;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff; /* Color primario de Bootstrap */
}

/* Barra de Navegación */
.navbar-custom {
    background-color: transparent;
    transition: background-color 0.4s ease-in-out;
    padding: 10px 0;
}

.navbar-custom.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#logo-navbar {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-custom.scrolled .nav-link {
    color: #333;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: #007bff;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
    color: #0056b3;
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.5rem;
}

.navbar-custom.scrolled .navbar-toggler {
    color: #333;
}

/* Hero Section (Página de Inicio) */
.hero-section {
    position: relative;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-button {
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Tour Cards */
.tour-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* --- Vistas previas de tours más altas --- */
.tour-card .card-img-top, .tour-card .card-video-top {
    height: 400px; /* Aumentamos la altura de 350px a 400px */
    width: 100%;
    object-fit: cover; /* Mantiene la imagen llenando el espacio sin deformarse */
}
/* --- FIN DE LA CORRECCIÓN --- */


.tour-card .card-body {
    padding: 20px;
}

.tour-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.tour-card .card-details {
    color: #777;
    margin-bottom: 15px;
}

.tour-card .card-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #007bff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}


/* Hospedaje Cards */
.hospedaje-card-v2 {
    overflow: hidden;
    border-radius: 15px;
    transition: box-shadow 0.3s ease;
}
.hospedaje-card-v2:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}
.hospedaje-media {
    position: relative;
    height: 100%;
    min-height: 400px; /* Asegura una altura mínima para la imagen/video */
}
.hospedaje-main-image, .hospedaje-video-preview {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}
.hospedaje-video-preview {
    opacity: 0;
}
.hospedaje-media:hover .hospedaje-main-image {
    opacity: 0;
}
.hospedaje-media:hover .hospedaje-video-preview {
    opacity: 1;
}
.amenities-list {
    padding-left: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

/* Botón de WhatsApp flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    color: #fff;
}


/* Footer */
.footer-custom {
    background-color: #212529; /* Un gris oscuro, casi negro */
}

.footer-custom a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-custom a:hover {
    color: #007bff !important;
}

.footer-custom .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.5);
}

.footer-custom .btn-outline-light:hover {
    border-color: #fff;
    background-color: #fff;
    color: #212529;
}

/* Estilos del Modal */
.modal-content {
    border-radius: 15px;
}
.modal-header {
    border-bottom: 1px solid #dee2e6;
}
.carousel-item img, .carousel-item video {
    border-radius: 10px;
}
.payment-methods {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-top: 15px;
}
.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: #555;
}
.payment-icon img {
    margin-bottom: 5px;
}
.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
}

/* Video de Precios en Traslados */
.price-list-video-section {
    display: flex;
    justify-content: center;
    align-items: center;
}
.price-list-video-wrapper {
    width: 100%;
    max-width: 450px; /* Ancho similar a un teléfono */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.price-list-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}


/* Estilo para video vertical en el modal (Esto ya estaba bien) */
.modal-video-vertical {
    max-height: 75vh;       /* Limita la altura del video al 75% de la altura de la pantalla */
    object-fit: contain;    /* Asegura que el video se muestre completo sin ser cortado o deformado */
    background-color: #000; /* Fondo negro por si el video no es exactamente 9:16 */
}
