/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Barlow', Arial, sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #e7eefa 0%, #e7eefa 70%, #d9e2f3 100%);
    background-attachment: fixed;
}

/* Header Styles - Simple and clean like the original */
.main-header {
    background-color: #dfe9f5;
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    width: auto;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-menu li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-weight: normal;
}

.nav-link {
    color: #224c7b;
    text-decoration: none;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    border-radius: 8px 8px 0 0;
    font-family: 'Barlow', Arial, sans-serif;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #224c7b;
    background: #fff;
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animación hamburguesa a X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown Menu Styles - Estilo Disney */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(0);
    background: white;
    min-width: 280px;
    max-width: 400px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0;
    padding: 20px 18px;
    border-top: 3px solid #224c7b;
}

/* Ajustar posición para los últimos items para que no se salgan del viewport */
.nav-item:nth-last-child(-n+3) .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dropdown-section {
    flex: 1;
    min-width: 100%;
}

.dropdown-section h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #224c7b;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #224c7b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-section h3 i {
    font-size: 16px;
    color: #224c7b;
}

.dropdown-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    color: #333;
    text-decoration: none;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 3px;
}

.dropdown-section a i {
    font-size: 14px;
    color: #666;
    width: 18px;
    text-align: center;
    transition: all 0.2s ease;
}

.dropdown-section a:hover {
    background: #e8f0f7;
    color: #224c7b;
    transform: translateX(5px);
}

.dropdown-section a:hover i {
    color: #224c7b;
    transform: scale(1.1);
}

/* Subdropdown de Horarios */
.has-subdropdown {
    position: relative;
}

.horarios-dropdown {
    position: absolute;
    right: calc(100% + 10px);
    top: -20px;
    background: white;
    border-radius: 12px;
    padding: 20px 18px;
    min-width: 350px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    overflow: hidden;
    pointer-events: none;
    border-top: 3px solid #224c7b;
}

.has-subdropdown:hover .horarios-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.horarios-content {
    padding: 0;
}

.horarios-content h3 {
    color: #224c7b;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding: 0 0 12px 0;
    font-family: 'Barlow', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #e8f0f7;
}

.horarios-content h3 i {
    font-size: 18px;
    color: #224c7b;
}

.horario-item {
    color: #224c7b;
    font-size: 14px;
    line-height: 1.6;
    padding: 12px 15px;
    background: white;
    font-family: 'Barlow', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
    border-radius: 6px;
    margin-bottom: 8px;
}

.horario-item:hover {
    background: #e8f0f7;
    color: #224c7b;
    transform: translateX(5px);
}

.horario-item i {
    color: #224c7b;
    font-size: 18px;
    margin-top: 2px;
    min-width: 18px;
}

.horario-item:hover i {
    color: #224c7b;
    transform: scale(1.1);
}

.horario-text {
    flex: 1;
}

.horario-item strong {
    color: #224c7b;
    font-weight: 700;
    font-size: 14px;
}

.horario-tiempo {
    color: #4378b5;
    font-weight: 700;
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

.horario-item:last-child {
    margin-bottom: 0;
}

/* Ajustar el hover del nav-link cuando tiene dropdown */
.nav-item.has-dropdown:hover .nav-link {
    color: #224c7b;
    background: #fff;
}

/* Flecha indicadora de dropdown */
.nav-item.has-dropdown > .nav-link::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
}

/* Main Content - Carousel takes full viewport */
.main-content {
    width: 100vw;
    height: calc(100vh - 110px); /* Subtract header + cintillo height */
    position: relative;
    overflow: hidden;
    margin-top: 110px; /* Espacio para header fijo + cintillo */
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    background: transparent;
}

/* Carousel Container */
.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Shows complete image without cropping */
    object-position: center;
    background-color: #f0f0f0; /* Fondo claro para las áreas no cubiertas */
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow span {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-arrow:hover {
    background: rgba(255, 107, 53, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Information Section - Below carousel */
.info-section {
    background: transparent;
    padding: 33px 30px;
    text-align: center;
    margin-top: 0;
}

.info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.info-quote {
    font-size: 24px;
    line-height: 1.6;
    color: #224c7b;
    font-style: italic;
    margin-bottom: 40px;
}

.park-title {
    color: #2980b9;
}

.park-main-title {
    font-size: 74px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.park-subtitle {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.park-location {
    font-family: 'NCL Bestopia', Arial, sans-serif;
    font-size: 86px;
    font-weight: 500;
    color: #244e7f;
}

.mexico-text {
    font-family: 'NCL Bestopia', Arial, sans-serif;
    color: #348318;
    font-weight: bold;
    font-style: italic;
    font-size: inherit; /* Hereda el tamaño del park-location */
}

/* Image Gallery Section */
.image-gallery-section {
    background: transparent;
    padding: 33px 30px;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.gallery-item {
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    width: 100%;
    height: 450px; /* Altura fija para que todas coincidan */
    object-fit: cover; /* Mantiene proporciones y recorta si es necesario */
    display: block;
    border-radius: 20px;
    box-shadow: none;
}

/* Magia CSS para img1.png - escalamos la imagen para que coincida con las otras */
.gallery-image[src*="img1.png"] {
    object-fit: cover; /* Volvemos a cover pero con escalado sutil */
    transform: scale(1.04); /* Escalamos solo 8% más grande */
    transform-origin: center; /* Escalamos desde el centro */
    background-color: transparent;
}

/* Botón de atracciones */
.attractions-button-container {
    text-align: center;
    margin-top: 40px;
}

.attractions-button {
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 35px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.1;
    box-shadow: 0 8px 25px rgba(34, 76, 123, 0.3);
    letter-spacing: 0.5px;
}

.button-text-large {
    font-size: 48px;
    letter-spacing: 1px;
}

.button-text-small {
    font-size: 30px;
    letter-spacing: 0.3px;
}

.attractions-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(34, 76, 123, 0.4);
}

/* Sección de texto jurásico */
.jurassic-text-section {
    background: transparent;
    padding: 33px 30px;
}

.jurassic-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.jurassic-left {
    flex: 1;
    text-align: center;
}

.jurassic-right {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 35px;
}

.intro-text {
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: normal;
    font-size: 24px;
    color: #4c9d2b;
    margin-bottom: 5px;
    line-height: 1;
}

.jurassic-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: -10px;
    background: linear-gradient(180deg, #86d44c 0%, #409124 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.dragons-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    background: linear-gradient(180deg, #4f9f2c 0%, #2f7d14 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.size-text {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0;
}

/* Sección de boletos */
.tickets-section {
    background: transparent;
    padding: 33px 30px;
}

.tickets-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.tickets-image {
    flex: 1;
    text-align: center;
}

.vehicle-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.tickets-text {
    flex: 1;
    text-align: center;
}

.tickets-main-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 58px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tickets-large-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 90px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1;
}

.tickets-promo {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 42px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ff7696 0%, #c93c57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    line-height: 1.3;
}

.tickets-button {
    background: linear-gradient(180deg, #ff7696 0%, #c93c57 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 35px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 60, 87, 0.3);
    letter-spacing: 0.5px;
}

.tickets-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 60, 87, 0.4);
}

/* Sección de Eventos Especiales */
.special-events-section {
    background: transparent;
    padding: 33px 30px;
}

.special-events-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(180deg, #4378b5 0%, #224c7b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0 0 50px 0;
    text-align: center;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.event-card {
    text-align: center;
}

.event-image {
    width: 100%;
    max-width: 450px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-description {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 24px;
    color: #224c7b;
    line-height: 1.5;
    margin-bottom: 30px;
    font-style: italic;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.event-button {
    background: linear-gradient(180deg, #ff8c42 0%, #d4621a 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 98, 26, 0.3);
    letter-spacing: 0.5px;
}

.event-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 98, 26, 0.4);
}

/* Ocultar indicadores de galería en desktop */
.gallery-scroll-indicator {
    display: none;
}

/* Sección de Hospedaje */
.hospedaje-section {
    background: transparent;
    padding: 30px 30px;
}

.hospedaje-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hospedaje-text {
    flex: 0.5;
    text-align: center;
}

.hospedaje-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 97px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #86d44c 0%, #409124 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 0.9;
}

.hospedaje-description {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 28px;
    color: #224c7b;
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: 500;
}

.hospedaje-description-2 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 28px;
    color: #224c7b;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 500;
}

.hospedaje-subtitle {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 30px;
    color: #224c7b;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: bold;
    font-style: italic;
}

.hospedaje-button {
    background: linear-gradient(180deg, #86d44c 0%, #409124 100%);
    color: white;
    border: none;
    padding: 25px 60px;
    border-radius: 40px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(64, 145, 36, 0.3);
    letter-spacing: 0.5px;
}

.hospedaje-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(64, 145, 36, 0.4);
}

.hospedaje-image {
    flex: 0.5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospedaje-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
}

/* Sección de Hospédate y Reserva */
.hospedate-reserva-section {
    background: transparent;
    padding: 30px 0 0 0;
}

.hospedate-reserva-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.hospedate-title-img {
    margin-bottom: -60px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hospedate-title-image {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* Aumentar tamaño en PC */
@media (min-width: 769px) {
    .hospedate-title-image {
        max-width: 800px;
    }
}

.hospedate-ilustracion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hospedate-ilustracion-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Sección de Eventos Especiales Nuevos */
.eventos-especiales-nuevos-section {
    background: transparent;
    padding: 30px 30px;
}

.eventos-especiales-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.eventos-title-img {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.eventos-title-image {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.evento-card-nuevo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.evento-imagen-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evento-imagen-nuevo {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.evento-descripcion-nuevo {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 20px;
    color: #224c7b;
    line-height: 1.4;
    margin: 0;
    padding: 0 10px;
    text-align: center;
}

.evento-boton-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Animación de parpadeo suave para botones */
@keyframes subtle-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.05);
    }
}

.evento-boton-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: subtle-pulse 2s ease-in-out infinite;
}

.evento-boton-img:hover {
    transform: scale(1.08);
    animation: none;
}

/* Botones reducidos para la sección de Eventos Especiales */
.evento-boton-especial .evento-boton-img {
    max-width: 250px;
    width: 95%;
}

/* Media queries para botones de eventos especiales en móvil */
@media (max-width: 768px) {
    .evento-boton-especial .evento-boton-img {
        max-width: 200px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .evento-boton-especial .evento-boton-img {
        max-width: 150px;
        width: 100%;
    }
}


/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #224c7b 0%, #4378b5 100%);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(34, 76, 123, 0.4);
    z-index: 10000 !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #4378b5 0%, #224c7b 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 76, 123, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.98);
}

/* Media Query para Tablets Grandes (iPad Pro, etc) */
@media (max-width: 1200px) {
    .nav-link {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .dropdown-menu {
        min-width: 250px;
    }
}

/* Media Query para Tablets Medianas (iPad, etc) */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }
    
    .navigation .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #dfe9f5;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu li:not(:last-child)::after {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(34, 76, 123, 0.2);
        width: 100%;
        opacity: 0;
        animation: fadeInItem 0.3s ease forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(7) { animation-delay: 0.35s; }
    
    @keyframes fadeInItem {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-link {
        border-radius: 0;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        background: transparent;
        color: #224c7b !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(34, 76, 123, 0.1);
        color: #224c7b !important;
        transform: none;
    }
    
    /* Dropdown styles para tablets y móviles */
    .nav-item.has-dropdown > .nav-link::after {
        float: right;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }
    
    .nav-item.has-dropdown.active > .nav-link::after {
        transform: rotate(180deg);
    }
    
    /* Deshabilitar hover en tablets y móviles */
    .nav-item.has-dropdown:hover .dropdown-menu {
        max-height: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.9);
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease, 
                    padding 0.4s ease;
    }
    
    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 15px 20px 15px 35px;
        opacity: 1;
        visibility: visible;
        animation: expandDropdown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes expandDropdown {
        from {
            max-height: 0;
            opacity: 0;
        }
        to {
            max-height: 600px;
            opacity: 1;
        }
    }
    
    .dropdown-content {
        gap: 15px;
    }
    
    .dropdown-section {
        margin-bottom: 15px;
    }
    
    .dropdown-section:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-section h3 {
        font-size: 13px;
        margin-bottom: 8px;
        padding-bottom: 5px;
        color: #224c7b;
    }
    
    .dropdown-section a {
        font-size: 13px;
        padding: 8px 10px;
        color: #555;
        background: transparent;
    }
    
    .dropdown-section a:hover {
        transform: translateX(3px);
        background: rgba(34, 76, 123, 0.1);
        color: #224c7b;
    }
    
    /* Ajustar posición de últimos items - resetear en tablet/móvil */
    .nav-item:nth-last-child(-n+3) .dropdown-menu {
        left: 0;
        right: auto;
    }
}

/* Responsive Design para Móviles */
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
    
    .header-container {
        padding: 12px 20px;
    }
    
    .main-header {
        top: 26px;
    }
    
    .main-content {
        height: calc(100vh - 90px) !important;
        margin-top: 90px !important;
    }
    
    /* Ajustar botón scroll to top en móviles */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .park-subtitle {
        font-size: 52px;
        margin-bottom: 3px;
    }
    
    .park-main-title {
        font-size: 36px;
    }
    
    .park-location {
        font-size: 28px;
    }
    
    .info-section {
        padding: 0 20px 40px 20px;
        margin: 0 !important;
        background-color: #dee6f6 !important;
    }
    
    /* Simplificar: info-section pegada al carrusel */
    .main-content + .info-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Convertir galería en carrusel para móviles */
    .image-gallery-section .gallery-container {
        position: relative;
        overflow: hidden;
    }
    
    .image-gallery-section .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
        gap: 20px;
        padding: 0 20px;
    }
    
    .image-gallery-section .gallery-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .image-gallery-section .gallery-item {
        flex: 0 0 300px; /* Ancho optimizado para móvil */
        width: 300px;
        transform: none; /* Desactivar hover en móviles */
    }
    
    .image-gallery-section .gallery-item:hover {
        transform: none; /* Sin efecto hover en móviles */
    }
    
    .image-gallery-section .gallery-image {
        width: 100%;
        height: 300px; /* Altura mucho más grande para mejor visibilidad */
        object-fit: contain; /* Muestra la imagen completa sin recortar */
        background-color: transparent;
    }
    
    /* Reducir espacio entre texto y galería en móviles */
    .image-gallery-section {
        padding: 30px 20px; /* Reducido de 60px a 30px */
    }
    
    /* Misma magia CSS para img1.png en móviles */
    .image-gallery-section .gallery-image[src*="img1.png"] {
        transform: scale(1.04); /* Escalado correcto para móviles */
        transform-origin: center;
    }
    
    /* Indicadores de carrusel para galería en móviles */
    .gallery-scroll-indicator {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .gallery-scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(34, 76, 123, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .gallery-scroll-dot.active {
        background-color: #224c7b;
        width: 20px;
        border-radius: 10px;
    }
    
    /* Botón de atracciones en móviles */
    .attractions-button-container {
        margin-top: 30px;
        padding: 0 20px;
    }
    
    .attractions-button {
        padding: 15px 30px;
        width: 100%;
        max-width: 320px;
        border-radius: 30px;
    }
    
    .button-text-large {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
    
    .button-text-small {
        font-size: 16px;
        letter-spacing: 0.2px;
    }
    
    /* Sección jurásica responsive */
    .jurassic-text-section {
        padding: 30px 0;
        text-align: center;
    }
    
    .jurassic-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
    
    .jurassic-left,
    .jurassic-right {
        text-align: center;
        margin-top: 0;
        width: 100%;
    }
    
    .intro-text {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .jurassic-title {
        font-size: 48px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .dragons-title {
        font-size: 48px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .size-text {
        font-size: 46px;
        margin-top: 5px;
        line-height: 1.2;
    }
    
    /* Sección de boletos responsive */
    .tickets-section {
        padding: 30px 0;
        text-align: center;
    }
    
    .tickets-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }
    
    .tickets-image,
    .tickets-text {
        text-align: center;
        width: 100%;
    }
    
    .vehicle-image {
        max-width: 300px;
    }
    
    .tickets-main-title {
        font-size: 36px;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .tickets-large-title {
        font-size: 52px;
        margin-bottom: 8px;
        line-height: 0.9;
    }
    
    .tickets-promo {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .tickets-button {
        padding: 18px 35px;
        font-size: 18px;
        margin-top: 10px;
    }
    
    /* Sección de eventos especiales responsive */
    .special-events-section {
        padding: 40px 15px;
    }
    
    .special-events-title {
        font-size: 46px;
        margin-bottom: 30px;
    }
    
    .events-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .event-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 250px;
        object-fit: contain;
    }
    
    .event-description {
        font-size: 22px;
        margin-bottom: 25px;
        max-width: 90%;
        color: #224c7b;
    }
    
    .event-button {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    /* Sección de hospedaje responsive */
    .hospedaje-section {
        padding: 40px 20px;
    }
    
    .hospedaje-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .hospedaje-title {
        font-size: 60px;
        margin-bottom: 20px;
    }
    
    .hospedaje-description {
        font-size: 22px;
        margin-bottom: 5px;
    }
    
    .hospedaje-description-2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .hospedaje-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .hospedaje-button {
        padding: 18px 40px;
        font-size: 20px;
    }
    
    .hospedaje-img {
        max-width: 400px;
    }
    
    /* Sección de Hospédate y Reserva responsive */
    .hospedate-reserva-section {
        padding: 50px 0 0 0;
    }
    
    .hospedate-reserva-container {
        padding: 0 20px;
    }
    
    .hospedate-title-img {
        margin-bottom: 40px;
        z-index: 1;
    }
    
    .hospedate-title-image {
        max-width: 500px;
    }
    
    .hospedate-ilustracion {
        padding: 0;
    }
    
    .hospedate-ilustracion-img {
        width: 100%;
    }
    
    /* Sección de Eventos Especiales Nuevos responsive */
    .eventos-especiales-nuevos-section {
        padding: 15px 20px;
    }
    
    .eventos-title-img {
        margin-bottom: 40px;
    }
    
    .eventos-title-image {
        max-width: 500px;
    }
    
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .evento-imagen-nuevo {
        max-width: 350px;
    }
    
    .evento-descripcion-nuevo {
        font-size: 22px;
    }
    
    .evento-boton-img {
        max-width: 220px;
    }
    
    /* Sección de mapa responsive */
    .map-section {
        padding: 40px 20px;
    }
    
    .map-title {
        font-size: 40px;
        margin-bottom: 35px;
        line-height: 1.2;
        padding: 8px 15px;
        text-align: center;
        word-break: break-word;
    }
    
    .map-wrapper {
        margin-bottom: 35px;
        border-radius: 20px;
        max-width: 95%;
    }
    
    .map-iframe {
        height: 400px;
    }
    
    .map-button {
        padding: 20px 45px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow span {
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .park-subtitle {
        font-size: 46px;
        margin-bottom: 2px;
    }
    
    .park-main-title {
        font-size: 32px;
    }
    
    .park-location {
        font-size: 24px;
    }
    
    .info-quote {
        font-size: 16px;
    }
    
    .info-section {
        padding: 0 15px 30px 15px;
        margin: 0 !important;
        background-color: #dee6f6 !important; /* Color correcto del fondo */
    }
    
    /* Simplificar: info-section pegada al carrusel */
    .main-content + .info-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Mejorar espaciado en sección de boletos para pantallas muy pequeñas */
    .tickets-main-title {
        font-size: 32px;
        margin-bottom: 3px;
        line-height: 1.1;
    }
    
    .tickets-large-title {
        font-size: 46px;
        margin-bottom: 5px;
        line-height: 0.9;
    }
    
    .tickets-promo {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .tickets-button {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Mejorar sección jurásica para pantallas muy pequeñas */
    .intro-text {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .jurassic-title {
        font-size: 42px;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .dragons-title {
        font-size: 42px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .size-text {
        font-size: 40px;
        margin-top: 5px;
        line-height: 1.2;
    }
    
    /* Sección de eventos especiales para pantallas muy pequeñas */
    .special-events-section {
        padding: 30px 10px;
    }
    
    .special-events-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .events-container {
        gap: 30px;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .event-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 220px;
        object-fit: contain;
        border-radius: 15px;
    }
    
    .event-description {
        font-size: 20px;
        margin-bottom: 20px;
        max-width: 95%;
        color: #224c7b;
    }
    
    .event-button {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Carrusel optimizado para móviles pequeños */
    .main-content {
        height: auto !important;
    }
    
    .carousel-container {
        height: auto !important;
        background-color: transparent;
    }
    
    .carousel-wrapper {
        height: auto !important;
        position: relative;
    }
    
    .carousel-slide {
        position: relative !important; /* Cambiar a relative para móviles */
        height: auto !important;
        opacity: 1 !important;
        display: none; /* Ocultar por defecto */
    }
    
    .carousel-slide.active {
        display: block !important; /* Mostrar solo el activo */
        opacity: 1 !important;
    }
    
    .carousel-image {
        width: 100% !important;
        height: auto !important;
        display: block;
        object-fit: contain !important;
    }
    
    /* Sección de hospedaje para pantallas muy pequeñas */
    .hospedaje-section {
        padding: 30px 15px;
    }
    
    .hospedaje-container {
        gap: 25px;
    }
    
    .hospedaje-title {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .hospedaje-description {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .hospedaje-description-2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hospedaje-subtitle {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .hospedaje-button {
        padding: 16px 35px;
        font-size: 18px;
    }
    
    .hospedaje-img {
        max-width: 350px;
    }
    
    /* Sección de Hospédate y Reserva para pantallas muy pequeñas */
    .hospedate-reserva-section {
        padding: 40px 0 0 0;
    }
    
    .hospedate-reserva-container {
        padding: 0 15px;
    }
    
    .hospedate-title-img {
        margin-bottom: 30px;
    }
    
    .hospedate-title-image {
        max-width: 100%;
    }
    
    .hospedate-ilustracion {
        padding: 0;
    }
    
    .hospedate-ilustracion-img {
        width: 100%;
    }
    
    /* Sección de Eventos Especiales Nuevos para pantallas muy pequeñas */
    .eventos-especiales-nuevos-section {
        padding: 10px 15px;
    }
    
    .eventos-title-img {
        margin-bottom: 30px;
    }
    
    .eventos-title-image {
        max-width: 100%;
    }
    
    .eventos-grid {
        gap: 40px;
    }
    
    .evento-imagen-nuevo {
        max-width: 300px;
    }
    
    .evento-descripcion-nuevo {
        font-size: 18px;
        padding: 0 5px;
    }
    
    .evento-boton-img {
        max-width: 200px;
    }
    
    /* Sección de mapa para pantallas muy pequeñas */
    .map-section {
        padding: 30px 15px;
    }
    
    .map-title {
        font-size: 29px;
        margin-bottom: 30px;
        line-height: 1.3;
        padding: 5px 10px;
        text-align: center;
        word-break: break-word;
        max-width: 100%;
    }
    
    .map-wrapper {
        margin-bottom: 30px;
        border-radius: 15px;
        max-width: 98%;
    }
    
    .map-iframe {
        height: 320px;
    }
    
    .map-button {
        padding: 18px 40px;
        font-size: 20px;
    }
}

/* Sección de Mapa - ¿Cómo llegar? */
.map-section {
    background: transparent;
    padding: 33px 30px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 90px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 50px;
    background: linear-gradient(180deg, #f38d3b 0%, #f77e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    padding: 10px 20px;
}

.map-wrapper {
    margin-bottom: 50px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 100%;
    max-width: 900px;
}

.map-iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

.map-button {
    background: linear-gradient(180deg, #f38d3b 0%, #f77e62 100%);
    color: white;
    border: none;
    padding: 25px 60px;
    border-radius: 40px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(243, 141, 59, 0.4);
    letter-spacing: 0.5px;
}

.map-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 141, 59, 0.4);
}

/* Sección de Testimonios */
.testimonios-section {
    background: transparent;
    padding: 33px 30px;
}

.testimonios-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonios-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 80px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #105db5 0%, #043163 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.testimonios-subtitle {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: #053265;
    margin-bottom: 60px;
    line-height: 1.3;
}

.testimonios-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* Asegurar que en desktop se mantenga la vista estática */
@media (min-width: 769px) {
    .testimonios-wrapper {
        flex-wrap: wrap;
        overflow: visible;
        justify-content: center;
    }
    
    .testimonio-item {
        flex: 0 0 auto;
        max-width: 400px;
        width: calc(33.333% - 20px);
        min-width: 300px;
    }
}

.testimonio-item {
    flex: 0 0 auto;
    max-width: 400px;
    width: 100%;
}

.testimonio-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.testimonio-image:hover {
    transform: translateY(-5px);
}

/* Responsive para Testimonios */
@media (max-width: 768px) {
    .testimonios-section {
        padding: 50px 20px;
    }
    
    .testimonios-title {
        font-size: 50px;
        margin-bottom: 15px;
    }
    
    .testimonios-subtitle {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    /* Convertir en carrusel para móviles */
    .testimonios-wrapper {
        display: flex;
        overflow-x: scroll;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 15px;
        padding: 0 15px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .testimonios-wrapper::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    
    .testimonio-item {
        flex: 0 0 85vw;
        max-width: 85vw;
        width: 85vw;
        min-width: 280px;
    }
    
    .testimonio-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .testimonios-section {
        padding: 40px 15px;
    }
    
    .testimonios-title {
        font-size: 38px;
        margin-bottom: 12px;
    }
    
    .testimonios-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .testimonios-wrapper {
        padding: 0 10px;
        gap: 12px;
    }
    
    .testimonio-item {
        flex: 0 0 90vw;
        max-width: 90vw;
        width: 90vw;
        min-width: 250px;
    }
    
    .testimonio-image {
        border-radius: 12px;
        width: 100%;
        height: auto;
    }
}

/* Sección de Actividades */
.actividades-section {
    background: transparent;
    padding: 30px 30px;
}

.actividades-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.actividades-title-img {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

.actividades-title-image {
    max-width: 800px;
    width: 100%;
    height: auto;
}

.actividades-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.actividades-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.actividad-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    transition: all 0.3s ease;
    position: relative;
}

.actividad-item a {
    display: flex;
    flex-direction: column;
    position: relative;
}

.actividad-item .actividad-image {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.actividad-item .evento-boton-wrapper {
    position: relative;
    margin-top: 15px;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
}

.actividad-item .evento-boton-img {
    max-width: 60%;
    width: 60%;
    height: auto;
}

.actividades-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(34, 76, 123, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.actividades-nav-button:hover {
    background: #224c7b;
    transform: translateY(-50%) scale(1.1);
}

.actividades-nav-button.prev {
    left: 10px;
}

.actividades-nav-button.next {
    right: 10px;
}

.actividades-nav-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.actividades-nav-button:disabled:hover {
    transform: translateY(-50%);
}

/* Botones reducidos para la sección de actividades */
.actividades-boton {
    margin-top: 15px;
}

.actividades-boton .evento-boton-img {
    max-width: 280px;
    width: 80%;
}

.actividades-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: -8px;
}

.actividades-scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.actividades-scroll-dot.active {
    background: #224c7b;
    width: 30px;
    border-radius: 6px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .actividades-nav-button {
        display: none;
    }
    
    .actividades-carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .actividades-wrapper {
        transform: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .actividad-item {
        flex: 0 0 80%;
        min-width: 80%;
        scroll-snap-align: center;
    }
    
    .actividad-item img {
        transform: scale(0.8);
    }
}

.actividad-item {
    flex: 0 0 auto;
    max-width: 350px;
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.actividad-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.actividad-image:hover {
    /* Efecto de hover removido */
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .actividades-section {
        padding: 15px 20px;
    }
    
    .actividades-title-image {
        max-width: 600px;
    }
    
    .actividades-wrapper {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px 20px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .actividades-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .actividad-item {
        flex: 0 0 85vw;
        max-width: 85vw;
        width: 85vw;
        scroll-snap-align: center;
        min-width: 280px;
        height: 402px;
    }
    
    .actividad-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .actividades-scroll-indicator {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: -5px;
    }
    
    .actividades-scroll-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .actividades-scroll-dot.active {
        background-color: #105db5;
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .actividades-section {
        padding: 10px 15px;
    }
    
    .actividades-title-image {
        max-width: 100%;
    }
    
    .actividades-wrapper {
        padding: 0 10px;
        gap: 12px;
    }
    
    .actividad-item {
        flex: 0 0 90vw;
        max-width: 90vw;
        width: 90vw;
        min-width: 250px;
        height: 368px;
    }
    
    .actividad-image {
        border-radius: 12px;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Sección de Contacto */
.contacto-section {
    padding: 33px 0;
    position: relative;
    margin-top: 50px;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Área superior - Dinosaurio y Título */
.contacto-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}

/* Dinosaurio */
.dino-container {
    flex: 0 0 auto;
    margin-left: 110px;
    margin-top: -57px;
    z-index: 10;
}

.dino-image {
    width: 350px;
    height: auto;
}

/* Contenido principal - Solo el formulario */
.contacto-content {
    width: 100%;
    max-width: 900px;
    background: rgba(200, 210, 220, 0.8);
    border-radius: 30px;
    padding: 40px;
    z-index: 1;
    margin-top: -77px;
    display: flex;
    gap: 40px;
}

/* Título */
.contacto-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 55px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(180deg, #386ba4 0%, #56489a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-left: 50px;
    margin-top: -7px;
    flex: 1;
    z-index: 5;
}

/* Columna izquierda - Información de contacto */
.contacto-info {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-text {
    width: 100%;
}

.info-text h3 {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.info-text p {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 14px;
    font-weight: regular;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

.email-info {
    margin-top: 10px;
}

.email-text {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: #386ba4;
    text-decoration: underline;
}

.email-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.email-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.email-details {
    display: flex;
    flex-direction: column;
}

.email-label {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 14px;
    font-weight: semibold;
    color: #333;
    margin-bottom: 2px;
}

.email-address {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 12px;
    font-weight: regular;
    font-style: italic;
    color: #666;
}

/* Columna derecha - Formulario */
.contacto-form {
    flex: 1;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    width: 100%;
}

.form-row.full-width {
    flex-direction: column;
    gap: 0;
    margin-bottom: 25px;
}

.form-input,
.form-textarea {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    background: #fff;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 15px;
    font-weight: regular;
    color: #333;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 0;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 2px 10px rgba(56, 107, 164, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
    font-family: 'Barlow', Arial, sans-serif;
    font-weight: regular;
}

.form-textarea {
    width: 100%;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 5px;
}

.form-submit {
    background: #386ba4;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    display: block;
    margin: 15px auto 0;
    min-width: 180px;
}

.form-submit:hover {
    background: #56489a;
    transform: translateY(-2px);
}

/* Responsive Design para Contacto */
@media (max-width: 1200px) {
    .dino-container {
        margin-left: 85px;
        margin-top: -45px;
    }
    
    .dino-image {
        width: 300px;
    }
    
    .contacto-title {
        font-size: 48px;
        margin-left: 30px;
        margin-top: -5px;
    }
    
    .contacto-content {
        max-width: 800px;
        padding: 35px;
        margin-top: -64px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contacto-section {
        padding: 60px 20px;
    }
    
    .contacto-container {
        padding: 0 20px;
    }
    
    .contacto-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .dino-container {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .dino-image {
        width: 250px;
    }
    
    .contacto-title {
        font-size: 36px;
        margin-left: 0;
        text-align: center;
    }
    
    .contacto-content {
        max-width: 500px;
        padding: 30px 25px;
        margin-top: 0;
        flex-direction: column;
        gap: 25px;
    }
    
    .contacto-info {
        flex: none;
        gap: 20px;
    }
    
    .info-text h3 {
        font-size: 20px;
    }
    
    .info-text p {
        font-size: 13px;
    }
    
    .form-row {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .form-row.full-width {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contacto-section {
        padding: 30px 15px;
    }
    
    .contacto-container {
        padding: 0 15px;
    }
    
    .contacto-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    
    .dino-image {
        width: 200px;
    }
    
    .contacto-content {
        padding: 20px 15px;
        max-width: 95%;
        margin: 0 auto;
        margin-top: 0;
    }
    
    .info-text h3 {
        font-size: 18px;
    }
    
    .info-text p {
        font-size: 12px;
    }
    
    .email-text {
        font-size: 14px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
    }
    
    .form-submit {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}

/* Footer Styles */
.main-footer {
    background: #00336f;
    width: 100%;
    min-height: 450px;
    color: white;
    margin-top: -5px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0 30px 0;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-bottom: 0;
    width: 100%;
}

.footer-menus {
    display: flex;
    gap: 60px;
    width: 100%;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.footer-column h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-column p {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.8;
}

.footer-contacto p strong {
    font-weight: 700;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 0;
}

.footer-location p {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: white;
    margin: 0;
    font-weight: 400;
}

.footer-location p em {
    font-style: italic;
    font-weight: 300;
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: white;
    color: #00336f;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.social-link i {
    font-size: 24px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.social-link i {
    font-size: 20px;
}

.social-link.facebook {
    color: #1877f2;
}

.social-link.instagram {
    color: #E4405F;
}

.social-link.whatsapp {
    color: #25D366;
}

.social-link.tiktok {
    color: #000000;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .main-footer {
        height: 300px;
    }
    
    .footer-container {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        padding: 0 40px 25px 40px;
    }
    
    .footer-logo {
        align-items: flex-end;
        padding-bottom: 20px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-content {
        align-items: flex-end;
        gap: 15px;
        padding-bottom: 20px;
    }
    
    .footer-menu {
        align-items: flex-end;
        text-align: right;
        gap: 8px;
    }
    
    .footer-menu p {
        font-size: 14px;
    }
    
    .footer-menu p:hover {
        transform: translateX(-5px);
    }
    
    .footer-bottom {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .main-footer {
        min-height: 700px;
        padding: 40px 0 30px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-menus {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 30px;
        text-align: left;
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .footer-column p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-location {
        padding: 15px 0;
    }
    
    .footer-location p {
        font-size: 13px;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        min-height: 800px;
        padding: 30px 0 20px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-menus {
        grid-template-columns: 1fr 1fr;
        gap: 25px 20px;
    }
    
    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .footer-column p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .footer-location {
        padding: 10px 0;
    }
    
    .footer-location p {
        font-size: 12px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 10px;
    }
    
    .footer-bottom {
        justify-content: flex-end;
    }
    
    .footer-social {
        gap: 6px;
    }
    
    .social-link {
        width: 26px;
        height: 26px;
    }
    
    .social-link i {
        font-size: 11px;
    }
}

@media (max-width: 320px) {
    .main-footer {
        height: 200px;
    }
    
    .footer-container {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 8px;
        padding: 0 10px 10px 10px;
    }
    
    .footer-logo {
        align-items: flex-end;
        padding-bottom: 10px;
    }
    
    .footer-logo img {
        height: 25px;
    }
    
    .footer-content {
        align-items: flex-end;
        gap: 5px;
        padding-bottom: 10px;
    }
    
    .footer-menu {
        align-items: flex-end;
        text-align: right;
        gap: 2px;
    }
    
    .footer-menu p {
        font-size: 9px;
    }
    
    .footer-bottom {
        justify-content: flex-end;
    }
    
    .footer-social {
        gap: 5px;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
    }
    
    .social-link i {
        font-size: 9px;
    }
}

/* Barra de Contacto con Animación */
.barra-contacto {
    background-color: #222;
    color: white;
    font-size: 14px;
    padding: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

/* Contenedor de la animación */
.scrolling-text {
    display: flex;
    width: max-content;
    animation: scrollText 50s linear infinite;
}

/* Espaciado entre los elementos de cada bloque */
.text-content {
    display: flex;
    gap: 100px; /* Aumentamos la separación */
    padding-right: 100px; /* Espacio extra al final para evitar que se peguen */
}

/* Animación en bucle sin cortes */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .barra-contacto {
        font-size: 12px;
        padding: 4px 0;
    }

    .scrolling-text {
        animation: scrollText 25s linear infinite;
    }

    .text-content {
        gap: 80px; /* Un poco menos de espacio en móviles */
        padding-right: 80px;
    }
}
/* ========================================
   PÁGINA DE HOSPEDAJE
   ======================================== */

/* Banner Principal Hospedaje */
.hospedaje-banner {
    width: 100%;
    margin-top: 110px; /* Espacio para header fijo + cintillo */
    position: relative;
    overflow: hidden;
}

.hospedaje-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Banner con separación reducida */
.hospedaje-banner-reducido {
    width: 100%;
    margin-top: 2px; /* 20% de 110px */
    position: relative;
    overflow: hidden;
}

.hospedaje-banner-reducido .hospedaje-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Imágenes más pequeñas solo en PC */
@media (min-width: 769px) {
    .imagen-pequena-pc {
        width: 75%;
        margin: 0 auto;
        display: block;
    }
}

/* Sección Experiencias Seguras */
.experiencias-seguras-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.experiencias-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.experiencias-main-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 120px;
    font-weight: 800;
    text-align: center;
    color: #6db33f;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 60px 0;
    letter-spacing: 2px;
    white-space: nowrap;
}

.experiencias-main-title .experiencias-text {
    font-size: 85px;
    color: #6db33f;
}

.experiencias-main-title .seguras-text {
    display: inline;
    color: #6db33f;
}

.experiencias-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.experiencias-left {
    flex: 1.35;
    position: relative;
}

.rentables-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}

.rentables-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}

.rentables-overlay-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    width: 90%;
}

.experiencias-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

.experiencias-btn {
    width: 100%;
    padding: 30px 50px;
    background: linear-gradient(135deg, #6a9ac9 0%, #5a8ab9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(90, 140, 189, 0.35);
    text-align: center;
    line-height: 1.2;
}

.experiencias-btn.large {
    padding: 35px 50px;
    font-size: 34px;
    background: linear-gradient(135deg, #5a6f9f 0%, #4a5f8f 100%);
}

.experiencias-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 140, 189, 0.6);
    background: linear-gradient(135deg, #4a7aad 0%, #3a6a9d 100%);
}

.experiencias-btn.large:hover {
    background: linear-gradient(135deg, #3a4f7f 0%, #2a3f6f 100%);
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .experiencias-main-title {
        font-size: 70px;
        margin: 0 0 40px 0;
    }
    
    .experiencias-content {
        gap: 40px;
    }
    
    .rentables-overlay-title {
        font-size: 36px;
    }
    
    .experiencias-btn {
        font-size: 28px;
        padding: 20px 30px;
    }
    
    .experiencias-btn.large {
        font-size: 24px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .experiencias-seguras-section {
        padding: 40px 0;
    }
    
    .experiencias-container {
        padding: 0 20px;
    }
    
    .experiencias-main-title {
        font-size: 36px;
        margin: 0 0 30px 0;
        white-space: normal;
        text-align: center;
    }
    
    .experiencias-main-title .experiencias-text {
        font-size: 28px;
        display: block;
    }
    
    .experiencias-main-title .seguras-text {
        display: block;
        font-size: 36px;
    }
    
    .experiencias-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .rentables-overlay-title {
        font-size: 28px;
        bottom: 20px;
    }
    
    .experiencias-btn {
        font-size: 24px;
        padding: 20px 30px;
    }
    
    .experiencias-btn.large {
        font-size: 22px;
        padding: 25px 30px;
    }
}

/* Sección Por Qué Traer Grupos */
.porque-grupos-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.porque-grupos-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.porque-grupos-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    background: linear-gradient(180deg, #4a90d9 0%, #1e5a9e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    padding: 5px 0;
}

.porque-grupos-title.large {
    font-size: 90px;
    background: linear-gradient(180deg, #1e5a9e 0%, #6b4c9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 5px 0;
}

.porque-grupos-description {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #023675;
    line-height: 1.7;
    margin: 40px auto 0;
    max-width: 1200px;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .porque-grupos-title {
        font-size: 60px;
    }
    
    .porque-grupos-title.large {
        font-size: 75px;
    }
    
    .porque-grupos-description {
        font-size: 22px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .porque-grupos-section {
        padding: 40px 0;
    }
    
    .porque-grupos-container {
        padding: 0 20px;
    }
    
    .porque-grupos-title {
        font-size: 36px;
    }
    
    .porque-grupos-title.large {
        font-size: 48px;
    }
    
    .porque-grupos-description {
        font-size: 18px;
        margin: 30px auto 0;
    }
}

/* Sección Qué Ofrecemos */
.que-ofrecemos-section {
    width: 100%;
    padding: 60px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.que-ofrecemos-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.que-ofrecemos-header {
    text-align: center;
    margin-bottom: 40px;
}

.que-ofrecemos-badge {
    display: inline-block;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1e5a9e 0%, #6b4c9a 100%);
    padding: 16px 45px;
    border-radius: 50px;
    text-transform: uppercase;
    margin: 0;
    box-shadow: 0 8px 25px rgba(30, 90, 158, 0.3);
}

.servicios-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.servicio-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 15px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 380px;
    height: 100%;
    justify-content: space-between;
}

.servicio-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin-bottom: 0;
}

.servicio-btn {
    width: 90%;
    margin: 0 auto;
    padding: 15px 16px;
    border: none;
    border-radius: 16px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
    box-sizing: border-box;
}

.servicio-btn.red {
    background: linear-gradient(135deg, #b72323 0%, #79110f 100%);
}

.servicio-btn.blue {
    background: linear-gradient(135deg, #00183d 0%, #003180 100%);
}

.servicio-btn.green {
    background: linear-gradient(135deg, #326411 0%, #4bb126 100%);
}

.servicio-btn:hover {
    transform: translateY(-3px);
}

.servicio-btn.red:hover {
    background: linear-gradient(135deg, #8b2f2f 0%, #6b1f1f 100%);
}

.servicio-btn.blue:hover {
    background: linear-gradient(135deg, #123d6b 0%, #0a2544 100%);
}

.servicio-btn.green:hover {
    background: linear-gradient(135deg, #4a7a29 0%, #2f5219 100%);
}

/* Sección Qué Incluye */
.que-incluye-section {
    width: 100%;
    padding: 60px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.que-incluye-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.que-incluye-header {
    text-align: center;
    margin-bottom: 50px;
}

.que-incluye-badge {
    display: inline-block;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #1e5a9e 0%, #6b4c9a 100%);
    padding: 20px 60px;
    border-radius: 50px;
    text-transform: uppercase;
    margin: 0;
    box-shadow: 0 8px 25px rgba(30, 90, 158, 0.3);
}

.incluye-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.incluye-lista li {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #023675;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.incluye-lista li i {
    color: #6b4c9a;
    font-size: 16px;
}

.incluye-nota {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-style: italic;
    color: #023675;
    text-align: center;
    margin: 30px auto 0;
    max-width: 900px;
}

/* Responsive para tablets */
@media (max-width: 1024px) {

    .que-ofrecemos-badge,
    .que-incluye-badge {
        font-size: 36px;
        padding: 18px 50px;
    }

    .servicios-grid {
        gap: 30px;
    }

    .incluye-lista li {
        font-size: 22px;
    }

    .incluye-nota {
        font-size: 17px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {

    .que-ofrecemos-section,
    .que-incluye-section {
        padding: 40px 0;
    }

    .que-ofrecemos-container,
    .que-incluye-container {
        padding: 0 20px;
    }

    .que-ofrecemos-badge,
    .que-incluye-badge {
        font-size: 24px;
        padding: 15px 30px;
    }

    .servicios-grid {
        flex-direction: column;
        gap: 25px;
    }

    .servicio-card {
        max-width: 100%;
    }

    .servicio-btn {
        font-size: 26px;
        padding: 20px 25px;
        width: 100%;
    
        width: 100%;
        font-size: 26px;
        padding: 20px 25px;
        box-sizing: border-box;
    }

    .incluye-lista li {
        font-size: 18px;
    }

    .incluye-nota {
        font-size: 15px;
    }
}

/* Sección FAQ y Agencias Aliadas */
.faq-agencias-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.faq-agencias-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* FAQ Column */
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 78px;
    font-weight: 800;
    color: #023675;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-align: center;
}

.faq-item {
    margin-bottom: 28px;
    text-align: center;
}

.faq-question {
    font-family: 'Barlow', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #023675;
    margin: 0 0 8px 0;
}

.faq-answer {
    font-family: 'Barlow', sans-serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #313131;
    margin: 0;
}

/* Agencias Column */
.agencias-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agencias-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(180deg, #0e58ad 0%, #023675 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.agencias-title.large {
    font-size: 72px;
    margin-bottom: 40px;
}

.agencias-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

.agencia-logo {
    aspect-ratio: 1;
    background: #1e4a7a;
    border-radius: 15px;
}

.cotizar-grupo-btn {
    width: 100%;
    max-width: 400px;
    padding: 25px 50px;
    background: linear-gradient(135deg, #0e58ad 0%, #023675 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cotizar-grupo-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #023675 0%, #011d3d 100%);
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .faq-agencias-container {
        gap: 60px;
    }

    .faq-title {
        font-size: 42px;
    }

    .agencias-title {
        font-size: 50px;
    }

    .agencias-title.large {
        font-size: 60px;
    }

    .agencias-logos-grid {
        gap: 15px;
    }

    .cotizar-grupo-btn {
        font-size: 28px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .faq-agencias-section {
        padding: 40px 0;
    }

    .faq-agencias-container {
        gap: 50px;
        padding: 0 20px;
    }

    .faq-title {
        font-size: 32px;
        text-align: center;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 18px;
    }

    .agencias-title {
        font-size: 36px;
    }

    .agencias-title.large {
        font-size: 48px;
    }

    .agencias-logos-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .cotizar-grupo-btn {
        font-size: 24px;
        padding: 20px 40px;
    }
}

/* Secciones de Detalle Hospedaje */
.hospedaje-detail-section {
    width: 100%;
    padding: 80px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.hospedaje-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Invertir orden en secciones reverse */
.hospedaje-detail-section.reverse .hospedaje-detail-container {
    flex-direction: row-reverse;
}

.hospedaje-detail-text,
.hospedaje-detail-image {
    flex: 1;
}

/* Texto */
.hospedaje-detail-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hospedaje-detail-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(180deg, #0e58ad 0%, #023675 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.hospedaje-detail-description {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #023675;
    line-height: 1.7;
    margin: 0;
}

.hospedaje-detail-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hospedaje-detail-features li {
    font-family: 'Barlow', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #023675;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hospedaje-detail-features li i {
    color: #023675;
    font-size: 24px;
}

.hospedaje-detail-button {
    width: fit-content;
    padding: 18px 40px;
    background: linear-gradient(180deg, #0e58ad 0%, #023675 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 54, 117, 0.3);
    animation: subtle-pulse 2s ease-in-out infinite;
}

.hospedaje-detail-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(2, 54, 117, 0.4);
    background: linear-gradient(180deg, #023675 0%, #011d3d 100%);
    animation: none;
}

/* Imagen */
.hospedaje-detail-image {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
}

.hospedaje-detail-image .detail-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.hospedaje-detail-image:hover .detail-img {
    transform: scale(1.05);
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .hospedaje-detail-container {
        padding: 0 40px;
        gap: 50px;
    }

    .hospedaje-detail-title {
        font-size: 60px;
    }

    .hospedaje-detail-description {
        font-size: 22px;
    }

    .hospedaje-detail-features li {
        font-size: 20px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .hospedaje-banner {
        margin-top: 86px; /* Ajustar para header móvil */
    }
    
    /* Ajustar posición del botón en móviles */
    .hospedaje-banner .evento-boton-wrapper {
        bottom: 3px !important;
    }

    .hospedaje-detail-section {
        padding: 20px 0;
    }

    .hospedaje-detail-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 50px;
    }

    /* En móvil, mantener siempre el mismo orden: texto arriba, imagen abajo */
    .hospedaje-detail-section.reverse .hospedaje-detail-container {
        flex-direction: column;
    }

    .hospedaje-detail-title {
        font-size: 46px;
    }

    .hospedaje-detail-description {
        font-size: 20px;
    }

    .hospedaje-detail-features li {
        font-size: 19px;
    }

    .hospedaje-detail-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* Sección de Actividades Exclusivas */
.actividades-exclusivas-section {
    width: 100%;
    background: transparent;
    padding: 80px 0 0 0;
}

.actividades-text-container {
    text-align: center;
    padding: 0 20px 60px 20px;
}

.actividades-title {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 72px;
    font-weight: bold;
    background: linear-gradient(180deg, #4a90d9 0%, #1e5a9e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 0.9;
    margin: 0;
}

.actividades-title:nth-child(2) {
    font-size: 90px;
    background: linear-gradient(180deg, #1e5a9e 0%, #6b4c9a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.actividades-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 30px 0 0 0;
}

.actividades-banner {
    width: 100%;
}

.actividades-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .actividades-title {
        font-size: 60px;
    }

    .actividades-title:nth-child(2) {
        font-size: 75px;
    }

    .actividades-subtitle {
        font-size: 28px;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .actividades-exclusivas-section {
        padding: 50px 0 0 0;
    }

    .actividades-text-container {
        padding: 0 20px 40px 20px;
    }

    .actividades-title {
        font-size: 46px;
    }

    .actividades-title:nth-child(2) {
        font-size: 58px;
    }

    .actividades-subtitle {
        font-size: 22px;
        margin: 20px 0 0 0;
    }
}

/* Botón Jurásico */
.boton-jurasico-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background: transparent;
}

.boton-jurasico {
    display: inline-block;
    transition: transform 0.3s ease;
}

.boton-jurasico:hover {
    transform: scale(1.05);
}

.boton-jurasico-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive para el botón jurásico */
@media (max-width: 768px) {
    .boton-jurasico-img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .boton-jurasico-img {
        max-width: 200px;
    }
}

/* Sección Qué Vivirás */
.que-viviras-section {
    width: 100%;
    padding: 60px 20px;
    background: transparent;
}

.que-viviras-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.que-viviras-dino {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dino-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

.que-viviras-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
}

.que-viviras-titulo {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-left: auto;
}

.que-viviras-texto {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.que-viviras-texto p {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    text-align: right;
    font-weight: 600;
}

.que-viviras-texto p strong {
    font-weight: 700;
}

/* Responsive para Qué Vivirás */
@media (max-width: 1024px) {
    .que-viviras-container {
        gap: 30px;
    }

    .que-viviras-content {
        padding-left: 20px;
    }

    .que-viviras-texto p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .que-viviras-section {
        padding: 40px 20px;
    }

    .que-viviras-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .que-viviras-content {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .que-viviras-titulo {
        max-width: 400px;
        margin-left: 0;
    }

    .que-viviras-texto {
        gap: 15px;
    }

    .que-viviras-texto p {
        text-align: center;
        font-size: 16px;
    }

    .dino-img {
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .que-viviras-section {
        padding: 30px 15px;
    }

    .que-viviras-titulo {
        max-width: 300px;
    }

    .que-viviras-texto p {
        font-size: 14px;
    }

    .dino-img {
        max-width: 350px;
    }
}

/* Sección Por Qué No Puedes Perdértelo */
.no-puedes-perdertelo-section {
    width: 100%;
    padding: 60px 0 0 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.no-puedes-perdertelo-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.no-puedes-perdertelo-bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 1;
    line-height: 0;
}

.dinos-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    line-height: 0;
}

.no-puedes-perdertelo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 40px 20px 300px 20px;
}

.no-puedes-titulo {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
}

.no-puedes-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
}

.no-puedes-lista li {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-left: 0;
}

.no-puedes-lista li::before {
    content: '•';
    position: absolute;
    left: -25px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.no-puedes-lista li strong {
    font-weight: 700;
}

/* Responsive para No Puedes Perdértelo */
@media (max-width: 1024px) {
    .no-puedes-lista li {
        font-size: 18px;
    }

    .no-puedes-titulo {
        max-width: 600px;
    }

    .no-puedes-perdertelo-content {
        padding: 40px 20px 250px 20px;
    }
}

@media (max-width: 768px) {
    .no-puedes-perdertelo-section {
        padding: 40px 0 0 0;
    }

    .no-puedes-perdertelo-content {
        gap: 30px;
        padding: 30px 15px 200px 15px;
    }

    .no-puedes-titulo {
        max-width: 400px;
    }

    .no-puedes-lista {
        gap: 20px;
    }

    .no-puedes-lista li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .no-puedes-perdertelo-section {
        padding: 30px 0 0 0;
    }

    .no-puedes-perdertelo-content {
        padding: 20px 10px 150px 10px;
    }

    .no-puedes-titulo {
        max-width: 300px;
    }

    .no-puedes-lista li {
        font-size: 14px;
    }
}

/* ======================================== 
   PÁGINA DE SERVICIOS 
   ======================================== */

.servicios-section {
    padding: 140px 20px 60px;
    background: #f5f8fc;
}

.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
}

.servicios-header {
    text-align: left;
    margin-bottom: 20px;
}

.servicios-header h1 {
    color: #224c7b;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Barlow', sans-serif;
}

.servicios-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 16px;
}

.servicios-count {
    font-weight: 600;
    color: #224c7b;
}

.servicios-mapa {
    width: 100%;
    margin: 30px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.servicios-mapa .mapa-img {
    width: 100%;
    height: auto;
    display: block;
}

.servicios-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.servicio-card-servicios {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.servicio-card-servicios:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.servicio-icono {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-icono img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.servicio-info {
    flex: 1;
}

.servicio-info h3 {
    color: #224c7b;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    font-family: 'Barlow', sans-serif;
}

.servicio-info p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Barlow', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .servicios-section {
        padding: 100px 15px 40px;
    }
    
    .servicios-header h1 {
        font-size: 24px;
    }
    
    .servicios-grid-page {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .servicio-card-servicios {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .servicio-icono {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}


.servicios-info i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.servicios-info i:hover {
    color: #4378b5;
}

/* ========================================
   PÁGINA DE BOLETOS
   ======================================== */

.main-boletos {
    padding-top: 150px;
    /* Espacio para el header fijo */
    padding-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.formulario-compra {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contenedor-formulario {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contenedor-formulario h2 {
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 36px;
    color: #224c7b;
    text-align: center;
    margin-bottom: 30px;
}

.campo-doble {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.campo {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campo label {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.campo input[type="text"],
.campo input[type="email"],
.campo input[type="tel"],
.campo input[type="number"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.campo input:focus {
    outline: none;
    border-color: #4378b5;
    box-shadow: 0 0 0 3px rgba(67, 120, 181, 0.2);
}

.campo small {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.resumen-compra {
    background: linear-gradient(135deg, #f5f8fc 0%, #eef2f9 100%);
    border-radius: 15px;
    padding: 28px;
    margin: 30px 0;
    border: 2px solid #dfe9f5;
    box-shadow: 0 4px 15px rgba(34, 76, 123, 0.08);
}

.resumen-compra h2 {
    font-size: 26px;
    margin-bottom: 22px;
    color: #224c7b;
    border-bottom: 3px solid #667eea;
    padding-bottom: 12px;
    font-weight: 700;
}

.resumen-compra p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 14px;
    font-family: 'Barlow', sans-serif;
}

.resumen-compra p:last-child {
    margin-bottom: 0;
}

.resumen-compra p strong {
    font-weight: 600;
    color: #224c7b;
}

.resumen-compra p span {
    font-weight: 700;
    color: #224c7b;
    white-space: nowrap;
    margin-left: 0;
}

/* Estilo especial para el total */
.resumen-compra .resumen-total {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 18px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resumen-compra .resumen-total strong {
    color: white;
    font-size: 18px;
}

.resumen-compra .resumen-total span {
    color: white;
    font-size: 22px;
    font-weight: 800;
    margin-left: 0;
}

.terminos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.terminos label {
    font-size: 14px;
    color: #555;
}

.terminos a {
    color: #4378b5;
    text-decoration: none;
    font-weight: 600;
}

.terminos a:hover {
    text-decoration: underline;
}

.boton-comprar {
    background: linear-gradient(180deg, #ff7696 0%, #c93c57 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 35px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 60, 87, 0.3);
    width: 100%;
    display: block;
}

.boton-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 60, 87, 0.4);
}

/* Estilos para el Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* Oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
}

.modal-content h3 {
    font-family: 'Rumikon', sans-serif;
    color: #224c7b;
    font-size: 28px;
    margin-bottom: 15px;
}

.modal-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.boton-modal {
    padding: 12px 25px;
    border-radius: 25px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.boton-modal-primary {
    background: #4378b5;
    color: white;
}

.boton-modal-secondary {
    background: #ccc;
    color: #333;
}

/* ========== SECCIÓN DE PAGO MEJORADA ========== */

.card-payment-container {
    display: flex;
    gap: 40px;
    margin: 40px auto;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.card-form-section {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.card-form-section h3 {
    color: #224c7b;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    border-bottom: 2px solid #667eea;
    padding-bottom: 12px;
}

.card-form-section .campo {
    margin-bottom: 18px;
}

.card-form-section label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.card-form-section input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Courier New', monospace;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.card-form-section input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
    background-color: white;
}

.card-form-section input::-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: #333;
}

.card-form-section input::placeholder {
    color: #bbb;
}

.campo-doble {
    display: flex;
    gap: 15px;
}

.campo-doble .campo {
    flex: 1;
}

#card-errors {
    color: #d32f2f;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
}

/* ========== BOTÓN DE PAGO ========== */

.boton-comprar {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Rumikon', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    letter-spacing: 1px;
    margin-top: 20px;
}

.boton-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.boton-comprar:active {
    transform: translateY(-1px);
}

.boton-comprar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: #333;
}

#modalTitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #224c7b;
}

#modalMessage {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

#modalActions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.boton-modal {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boton-modal-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.boton-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.boton-modal-secondary {
    background: #e0e0e0;
    color: #333;
}

.boton-modal-secondary:hover {
    background: #d0d0d0;
}

/* Responsive para pago */
@media (max-width: 768px) {
    .main-boletos {
        padding-top: 120px;
    }
    
    .contenedor-formulario {
        padding: 25px;
    }
    
    .contenedor-formulario h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .card-payment-container {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    
    .card-form-section {
        padding: 20px;
    }
    
    .boton-comprar {
        font-size: 18px;
        padding: 16px 30px;
    }
    
    .modal-content {
        padding: 30px 25px;
        max-width: 90%;
    }
    
    #modalTitle {
        font-size: 20px;
    }
    
    #modalMessage {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-boletos {
        padding-top: 110px;
        padding-bottom: 40px;
    }
    
    .contenedor-formulario {
        padding: 20px;
        border-radius: 15px;
    }
    
    .contenedor-formulario h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .card-payment-container {
        padding: 15px;
    }
    
    .card-form-section {
        padding: 18px;
    }
    
    .card-form-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .campo-doble {
        flex-direction: column;
        gap: 0;
    }
    
    .boton-comprar {
        font-size: 16px;
        padding: 14px 24px;
    }
}

/* ========================================
   ESTILOS ESPECÍFICOS PARA ILUMIDINO
   ======================================== */

/* Banners de Ilumidino - Desktop igual, móvil más juntos */
.ilumidino-banner-principal {
    width: 100%;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.ilumidino-banner {
    width: 100%;
    margin-top: 2px;
    position: relative;
    overflow: hidden;
}

.ilumidino-boton {
    margin-top: 15px;
}

/* Responsive para Ilumidino - Reducir espaciado en móviles */
@media (max-width: 768px) {
    .ilumidino-banner-principal {
        margin-top: 86px;
    }

    .ilumidino-banner {
        margin-top: -15px;
    }

    .ilumidino-boton {
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .ilumidino-banner {
        margin-top: -20px;
    }

    .ilumidino-boton {
        margin-top: -5px;
    }
}

/* ========== ESTILOS ESPECÍFICOS PARA PÁGINA TESORO ========== */

/* Reducir espaciado entre banners en móviles */
@media (max-width: 768px) {
    .tesoro-banner {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .tesoro-banner {
        margin-top: 8px;
    }
}

/* ========== CAMPAMENTOS EMPRESARIALES - SIN ZOOM ========== */
.hospedaje-detail-section.no-zoom .hospedaje-detail-image:hover .detail-img {
    transform: none;
}

/* ========== BANNERS CERCANOS - ESPACIO REDUCIDO ========== */
.hospedaje-banner-compact {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.hospedaje-banner-compact .hospedaje-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reducir espacio entre banners compact */
.hospedaje-banner-compact + .hospedaje-banner-compact {
    margin-top: -60px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .hospedaje-banner-compact + .hospedaje-banner-compact {
        margin-top: -80px;
    }
}

/* ========== BOTONES HOSPEDAJE - ESQUINAS MENOS REDONDEADAS ========== */
.hospedaje-detail-button-sharp {
    border-radius: 8px;
}

/* ========== CAMPAMENTOS - IMÁGENES ENCIMADAS EN MÓVILES ========== */
.hospedaje-detail-section.compact-images .hospedaje-detail-image {
    margin-top: -40px;
}

.hospedaje-detail-section.compact-images .hospedaje-detail-image:first-child {
    margin-top: 0;
}

/* ========== RESTAURANTES - BOTONES AUMENTADOS EN MÓVILES ========== */
.evento-boton-wrapper-large .evento-boton-img {
    width: 110% !important;
}

@media (max-width: 768px) {
    .evento-boton-wrapper-large .evento-boton-img {
        width: 110% !important;
    }
}

/* ========== RESTAURANTES - SECCIONES CON GAP REDUCIDO EN MÓVILES ========== */
.hospedaje-detail-section.restaurantes-compact .hospedaje-detail-container {
    gap: 20px;
}

@media (max-width: 768px) {
    .hospedaje-detail-section.restaurantes-compact .hospedaje-detail-container {
        gap: 15px;
    }
}

/* ========== RESTAURANTES - BANNERS CERCANOS ========== */
.hospedaje-banner-restaurantes-compact {
    margin: 0;
}

.hospedaje-banner-restaurantes-compact + .hospedaje-banner-restaurantes-compact {
    margin-top: -30px;
}

@media (max-width: 768px) {
    .hospedaje-banner-restaurantes-compact + .hospedaje-banner-restaurantes-compact {
        margin-top: -50px;
    }
}

/* ========== CAMPAMENTOS ESCOLARES - BANNERS SEPARADOS ========== */
.hospedaje-banner-escolares {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

.hospedaje-banner-escolares .hospedaje-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Agregar espacio entre banners escolares */
.hospedaje-banner-escolares + .hospedaje-banner-escolares {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .hospedaje-banner-escolares + .hospedaje-banner-escolares {
        margin-top: 30px;
    }
}

/* ========== CAMPAMENTOS ESCOLARES - SECCIONES COMPACTAS ========== */
.hospedaje-detail-section.escolares-compact {
    width: 100%;
    padding: 80px 0;
    background: transparent;
    scroll-margin-top: 120px;
}

.hospedaje-detail-section.escolares-compact .hospedaje-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .hospedaje-detail-section.escolares-compact {
        padding: 15px 0;
    }

    .hospedaje-detail-section.escolares-compact .hospedaje-detail-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
}