/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Belleza&display=swap');

/* Fuente personalizada Above the Beyond Script */
@font-face {
    font-family: 'Above the Beyond Script';
    src: url('fuentes/DEMO-atbscript-rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Belleza', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: #0a0a0a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-top {
    background: #0a0a0a;
    color: #fff;
    padding: 15px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mobile-menu-overlay.active {
    display: none !important;
}

/* Asegurar que el menú esté por encima del overlay y sea clickeable */
@media (max-width: 768px) {
    /* Overlay deshabilitado */
    .mobile-menu-overlay.active {
        display: none !important;
    }
    
    .top-nav {
        z-index: 10002 !important;
    }
    
    .top-nav.active {
        pointer-events: auto !important;
        z-index: 10002 !important;
    }
    
    .top-nav.active * {
        pointer-events: auto !important;
    }
    
    /* Asegurar que todos los enlaces sean clickeables */
    .top-nav.active a {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10003 !important;
        position: relative;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(173, 11, 13, 0.3) !important;
    }
    
    .top-nav.active .dropdown-menu {
        pointer-events: auto !important;
        z-index: 10004 !important;
    }
    
    .top-nav.active .dropdown-menu a {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10005 !important;
        position: relative;
        touch-action: manipulation !important;
    }
    
    .top-nav.active .btn-reservas {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10003 !important;
        position: relative;
        touch-action: manipulation !important;
    }
    
    .top-nav.active li {
        pointer-events: auto !important;
    }
    
    .top-nav.active ul {
        pointer-events: auto !important;
    }
}

/* Mobile Menu Container */
.mobile-menu {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 90%;
    width: 320px;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar styling for mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #ad0b0d;
    border-radius: 10px;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: scale(1);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 25px 20px 25px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 20px 20px 0 0;
}

.mobile-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    line-height: 1;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    color: #ad0b0d;
    background: #f8f9fa;
}

/* Mobile Navigation */
.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.mobile-nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 15px 25px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Belleza', serif;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: #ad0b0d;
    background: #f8f9fa;
    padding-left: 30px;
}

.mobile-btn-reservas {
    background: #ad0b0d;
    color: white !important;
    text-decoration: none;
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 15px 25px 25px 25px;
    transition: all 0.3s ease;
    font-family: 'Belleza', serif;
    border-bottom: none !important;
}

.mobile-btn-reservas:hover,
.mobile-btn-reservas:active {
    background: #8a090b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 11, 13, 0.3);
    padding-left: 20px;
}

.top-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Belleza', serif;
    font-weight: 400;
    transition: color 0.3s;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.top-nav a:hover {
    color: #e74c3c;
}

/* Estilos para página activa */
.top-nav a.active {
    background: #ad0b0d;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-nav a.active:hover {
    background: #8a090b;
    color: #fff !important;
}

/* ========================================
   DROPDOWN MENU MEJORADO - DESTINOS
   ======================================== */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
    color: #e74c3c;
}

.dropdown:hover .dropdown-toggle,
.dropdown.active .dropdown-toggle {
    color: #e74c3c;
}

/* Menú desplegable estético */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 320px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    margin: 0;
    padding: 20px 0;
    border: 1px solid rgba(173, 11, 13, 0.1);
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

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

/* Elementos del menú como tarjetas */
.dropdown-menu a {
    display: block;
    padding: 18px 25px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    text-transform: none;
    letter-spacing: normal;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #ad0b0d, #e74c3c);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(173, 11, 13, 0.05), rgba(231, 76, 60, 0.05));
    color: #ad0b0d;
    padding-left: 30px;
    transform: translateX(5px);
}

.dropdown-menu a::after {
    display: none;
}

/* Iconos para cada destino */
.dropdown-menu a[href*="unique-mine"]::before {
    background: linear-gradient(135deg, #ad0b0d, #e74c3c);
}

.dropdown-menu a[href*="camino-real"]::before {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.dropdown-menu a[href*="rincon-del-dorado"]::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}


/* Información adicional en hover */
.dropdown-menu a .hotel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-menu a .hotel-name {
    font-weight: 600;
    font-size: 1rem;
}

.dropdown-menu a .hotel-location {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.dropdown-menu a:hover .hotel-location {
    color: #ad0b0d;
}

/* Efecto de brillo en hover */
.dropdown-menu a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.dropdown-menu a:hover::after {
    left: 100%;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 280px;
        left: 0;
        transform: translateX(0) translateY(-20px) scale(0.95);
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        transform: translateX(0) translateY(0) scale(1);
    }
    
    .dropdown-menu::before {
        left: 20px;
        transform: none;
    }
    
    .dropdown-menu a {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 250px;
        padding: 15px 0;
    }
    
    .dropdown-menu a {
        padding: 12px 18px;
        gap: 12px;
    }
    
}

.btn-reservas {
    background: #ad0b0d !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    transition: background 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.btn-reservas:hover {
    background: #8a090b !important;
    color: #fff !important;
}

.btn-reservas:active {
    background: #7a080a !important;
    transform: translateY(1px);
}

.btn-mis-reservas {
    background: #28a745 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    transition: background 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.btn-mis-reservas:hover {
    background: #218838 !important;
    color: #fff !important;
}

.btn-mis-reservas:active {
    background: #1e7e34 !important;
    transform: translateY(1px);
}

/* Asegurar que el botón de reservas sea clickeable */
.top-nav .btn-reservas {
    position: relative !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}

.btn-mis-reservas {
    background: #28a745 !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    transition: background 0.3s !important;
}

.btn-mis-reservas:hover {
    background: #218838 !important;
    color: #fff !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    max-width: 100%;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    max-width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 8s ease-in-out infinite;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    display: block;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        margin-top: 90px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        background: #000;
    }

    .hero-background {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: #000;
        padding: 12px 10px;
    }

    .hero-image {
        width: 90%;
        height: auto;
        max-width: 90%;
        max-height: none;
        object-fit: contain;
        object-position: center top;
        background: #000;
        animation: none;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: auto;
        margin-top: 80px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        background: #000;
    }

    .hero-background {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: #000;
        padding: 12px 8px;
    }

    .hero-image {
        width: 88%;
        height: auto;
        max-width: 88%;
        max-height: none;
        object-fit: contain;
        object-position: center top;
        background: #000;
        animation: none;
    }
}


/* Colabora Hero Section with Cards */
.colabora-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

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

.colabora-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.colabora-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 8s ease-in-out infinite;
    transform: scale(1.1);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    min-width: 100%;
    min-height: 100%;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes videoZoomIn {
    0% {
        transform: scale(1.05);
    }
    25% {
        transform: scale(1.08);
    }
    50% {
        transform: scale(1.06);
    }
    75% {
        transform: scale(1.09);
    }
    100% {
        transform: scale(1.05);
    }
}

.colabora-main-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 100px 60px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.colabora-text-section {
    flex: 1;
    max-width: 600px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.colabora-text-content {
    animation: slideInLeft 1s ease-out;
}

.colabora-subtitle,
.colabora-title,
.colabora-description,
.btn-colabora-hero {
    transition: opacity 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.colabora-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    opacity: 0.9;
    font-family: 'Belleza', serif;
}

.colabora-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.9;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-family: 'Belleza', serif;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.colabora-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 500px;
    font-family: 'Belleza', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.btn-colabora-hero {
    background: #ad0b0d;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Belleza', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(173, 11, 13, 0.4);
}

.btn-colabora-hero:hover {
    background: #8a090b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(173, 11, 13, 0.6);
}

/* Cards Container */
.colabora-cards-container {
    position: relative;
    width: 1200px;
    height: 300px;
    margin-left: 80px;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: visible;
}

.colabora-card {
    position: relative;
    width: 220px;
    height: 280px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.6, 1), opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    transform-origin: center;
    z-index: 1;
    flex-shrink: 0;
}

.colabora-card:nth-child(1) {
    z-index: 5;
    transform: scale(1) translateX(0);
    opacity: 1;
}

.colabora-card:nth-child(2) {
    z-index: 4;
    transform: scale(0.98) translateX(0);
    opacity: 0.8;
}

.colabora-card:nth-child(3) {
    z-index: 3;
    transform: scale(0.95) translateX(0);
    opacity: 0.6;
}

.colabora-card:nth-child(4) {
    z-index: 2;
    transform: scale(0.9) translateX(0);
    opacity: 0.6;
}

.colabora-card:nth-child(5) {
    z-index: 1;
    transform: scale(0.85) translateX(0);
    opacity: 0.5;
}

/* Asegurar que todas las tarjetas sean visibles */
.colabora-card {
    display: block !important;
    visibility: visible !important;
}

.colabora-card.active {
    z-index: 10;
    transform: scale(1.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.colabora-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.card-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.colabora-card:hover .card-image img {
    transform: scale(1.1);
}

/* Card content removed - cards now only show images */

/* Card Opening Animation - Ultra suave */
@keyframes cardOpen {
    0% {
        transform: scale(0.88);
        opacity: 0.05;
    }
    20% {
        transform: scale(0.92);
        opacity: 0.2;
    }
    40% {
        transform: scale(0.96);
        opacity: 0.4;
    }
    60% {
        transform: scale(0.99);
        opacity: 0.7;
    }
    80% {
        transform: scale(1.03);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes cardClose {
    0% {
        transform: scale(1.08);
        opacity: 1;
    }
    20% {
        transform: scale(1.03);
        opacity: 0.9;
    }
    40% {
        transform: scale(0.99);
        opacity: 0.7;
    }
    60% {
        transform: scale(0.96);
        opacity: 0.4;
    }
    80% {
        transform: scale(0.92);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.88);
        opacity: 0.05;
    }
}

/* Animación de desvanecimiento y desplazamiento hacia la izquierda */
@keyframes slideOutLeft {
    0% {
        opacity: 0.8;
        transform: scale(0.98) translateX(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateX(-100px);
    }
}

/* Animación para que las tarjetas se desplacen hacia la izquierda ocupando el espacio */
@keyframes slideToLeft {
    0% {
        transform: scale(0.98) translateX(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(0.92) translateX(-80px);
        opacity: 0.6;
    }
}

/* Animación para la tarjeta activa que viene desde la derecha */
@keyframes slideInFromRight {
    0% {
        transform: scale(0.85) translateX(120px);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.08) translateX(0);
        opacity: 1;
    }
}

.colabora-card.opening {
    animation: cardOpen 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.colabora-card.closing {
    animation: cardClose 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.colabora-card.fading-out {
    animation: fadeOutPrevious 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.colabora-card.sliding-out-left {
    animation: slideOutLeft 0.3s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.colabora-card.sliding-to-left {
    animation: slideToLeft 0.4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.colabora-card.sliding-in-from-right {
    animation: slideInFromRight 0.5s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}


/* Formulario de Colaboración */
.colaboracion-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.colaboracion-quote {
    text-align: center;
    margin-bottom: 50px;
}

.colaboracion-layout {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.colaboracion-form-container {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.beneficios-aliados-container {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.beneficios-aliados-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.beneficios-aliados-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    justify-content: space-between;
}

.beneficio-aliado-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.beneficio-aliado-card:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #8a090b;
}

.beneficio-aliado-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a090b, #ad0b0d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.beneficio-aliado-card:hover .beneficio-aliado-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(138, 9, 11, 0.3);
}

.beneficio-aliado-icon i {
    font-size: 1.5rem;
    color: white;
}

.beneficio-aliado-content {
    flex: 1;
}

.beneficio-aliado-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beneficio-aliado-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.quote-text {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    color: #8a090b;
    margin: 0;
    line-height: 1.2;
}

.colaboracion-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 35px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.colaboracion-form {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.colaboracion-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.colaboracion-form .form-group {
    flex: 1;
}

.colaboracion-form .form-group.half {
    flex: 1;
}

.colaboracion-form .form-group.full {
    width: 100%;
}

.colaboracion-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.colaboracion-form input,
.colaboracion-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.colaboracion-form input:focus,
.colaboracion-form textarea:focus {
    outline: none;
    border-color: #8a090b;
    background: white;
    box-shadow: 0 0 0 3px rgba(138, 9, 11, 0.1);
}

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

.btn-colaboracion {
    background: #8a090b;
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 35px auto 0;
    display: block;
}

.btn-colaboracion:hover {
    background: #6d0709;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 9, 11, 0.3);
}

.btn-colaboracion:active {
    transform: translateY(0);
}

.colaboracion-form .form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
}

.colaboracion-form .form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.colaboracion-form .form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive para el formulario de colaboración */
@media (max-width: 1024px) {
    .colaboracion-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .colaboracion-form-container,
    .beneficios-aliados-container {
        flex: none;
    }
    
    .quote-text {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .colaboracion-form-section {
        padding: 60px 0;
    }
    
    .colaboracion-quote {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .colaboracion-layout {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .colaboracion-form-container,
    .beneficios-aliados-container {
        flex: none;
        padding: 35px 25px;
    }
    
    .quote-text {
        font-size: 2.8rem;
    }
    
    .colaboracion-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .beneficios-aliados-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .colaboracion-form .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 20px;
    }
    
    .colaboracion-form .form-group {
        margin-bottom: 18px;
    }
    
    .btn-colaboracion {
        width: 100%;
        padding: 14px;
        margin-top: 30px;
    }
    
    .beneficio-aliado-card {
        padding: 20px;
        gap: 15px;
    }
    
    .beneficio-aliado-icon {
        width: 50px;
        height: 50px;
    }
    
    .beneficio-aliado-icon i {
        font-size: 1.3rem;
    }
    
    .beneficio-aliado-content h3 {
        font-size: 1rem;
    }
    
    .beneficio-aliado-content p {
        font-size: 0.85rem;
    }
}


/* Trabaja con Nosotros Section */
.trabaja-section {
    position: relative;
    margin: 0;
    padding: 0;
}

.trabaja-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.trabaja-background {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 1;
    overflow: hidden;
}

.trabaja-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.2);
}

.trabaja-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.trabaja-content {
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 40px;
}

.trabaja-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.trabaja-description-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.trabaja-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.trabaja-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.trabaja-form-container .aplicacion-form-container {
    background: none;
    padding: 0;
    box-shadow: none;
    margin: 0;
}

.trabaja-form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}


/* Responsive para Trabaja con Nosotros */
@media (max-width: 1024px) {
    .trabaja-bg-image {
        transform: scale(1.15);
    }
    
    .trabaja-overlay {
        padding-top: 60px;
    }
    
    .trabaja-title {
        font-size: 3rem;
    }
    
    .trabaja-description-box {
        padding: 25px 30px;
        max-width: 900px;
    }
    
    .trabaja-form-container {
        padding: 35px 30px;
        margin-top: -70px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .trabaja-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .trabaja-bg-image {
        transform: scale(1.1);
    }
    
    .trabaja-overlay {
        padding-top: 40px;
    }
    
    .trabaja-content {
        padding: 0 20px;
    }
    
    .trabaja-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .trabaja-description-box {
        padding: 20px 25px;
        max-width: 100%;
    }
    
    .trabaja-description {
        font-size: 1rem;
    }
    
    .trabaja-form-container {
        padding: 30px 25px;
        margin-top: -60px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .trabaja-form-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
}

/* Colabora Controls */
.colabora-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.colabora-prev,
.colabora-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.colabora-prev:hover,
.colabora-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Colabora Indicators */
.colabora-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.colabora-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.colabora-indicator.active {
    background: #ad0b0d;
    transform: scale(1.2);
    border-color: white;
}

.colabora-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.services-header h2 {
    font-size: 2rem;
    color: #ad0b0d;
    font-weight: 600;
    font-family: 'Belleza', serif;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 0px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

/* Flip Card Styles */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 550px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Para dispositivos táctiles, el flip se activa con tap */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #fff;
    padding: 70px 30px 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: #ad0b0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    top: -20px;
    box-shadow: 0 8px 25px rgba(173, 11, 13, 0.3);
}

.service-icon:hover {
    background: #8a090b;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
}

.flip-card-front h3, .flip-card-back h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Belleza', serif;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.flip-card-front p, .flip-card-back p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Belleza', serif;
    text-align: justify;
    width: 100%;
}

.flip-card-front p:first-of-type, .flip-card-back p:first-of-type {
    font-weight: 500;
    color: #ad0b0d;
    font-size: 1.1rem;
    font-family: 'Belleza', serif;
    text-align: center;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
    background: #fff;
    margin-top: -80px;
}

.destinations-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.destinations-header h2 {
    font-size: 1.5rem;
    color: #ad0b0d;
    font-weight: 600;
    font-family: 'Belleza', serif;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.highlight {
    color: #ad0b0d;
    font-weight: 600;
    font-size: 1.5rem;
}

.destinations-header h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Belleza', serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    hyphens: auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    justify-items: center;
}

.destination-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-content h4 {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 5px;
}

.destination-content h5 {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 10px;
}

.destination-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.destination-content .address {
    color: #ad0b0d;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-family: 'Belleza', serif;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.btn-reserve-destination {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-family: 'Belleza', serif;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-reserve-destination:hover {
    background: #c0392b;
    color: #fff;
    text-decoration: none;
}

/* Asegurar que los enlaces se vean como botones */
a.btn-reserve-destination {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

/* Social Media & Contact Banner */
.social-contact-banner {
    background: #ad0b0d;
    padding: 40px 0;
    color: white;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.banner-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-banner-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.company-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Belleza', serif;
}

.company-info p {
    font-size: 1rem;
    margin: 5px 0 0 0;
    opacity: 0.9;
    font-family: 'Belleza', serif;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 280px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(173, 11, 13, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(173, 11, 13, 0.5);
}

.social-icon * {
    color: white !important;
}

.social-icon i {
    color: white !important;
    font-size: 1.5rem !important;
    display: block !important;
    line-height: 1 !important;
}

.social-icon:hover {
    background: rgba(173, 11, 13, 0.5);
    transform: translateY(-2px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
    color: white !important;
    border-color: rgba(173, 11, 13, 0.7);
}

.social-icon:hover i {
    color: white !important;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: white;
    font-family: 'Belleza', serif;
    font-size: 1.2rem;
}

.phone-info i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.banner-right {
    flex: 1;
    max-width: 400px;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-header i {
    font-size: 1.5rem;
}

.contact-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Belleza', serif;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info > div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-family: 'Belleza', serif;
}

.contact-info i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.phone-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.separator {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #ad0b0d;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Belleza', serif;
    box-shadow: 0 8px 25px rgba(173, 11, 13, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(173, 11, 13, 0.6);
    background: #8a090b;
    color: white;
}

.floating-whatsapp i {
    font-size: 1.8rem;
}

.whatsapp-text {
    white-space: nowrap;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-family: 'Belleza', serif;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #3498db;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    transition: background 0.3s;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #2980b9;
}

.scroll-to-top.show {
    display: flex;
}

/* ========================================
   BLOG PAGE STYLES
======================================== */

/* Blog Hero Section */
.blog-hero {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.blog-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.typewriter-container {
    position: relative;
    display: inline-block;
    max-width: 1366px;
    width: 100%;
}

.typewriter-image {
    width: 100%;
    max-width: 1366px;
    height: 649.3px;
    object-fit: cover;
    object-position: bottom center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.typewriter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.typewriter-text p {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 1px;
}

/* Blog Content Section */
.blog-content {
    padding: 80px 0;
    background: white;
}

.blog-row {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.blog-large-card {
    position: relative;
    height: 435.4px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-large-card:hover {
    transform: translateY(-5px);
}

.blog-large-card .blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-large-card .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-large-card .blog-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, rgba(173, 11, 13, 0.8) 0%, rgba(173, 11, 13, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 2;
    padding: 20px;
}

.blog-card-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

/* Blog Cards Container */
.blog-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 435.4px;
    align-items: stretch;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-header {
    padding: 0 0 15px 0;
    order: 1;
}

.blog-article-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.blog-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    order: 2;
    margin-bottom: 15px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 0;
    order: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-article-description {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Inter', sans-serif;
    flex: 1;
}

.blog-read-more {
    color: #ad0b0d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    align-self: flex-end;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #8a090b;
}

/* Blog CTA Section */
.blog-cta {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.btn-blog-cta {
    background: #ad0b0d;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.btn-blog-cta:hover {
    background: #8a090b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 11, 13, 0.3);
}

/* Responsive Design for Blog */
@media (max-width: 1200px) {
    .blog-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        height: 435.4px;
    }
}

@media (max-width: 1024px) {
    .blog-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        height: 350px;
    }
    
    .blog-card-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1400px) {
    .typewriter-image {
        width: 100%;
        height: 649.3px;
        object-position: bottom center;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 60px 0;
    }
    
    .typewriter-text p {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .typewriter-image {
        width: 100%;
        height: 400px;
        object-position: bottom center;
    }
    
    .blog-content {
        padding: 60px 0;
    }
    
    .blog-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-large-card {
        display: none;
    }
    
    .blog-cards-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 12px 20px;
        margin: 0;
        height: auto;
        -webkit-overflow-scrolling: touch;
        scroll-padding: 0 12px;
    }
    
    .blog-cards-container::-webkit-scrollbar {
        display: none;
    }
    
    .blog-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }
    
    .blog-card-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .typewriter-text p {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .blog-cards-container {
        padding: 0 10px 18px;
        gap: 12px;
        scroll-padding: 0 10px;
    }
    
    .blog-card {
        flex: 0 0 100%;
    }
    
    .blog-card-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   ARTICLE PAGE STYLES
======================================== */

/* Article Navigation */
.article-nav {
    background: white;
    padding: 35px 0 25px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    justify-content: flex-start;
}

.nav-row {
    display: flex;
    justify-content: flex-start;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #ad0b0d;
}

.nav-link[href="reservas.html"] {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 10 !important;
}

.next-article-link {
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.next-article-link:hover {
    color: #ad0b0d !important;
}

.article-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.article-logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.article-logo-text {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.next-article {
    text-align: right;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.next-article-link {
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.next-article-link:hover {
    color: #ad0b0d;
}

.next-article-title {
    font-size: 1rem;
    color: #333;
    margin-top: 5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: white;
}

.article-hero-image {
    margin-bottom: 30px;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-category {
    text-align: center;
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #333;
    background: white;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-image-left {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.article-img,
.article-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 20px auto;
}

.inline-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================================
   SIMPLE GALLERY STYLES
======================================== */


/* Gallery Content */
.gallery-content {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Hotel Filter Menu */
.hotel-filter-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hotel-filter-btn {
    background: white;
    border: 1px solid #000;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #000;
    font-family: 'Inter', sans-serif;
    border-radius: 0;
    margin: 0 5px;
    min-width: 140px;
    text-align: center;
}

.hotel-filter-btn:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #333;
}


.hotel-filter-btn.active {
    background: #000;
    color: white;
    border-color: #000;
}


/* Gallery Hero Section */
.gallery-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('IMAGENES/galeria.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
    animation: zoomIn 8s ease-in-out infinite;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.gallery-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.gallery-title {
    font-family: 'Belleza', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ========================================
   HOTEL PAGES STYLES
======================================== */

/* Hotel Hero Section */
.hotel-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hotel-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.8s ease-in-out;
    min-width: 100%;
    min-height: 100%;
    background: #000;
}

/* Asegurar que el video se reproduzca correctamente */
.hotel-hero-video::-webkit-media-controls {
    display: none !important;
}

.hotel-hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hotel-hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hotel-hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hotel-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomIn 8s ease-in-out infinite;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    min-width: 100%;
    min-height: 100%;
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.hotel-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hotel-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hotel-address {
    font-size: 1.2rem;
    margin: 0 0 40px 0;
    opacity: 0.9;
    font-weight: 300;
}

.booking-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
}

.booking-field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.booking-input {
    background: white;
    border: none;
    border-radius: 25px;
    padding: 15px 50px 15px 20px;
    font-size: 1rem;
    color: #333;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.booking-input:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Estilos para selectores de huéspedes */
.booking-field select.booking-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.booking-field select.booking-input::-ms-expand {
    display: none;
}

.booking-label {
    position: absolute;
    top: -18px;
    left: 20px;
    background: transparent;
    padding: 0;
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.booking-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1rem;
}

.btn-reserva {
    background: #ad0b0d;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(173, 11, 13, 0.3);
}

.btn-reserva:hover {
    background: #8a090b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 11, 13, 0.4);
}

@media (max-width: 768px) {
    .hotel-hero {
        position: relative;
        padding-top: 70px;
        padding-bottom: 180px;
        overflow: visible;
    }

    .hotel-hero-background {
        position: relative;
        height: 45vh;
    }

    .hotel-hero-video,
    .hotel-hero-image {
        height: 45vh;
        object-position: center top;
    }

    .hotel-hero-overlay {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 45vh;
    }

    .hotel-hero-content {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 45vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        color: #fff;
        z-index: 4;
    }

    .hotel-title {
        font-size: 2.1rem;
        letter-spacing: 1px;
        color: #fff;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
        margin-bottom: 8px;
    }

    .hotel-address {
        font-size: 0.95rem;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    .video-progress {
        top: calc(70px + 45vh - 30px);
        bottom: auto;
    }

    .booking-form {
        position: absolute;
        top: calc(70px + 45vh + 25px);
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        max-width: 360px;
        background: white;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        z-index: 5;
    }

    .booking-field {
        width: 100%;
    }

    .booking-input {
        min-width: unset;
        width: 100%;
        padding: 14px 40px 14px 18px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .booking-label {
        left: 18px;
        font-size: 0.75rem;
        color: #666;
    }

    .btn-reserva {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(173, 11, 13, 0.3);
        width: 100%;
        max-width: none;
        margin-top: 5px;
    }

    .hotel-content {
        margin-top: 120px;
        padding-top: 20px;
    }
}

/* Estilos para el selector de huéspedes */
.guests-field {
    position: relative;
}

.guests-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 25px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.guests-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.guests-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.guests-item:last-child {
    border-bottom: none;
}

.guests-label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.guests-subtitle {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

.guests-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guests-btn-minus,
.guests-btn-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.guests-btn-minus:hover,
.guests-btn-plus:hover {
    border-color: #ad0b0d;
    background: #ad0b0d;
    color: white;
}

.guests-btn-minus:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guests-count {
    min-width: 30px;
    text-align: center;
    background: #ad0b0d;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    position: relative;
}

.progress-fill {
    width: 30%;
    height: 100%;
    background: white;
    border-radius: 1px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

/* Hotel Content Section */
.hotel-content {
    padding: 40px 0 80px 0;
    background: #f8f9fa;
}

.hotel-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hotel-features {
    background: white;
    padding: 20px 40px 40px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: transparent;
    transform: translateX(3px);
}

.feature-icon {
    color: #ad0b0d;
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    color: #333;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-container .map-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 20px;
}

.map-container .map-error i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ad0b0d;
}

.hotel-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.gallery-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-image img {
    width: 500px;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

/* Hotel Cards Section */
.hotel-cards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.hotel-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hotel-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hotel-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.hotel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.hotel-card:hover .hotel-card-image img {
    transform: scale(1.05);
}

.hotel-card-content {
    padding: 20px;
    text-align: center;
}

.hotel-card-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hotel-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hotel-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.hotel-card-button {
    display: inline-block;
    background: #ad0b0d;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hotel-card-button:hover {
    background: #8a090b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(173, 11, 13, 0.3);
}

/* Bottom Booking Section */
.bottom-booking {
    position: relative;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-booking-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bottom-booking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
}

.bottom-booking-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    background: #000;
}

/* Asegurar que el video se reproduzca correctamente */
.bottom-booking-video::-webkit-media-controls {
    display: none !important;
}

.bottom-booking-video::-webkit-media-controls-panel {
    display: none !important;
}

.bottom-booking-video::-webkit-media-controls-play-button {
    display: none !important;
}

.bottom-booking-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.bottom-booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.bottom-booking-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

/* Responsive Design for Hotel Pages */
@media (max-width: 1200px) {
    .hotel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-list {
        gap: 6px;
    }
    
    .hotel-gallery {
        max-width: 100%;
    }
    
    .gallery-image img {
        width: 100%;
        height: 250px;
    }
    
    .hotel-cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hotel-card-content {
        padding: 25px;
    }
    
    .hotel-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hotel-title {
        font-size: 2.5rem;
    }
    
    .hotel-address {
        font-size: 0.95rem;
    }
    
    .booking-form {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .booking-input {
        min-width: 100%;
    }
    
    .hotel-content {
        padding: 30px 0 60px 0;
        margin-top: 120px;
    }
    
    .hotel-features {
        padding: 15px 20px 30px 20px;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hotel-hero {
        padding-bottom: 200px;
    }

    .hotel-hero-background {
        height: 40vh;
    }

    .hotel-hero-video,
    .hotel-hero-image {
        height: 40vh;
    }

    .hotel-hero-overlay {
        height: 40vh;
    }

    .hotel-hero-content {
        height: 40vh;
    }

    .hotel-title {
        font-size: 2rem;
        margin-bottom: 6px;
    }

    .hotel-address {
        font-size: 0.9rem;
    }

    .booking-form {
        top: calc(70px + 40vh + 15px);
        width: calc(100% - 20px);
        max-width: 100%;
        padding: 18px;
        border-radius: 12px;
        gap: 12px;
    }

    .booking-input {
        padding: 12px 35px 12px 16px;
        font-size: 0.9rem;
    }

    .booking-label {
        font-size: 0.7rem;
        left: 16px;
    }

    .btn-reserva {
        padding: 12px 18px;
        font-size: 0.9rem;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hotel-title {
        font-size: 2.5rem;
    }
    
    .booking-input {
        min-width: 250px;
    }
    
    .hotel-hero-content {
        padding: 0 15px;
    }
    
    .gallery-image img {
        height: 200px;
    }
    
    .hotel-cards-section {
        padding: 60px 0;
    }
    
    .hotel-card-content {
        padding: 20px;
    }
    
    .hotel-card-title {
        font-size: 1.3rem;
    }
    
    .hotel-card-description {
        font-size: 0.9rem;
    }
    
    /* Video responsivo para hoteles */
    .hotel-hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        /* Optimizar para móviles */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Asegurar que el video se reproduzca en móviles */
    .hotel-hero-video::-webkit-media-controls {
        display: none !important;
    }
    
    .hotel-hero-video::-webkit-media-controls-panel {
        display: none !important;
    }
}

/* Gallery Grid Masonry - Custom Collage Layout */
.gallery-grid-3x3 {
    position: relative;
    height: auto; /* Altura automática para diferentes cantidades de imágenes */
    min-height: 800px;
    width: 1155px; /* Ancho total: 3 × 380px + 2 × 5px */
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    padding: 20px;
}

.gallery-item-3x3 {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: #fff;
    border: 3px solid transparent;
}

.gallery-item-3x3:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: #ad0b0d;
    z-index: 10;
}

/* Posicionamiento dinámico - manejado por JavaScript */
/* Las reglas CSS específicas se han desactivado para permitir posicionamiento dinámico */


.gallery-item-3x3 img,
.gallery-item-3x3 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.05);
    cursor: pointer;
}

.gallery-item-3x3 video {
    background: #000;
}

.gallery-item-3x3 video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}

.gallery-item-3x3 video::-webkit-media-controls-panel {
    background: transparent;
}

.gallery-item-3x3:hover img,
.gallery-item-3x3:hover video {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

/* Overlay effect on hover */
.gallery-item-3x3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(173, 11, 13, 0.1), rgba(173, 11, 13, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

.gallery-item-3x3:hover::before {
    opacity: 1;
}

/* Subtle animation for collage items */
.gallery-item-3x3 {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Staggered animation for items */
.gallery-item-3x3:nth-child(1) { animation-delay: 0.1s; }
.gallery-item-3x3:nth-child(2) { animation-delay: 0.2s; }
.gallery-item-3x3:nth-child(3) { animation-delay: 0.3s; }
.gallery-item-3x3:nth-child(4) { animation-delay: 0.4s; }
.gallery-item-3x3:nth-child(5) { animation-delay: 0.5s; }
.gallery-item-3x3:nth-child(6) { animation-delay: 0.6s; }
.gallery-item-3x3:nth-child(7) { animation-delay: 0.7s; }
.gallery-item-3x3:nth-child(8) { animation-delay: 0.8s; }
.gallery-item-3x3:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Gallery Hero */
@media (max-width: 1200px) {
    .gallery-title {
        font-size: 4rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 80vh;
    }
    
    .gallery-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        height: 70vh;
    }
    
    .gallery-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid-3x3 {
        width: 970px; /* 3 × 320px + 2 × 5px */
        height: auto; /* Altura automática para diferentes cantidades */
        min-height: 600px;
    }
    
    /* El posicionamiento responsive se maneja dinámicamente en JavaScript */
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 2.5rem;
    }
    
    .gallery-subtitle {
        font-size: 1rem;
    }
    
    .hotel-filter-menu {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hotel-filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: 120px;
        margin: 0 3px;
    }
    
    .gallery-grid-3x3 {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
    
    .gallery-item-3x3 {
        position: relative !important;
        width: 100% !important;
        height: 300px !important;
        top: auto !important;
        left: auto !important;
    }
    
    .gallery-item-3x3:nth-child(2) {
        height: 400px !important;
    }
    
    .gallery-item-3x3:nth-child(3) {
        height: 350px !important;
    }
    
    .gallery-item-3x3:nth-child(4),
    .gallery-item-3x3:nth-child(5),
    .gallery-item-3x3:nth-child(6) {
        height: 200px !important;
    }
    
    .gallery-item-3x3:nth-child(7) {
        height: 300px !important;
    }
    
    .gallery-item-3x3:nth-child(8) {
        height: 350px !important;
    }
}

@media (max-width: 480px) {
    
    .gallery-content {
        padding: 40px 0;
    }
    
    .hotel-filter-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .gallery-grid-3x3 {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 5px;
    }
    
    .gallery-item-3x3 {
        position: relative !important;
        width: 100% !important;
        height: 250px !important;
        top: auto !important;
        left: auto !important;
    }
    
    .gallery-item-3x3:nth-child(2) {
        height: 350px !important;
    }
    
    .hotel-filter-btn {
        padding: 8px 12px;
        font-size: 0.7rem;
        min-width: 100px;
        margin: 0 2px;
    }
    
    .gallery-item-3x3:nth-child(3) {
        height: 300px !important;
    }
    
    .gallery-item-3x3:nth-child(4),
    .gallery-item-3x3:nth-child(5),
    .gallery-item-3x3:nth-child(6) {
        height: 180px !important;
    }
    
    .gallery-item-3x3:nth-child(7) {
        height: 250px !important;
    }
    
    .gallery-item-3x3:nth-child(8) {
        height: 300px !important;
    }
}

/* ========================================
   ADMIN PANEL STYLES
======================================== */

.admin-header {
    background: #1a1a1a;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-logo-img {
    height: 50px;
}

.admin-logo h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.admin-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.admin-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.admin-nav-link:hover {
    color: #ad0b0d;
}

.btn-logout {
    background: #ad0b0d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-logout:hover {
    background: #8a090b;
}

.admin-main {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 100px);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #ad0b0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-content h3 {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.admin-articles {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}


.admin-section-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.btn-primary {
    background: #ad0b0d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #8a090b;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

.articles-list {
    padding: 30px;
}

.article-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-card-image {
    width: 150px;
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.article-card-content {
    flex: 1;
}

.article-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.article-card-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    line-height: 1.3;
}

.article-category-badge {
    background: #ad0b0d;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.article-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-card-actions {
    display: flex;
    gap: 10px;
}

.btn-edit, .btn-delete, .btn-view {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-edit {
    background: #17a2b8;
    color: white;
}

.btn-edit:hover {
    background: #138496;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.btn-delete:hover {
    background: #c82333;
}

.btn-view {
    background: #28a745;
    color: white;
}

.btn-view:hover {
    background: #218838;
}

.no-articles {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 60px 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

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

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ad0b0d;
}

.image-preview {
    margin-top: 10px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.login-modal {
    max-width: 400px;
}

/* Responsive Design for Articles and Admin */
@media (max-width: 768px) {
    .article-nav-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-image-left {
        float: none;
        margin: 0 auto 20px auto;
        max-width: 100%;
        width: 100%;
        display: block;
    }

    .article-img,
    .article-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 20px 0;
    }

    .article-author {
        flex-direction: column;
        text-align: center;
    }

    .admin-header-content {
        flex-direction: column;
        gap: 20px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card-image {
        width: 100%;
        height: 200px;
    }

    .article-card-actions {
        flex-wrap: wrap;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* Responsive Design para Tablets (1024px) */
@media (max-width: 1024px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .destinations {
        padding: 60px 0;
        margin-top: -40px;
    }
    
    .destinations-header {
        padding: 0 30px;
        margin-bottom: 50px;
    }
    
    .destinations-header h2 {
        font-size: 1.4rem;
    }
    
    .destinations-header h3 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .destinations-grid {
        max-width: 700px;
        gap: 30px;
    }
    
    .destination-card {
        max-width: 100%;
    }
    
    .destination-content {
        padding: 25px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 900px;
    }
    
    .flip-card {
        height: 500px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 65px 25px 40px 25px;
    }
    
    .social-contact-banner {
        padding: 35px 0;
    }
    
    .banner-content {
        gap: 35px;
    }
    
    .main-banner-logo {
        height: 75px;
    }
    
    .social-media {
        gap: 18px;
    }
    
    .social-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Asegurar que el overlay esté debajo del menú */
    .mobile-menu-overlay.active {
        z-index: 9998 !important;
        pointer-events: auto;
    }
    
    .top-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        transition: right 0.3s ease;
        padding-top: 80px;
        box-shadow: -2px 0 15px rgba(0,0,0,0.2);
        z-index: 10002 !important;
        pointer-events: none;
        overflow-y: auto;
    }
    
    .top-nav.active {
        right: 0;
        z-index: 10002 !important;
        pointer-events: auto !important;
    }
    
    /* Asegurar que todos los elementos dentro del menú sean clickeables */
    .top-nav.active * {
        pointer-events: auto !important;
    }
    
    /* Asegurar que los enlaces sean completamente clickeables */
    .top-nav.active a {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10003 !important;
        position: relative;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(173, 11, 13, 0.3) !important;
    }
    
    .top-nav.active .dropdown-menu {
        pointer-events: auto !important;
        z-index: 10004 !important;
    }
    
    .top-nav.active .dropdown-menu a {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10005 !important;
        position: relative;
        touch-action: manipulation !important;
    }
    
    .top-nav.active .btn-reservas {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10003 !important;
        position: relative;
        touch-action: manipulation !important;
    }
    
    .top-nav.active li {
        pointer-events: auto !important;
    }
    
    .top-nav.active ul {
        pointer-events: auto !important;
    }
    
    .top-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        pointer-events: auto !important;
        position: relative;
        z-index: 1;
    }
    
    .top-nav li {
        border-bottom: 1px solid #f0f0f0;
        pointer-events: auto !important;
        position: relative;
        z-index: 1;
    }
    
    .top-nav a {
        display: flex;
        align-items: center;
        padding: 16px 25px;
        font-size: 1rem;
        border-radius: 0;
        transition: all 0.3s ease;
        color: #000 !important;
        text-decoration: none !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 10010 !important;
        position: relative;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(173, 11, 13, 0.2) !important;
        line-height: 1.5;
        min-height: 50px;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .top-nav a:hover {
        background: #f8f9fa;
        color: #ad0b0d !important;
        padding-left: 30px;
    }
    
    .top-nav a.active {
        background: #ad0b0d !important;
        color: #fff !important;
        font-weight: 600;
        padding-left: 25px;
    }
    
    .top-nav a.active:hover {
        background: #8a090b !important;
        color: #fff !important;
        padding-left: 25px;
    }
    
    /* Mobile Dropdown - Oculto por defecto, visible solo cuando está activo */
    .dropdown-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: #ffffff;
        border-radius: 0;
        margin: 0;
        padding: 0;
        border: none;
        display: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        pointer-events: auto !important;
        z-index: 15 !important;
    }
    
    /* Mostrar dropdown cuando está activo */
    .dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible !important;
        max-height: 500px;
    }
    
    .dropdown-menu a {
        color: #000 !important;
        padding: 18px 25px;
        font-size: 0.95rem;
        background: #ffffff;
        text-decoration: none !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 10011 !important;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 60px;
        -webkit-tap-highlight-color: rgba(173, 11, 13, 0.3) !important;
        touch-action: manipulation !important;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .dropdown-menu a:hover {
        background: #f0f0f0;
        color: #ad0b0d !important;
        padding-left: 30px;
    }
    
    .dropdown-menu .hotel-info {
        color: #000 !important;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
        flex: 1;
    }
    
    .dropdown-menu .hotel-name {
        color: #000 !important;
        font-weight: 600;
        font-size: 0.95rem;
        line-height: 1.3;
        pointer-events: none;
        margin: 0;
    }
    
    .dropdown-menu .hotel-location {
        color: #666 !important;
        font-size: 0.8rem;
        line-height: 1.4;
        pointer-events: none;
        margin: 0;
        font-weight: 400;
    }
    
    .dropdown-menu a:hover .hotel-name {
        color: #ad0b0d !important;
    }
    
    .dropdown-menu a:hover .hotel-location {
        color: #8a090b !important;
    }
    
    .dropdown-toggle {
        color: #000 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10010 !important;
        position: relative;
        touch-action: manipulation !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        -webkit-tap-highlight-color: rgba(173, 11, 13, 0.3) !important;
    }
    
    .dropdown-toggle i {
        color: #000 !important;
        pointer-events: none;
        margin-left: auto;
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown {
        pointer-events: auto !important;
        position: relative;
        z-index: 11 !important;
    }
    
    .btn-reservas {
        margin: 18px 25px;
        text-align: center;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
        min-height: 48px;
        border-radius: 8px;
        font-weight: 600 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10010 !important;
        position: relative;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(173, 11, 13, 0.3) !important;
        min-width: auto;
        width: calc(100% - 50px);
        background: #ad0b0d !important;
        color: #fff !important;
        transition: all 0.3s ease;
    }
    
    .btn-reservas:hover {
        background: #8a090b !important;
        color: #fff !important;
    }
    
    .top-nav a {
        font-size: 1rem;
        padding: 8px 12px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .top-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .btn-reservas {
        padding: 10px 20px !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        min-width: 120px;
    }
    
    .hero {
        height: 50vh;
        min-height: 300px;
        margin-top: 90px;
    }
    
    .hero-image {
        object-position: center center;
    }
    
    .colabora-hero {
        height: 80vh;
        margin-top: 0;
    }
    
    .colabora-main-content {
        padding: 100px 40px 0 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .colabora-text-section {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .colabora-title {
        font-size: 3rem;
    }
    
    .colabora-description {
        font-size: 1.1rem;
    }
    
    .colabora-cards-container {
        width: 250px;
        height: 320px;
        margin: 0 auto;
    }
    
    .colabora-controls {
        padding: 0 20px;
    }
    
    .colabora-prev,
    .colabora-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .colabora-indicators {
        bottom: 30px;
    }
    
    .services {
        padding: 50px 0;
    }
    
    .services-header h2 {
        font-size: 1.8rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .destinations {
        margin-top: -30px;
        padding: 60px 0 50px 0;
    }
    
    .destinations-header {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .destinations-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .destinations-header h3 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .services {
        padding: 50px 0;
    }
    
    .services-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .services-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 0;
        padding: 0 20px;
        max-width: 100%;
    }
    
    /* En móvil, deshabilitar el flip y mostrar solo el frente */
    .flip-card {
        height: auto;
        min-height: auto;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        perspective: none;
        cursor: default;
    }
    
    .flip-card:hover .flip-card-inner {
        transform: none;
    }
    
    .flip-card-inner {
        transform: none !important;
        height: auto;
        min-height: auto;
    }
    
    .flip-card-front, .flip-card-back {
        position: relative;
        padding: 50px 25px 30px 25px;
        border-radius: 15px;
        transform: none !important;
        height: auto;
        min-height: auto;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        -webkit-backface-visibility: visible;
        backface-visibility: visible;
    }
    
    .flip-card-back {
        display: none; /* Ocultar el reverso en móvil */
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        top: -20px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-icon:hover {
        transform: none;
    }
    
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #2c3e50;
    }
    
    .flip-card-front p, .flip-card-back p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .flip-card-front p:first-of-type, .flip-card-back p:first-of-type {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .destination-card {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .destination-image {
        height: 250px;
    }
    
    .destination-content {
        padding: 25px;
    }
    
    .destination-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .destination-content h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .destination-content .address {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .destination-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .btn-reserve-destination {
        padding: 12px 25px !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
        min-width: 140px;
        width: 100%;
        text-align: center;
    }
    
    .social-contact-banner {
        padding: 40px 0;
    }
    
    .main-banner-logo {
        height: 70px;
        width: auto;
        object-fit: contain;
    }
    
    .social-media {
        justify-content: center;
        gap: 15px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
    
    .phone-info {
        font-size: 1.2rem;
        margin-top: 15px;
        gap: 10px;
    }
    
    .phone-info i {
        font-size: 1.2rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .banner-left {
        gap: 25px;
        align-items: center;
    }
    
    .logo-section {
        justify-content: center;
    }
    
    .floating-whatsapp {
        bottom: 25px;
        right: 25px;
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 12px;
        min-width: 60px;
        min-height: 60px;
    }
    
    .floating-whatsapp i {
        font-size: 1.8rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .scroll-to-top i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top-content {
        gap: 12px;
        padding: 12px 0;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .top-nav {
        width: 260px;
        padding-top: 70px;
        background: #ffffff;
    }
    
    .top-nav a {
        padding: 18px 25px;
        font-size: 1rem;
        color: #333;
    }
    
    .top-nav a:hover {
        color: #ad0b0d;
        background: #f8f9fa;
    }
    
    .dropdown-menu a {
        color: #333;
    }
    
    .dropdown-menu a:hover {
        color: #ad0b0d;
    }
    
    .btn-reservas {
        margin: 15px 25px;
        padding: 12px 18px !important;
        font-size: 1rem !important;
        min-width: 110px;
    }
    
    .hero {
        height: 40vh;
        min-height: 250px;
        margin-top: 80px;
    }
    
    .colabora-hero {
        height: 70vh;
        margin-top: 0;
    }
    
    .colabora-main-content {
        padding: 80px 20px 0 20px;
    }
    
    .colabora-title {
        font-size: 2.5rem;
    }
    
    .colabora-description {
        font-size: 1rem;
    }
    
    .btn-colabora-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .colabora-cards-container {
        width: 200px;
        height: 280px;
    }
    
    .colabora-prev,
    .colabora-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .colabora-indicators {
        bottom: 20px;
    }
    
    .colabora-indicator {
        width: 10px;
        height: 10px;
    }
    
    .services {
        padding: 40px 0;
    }
    
    .services-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .services-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .services-grid {
        gap: 20px;
        padding: 0 15px;
    }
    
    .flip-card {
        height: auto;
        min-height: auto;
        max-width: 100%;
        width: 100%;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 45px 20px 25px 20px;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        top: -18px;
        margin-bottom: 15px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .flip-card-front p, .flip-card-back p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .flip-card-front p:first-of-type, .flip-card-back p:first-of-type {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .destinations {
        margin-top: -20px;
        padding: 50px 0 40px 0;
    }
    
    .destinations-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .destinations-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .destinations-header h3 {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .highlight {
        font-size: 1.4rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .destination-card {
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
        margin: 0 auto;
    }
    
    .destination-image {
        height: 220px;
    }
    
    .destination-content {
        padding: 20px;
    }
    
    .destination-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .destination-content h5 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .destination-content .address {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .destination-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .btn-reserve-destination {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        border-radius: 6px !important;
        min-width: 120px;
        width: 100%;
        text-align: center;
    }
    
    .social-contact-banner {
        padding: 30px 0;
    }
    
    .main-banner-logo {
        height: 60px;
    }
    
    .social-media {
        gap: 12px;
        max-width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        border-radius: 10px;
        flex-shrink: 0;
    }
    
    .phone-info {
        font-size: 1rem;
        margin-top: 12px;
        gap: 8px;
        text-align: center;
        justify-content: center;
    }
    
    .phone-info i {
        font-size: 1.1rem;
    }
    
    .banner-content {
        gap: 20px;
        padding: 0 15px;
        flex-direction: column;
    }
    
    .banner-left {
        gap: 15px;
        width: 100%;
        align-items: center;
    }
    
    .logo-section {
        justify-content: center;
    }

    /* Mobile Menu mejoras para 480px */
    .mobile-menu {
        width: 85%;
        max-width: 300px;
        border-radius: 15px;
    }

    .mobile-menu-header {
        padding: 20px 20px 15px 20px;
    }

    .mobile-logo {
        height: 40px;
    }

    .mobile-menu-close {
        font-size: 24px;
        width: 36px;
        height: 36px;
    }

    .mobile-nav-link {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .mobile-btn-reservas {
        margin: 12px 20px 20px 20px;
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .floating-whatsapp i {
        font-size: 1.6rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .scroll-to-top i {
        font-size: 1.3rem;
    }
}

/* Mejoras adicionales para pantallas muy pequeñas */
@media (max-width: 360px) {
    .top-nav ul {
        gap: 8px;
    }
    
    .top-nav a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .btn-reservas {
        padding: 7px 14px !important;
        font-size: 0.8rem !important;
        min-width: 90px;
    }
    
    .hero {
        height: 35vh;
        min-height: 200px;
        margin-top: 75px;
    }
    
    .destinations {
        margin-top: -15px;
        padding: 40px 0 35px 0;
    }
    
    .destinations-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .destinations-header h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .destinations-header h3 {
        font-size: 1.3rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .highlight {
        font-size: 1.2rem;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .destination-content {
        padding: 15px;
    }
    
    .destination-content h3 {
        font-size: 1.2rem;
    }
    
    .destination-content p {
        font-size: 0.85rem;
    }
    
    .services-header h2 {
        font-size: 1.3rem;
    }
    
    .services-header {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .services-header h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .services-grid {
        gap: 18px;
        padding: 0 10px;
    }
    
    .flip-card {
        height: auto;
        min-height: auto;
        max-width: 100%;
        width: 100%;
        cursor: default;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 40px 15px 20px 15px;
        border-radius: 10px;
        transform: none !important;
        position: relative;
    }
    
    .flip-card-back {
        display: none;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        top: -15px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .flip-card-front h3, .flip-card-back h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .flip-card-front p, .flip-card-back p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .flip-card-front p:first-of-type, .flip-card-back p:first-of-type {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .main-banner-logo {
        height: 50px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .phone-info {
        font-size: 0.95rem;
    }
    
    .destinations-header h2 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .destinations-header h3 {
        font-size: 1.3rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .highlight {
        font-size: 1.2rem;
    }
    
    .destination-card {
        max-width: 320px;
    }
    
    .destination-content {
        padding: 18px;
    }
    
    .destination-content h3 {
        font-size: 1.2rem;
    }
    
    .destination-content p {
        font-size: 0.85rem;
    }
    
    .btn-reserve-destination {
        padding: 9px 18px !important;
        font-size: 0.85rem !important;
        min-width: 110px;
    }
    
    .main-banner-logo {
        height: 55px;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .phone-info {
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 90px;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    animation: zoomIn 8s ease-in-out infinite;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    min-width: 100%;
    min-height: 100%;
}

.contact-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-text {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 30px 60px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.contact-hero-text h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Belleza', serif;
    text-transform: uppercase;
}

.contact-section-main {
    background: #1a1a1a;
    padding: 60px 0;
    color: white;
}

.contact-section-main .form-group label {
    color: white !important;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Belleza', serif;
}

.contact-section-main .contact-form-header h2 {
    color: white !important;
}

.contact-section-main .form-group input,
.contact-section-main .form-group textarea {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.contact-section-main .form-group input::placeholder,
.contact-section-main .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.contact-section-main .form-group input:focus,
.contact-section-main .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: #ad0b0d !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-header {
    background: #ad0b0d;
    padding: 20px 30px;
    margin-bottom: 25px;
}

.contact-info-header h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Belleza', serif;
    text-transform: uppercase;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    background: #f5f5f5;
    padding: 18px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ad0b0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25d366;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Belleza', serif;
}

.contact-details p {
    font-size: 1rem;
    margin: 0;
    color: #666;
    font-family: 'Belleza', serif;
    font-weight: 700;
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.contact-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Belleza', serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-group.half {
    flex: 1;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    font-family: 'Belleza', serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #ad0b0d;
    color: white;
    font-size: 1rem;
    font-family: 'Belleza', serif;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #8a090b;
}

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

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.btn-enviar {
    background: #ad0b0d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Belleza', serif;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
}

    .btn-enviar:hover {
        background: #8a090b;
    }
    
    .form-message {
        margin-top: 20px;
        padding: 15px;
        border-radius: 5px;
        text-align: center;
        font-family: 'Belleza', serif;
        display: none;
    }
    
    /* Thank You Page Styles */
    .thank-you-section {
        background: #1a1a1a;
        padding: 100px 0;
        color: white;
        min-height: 60vh;
        display: flex;
        align-items: center;
        margin-top: 90px;
    }
    
    .thank-you-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .thank-you-icon {
        font-size: 4rem;
        color: #28a745;
        margin-bottom: 30px;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Belleza', serif;
    }
    
    .thank-you-content p {
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-family: 'Belleza', serif;
        line-height: 1.6;
    }
    
    .thank-you-actions {
        margin-top: 40px;
        display: flex;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        font-family: 'Belleza', serif;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .btn-primary {
        background: #ad0b0d;
        color: white;
    }
    
    .btn-primary:hover {
        background: #8a090b;
        transform: translateY(-2px);
    }
    
    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }
    
    .btn-secondary:hover {
        background: white;
        color: #1a1a1a;
        transform: translateY(-2px);
    }

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

.form-message.loading {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid #007bff;
    display: block;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-hero-text {
        padding: 20px 40px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
        backdrop-filter: blur(3px);
    }
    
    .contact-hero-text h1 {
        font-size: 2rem;
        color: white;
    }
    
    .contact-section-main {
        padding: 40px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 30vh;
    }
    
    .contact-hero-text {
        padding: 15px 30px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
        backdrop-filter: blur(3px);
    }
    
    .contact-hero-text h1 {
        font-size: 1.5rem;
        color: white;
    }
    
    .contact-section-main {
        padding: 25px 0;
    }
    
    .contact-info-header {
        padding: 15px 20px;
    }
    
    .contact-info-header h2 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-form-header h2 {
        font-size: 1.3rem;
    }
    
    .btn-enviar {
        width: 100%;
        padding: 15px 20px;
    }
    
    .thank-you-section {
        padding: 60px 0;
        margin-top: 80px;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .thank-you-content p {
        font-size: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
} 

/* ===== COLABORA CON NOSOTROS PAGE STYLES ===== */

/* Hero Section */
.colabora-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 90px;
}

.colabora-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.colabora-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    animation: zoomIn 8s ease-in-out infinite;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    min-width: 100%;
    min-height: 100%;
}

.colabora-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.colabora-hero-text {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 30px 60px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    text-align: center;
}

.colabora-hero-text h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Belleza', serif;
    text-transform: uppercase;
}

.colabora-hero-text p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    font-family: 'Belleza', serif;
    opacity: 0.9;
}


/* Beneficios Section */
.beneficios-section {
    background: #000000;
    padding: 60px 0;
    color: white;
}

.beneficios-header {
    text-align: center;
    margin-bottom: 60px;
}

.beneficios-header h2 {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin: 0;
    font-family: 'Belleza', serif;
    text-transform: uppercase;
}

.beneficios-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.beneficio-item {
    text-align: center;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
    flex: 1;
    min-width: 150px;
    max-width: 180px;
}

.beneficio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.beneficio-icon {
    width: 50px;
    height: 50px;
    background: #ad0b0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(173, 11, 13, 0.3);
}

.beneficio-icon i {
    font-size: 1.2rem;
    color: white;
}

.beneficio-item h3 {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Belleza', serif;
}

.beneficio-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    margin: 0;
    font-family: 'Belleza', serif;
    font-size: 0.8rem;
}

/* Aplicación Section */
.aplicacion-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.aplicacion-header h2 {
    font-size: 2.5rem;
    color: #ad0b0d;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Belleza', serif;
    text-transform: uppercase;
}

.aplicacion-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-family: 'Belleza', serif;
}

.aplicacion-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.aplicacion-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
}

.form-group.half {
    flex: 1;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    font-family: 'Belleza', serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    font-size: 1rem;
    font-family: 'Belleza', serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ad0b0d;
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.form-group select {
    cursor: pointer;
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-aplicar {
    background: #ad0b0d;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Belleza', serif;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
}

.btn-aplicar:hover {
    background: #8a090b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 11, 13, 0.3);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-family: 'Belleza', serif;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

.form-message.loading {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid #007bff;
    display: block;
}

/* Responsive Design for Colabora Page */
@media (max-width: 768px) {
    .colabora-hero {
        height: 40vh;
    }
    
    .colabora-bg-image {
        transform: scale(1.2);
        min-width: 120%;
        min-height: 120%;
        left: -10%;
        top: -10%;
        position: absolute;
    }
    
    .colabora-main-content {
        flex-direction: column;
        padding: 80px 20px 0 20px;
        text-align: center;
    }
    
    .colabora-cards-container {
        width: 100%;
        height: 250px;
        margin: 40px auto 0;
        overflow-x: auto;
        padding: 0 20px;
        justify-content: flex-start;
    }
    
    .colabora-card {
        width: 180px;
        height: 220px;
        flex-shrink: 0;
    }
    
    .colabora-hero-text {
        padding: 20px 40px;
    }
    
    .colabora-hero-text h1 {
        font-size: 2rem;
    }
    
    .colabora-hero-text p {
        font-size: 1rem;
    }
    
    
    .beneficios-section {
        padding: 50px 0;
    }
    
    .beneficios-header h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .beneficios-grid {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .beneficio-item {
        min-width: auto;
        max-width: none;
        padding: 18px 15px;
    }
    
    .aplicacion-section {
        padding: 60px 0;
    }
    
    .aplicacion-header h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .aplicacion-form-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .colabora-hero {
        height: 30vh;
    }
    
    .colabora-bg-image {
        transform: scale(1.3);
        min-width: 130%;
        min-height: 130%;
        left: -15%;
        top: -15%;
        position: absolute;
    }
    
    .colabora-hero-text {
        padding: 15px 30px;
    }
    
    .colabora-hero-text h1 {
        font-size: 1.5rem;
    }
    
    .colabora-hero-text p {
        font-size: 0.9rem;
    }
    
    
    .beneficios-section {
        padding: 40px 0;
    }
    
    .beneficios-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .beneficios-grid {
        flex-direction: column;
        padding: 0 15px;
        gap: 12px;
    }
    
    .beneficio-item {
        padding: 16px 12px;
        min-width: auto;
        max-width: none;
    }
    
    .beneficio-icon {
        width: 45px;
        height: 45px;
    }
    
    .beneficio-icon i {
        font-size: 1.1rem;
    }
    
    .aplicacion-section {
        padding: 50px 0;
    }
    
    .aplicacion-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .aplicacion-form-container {
        padding: 25px 15px;
        margin: 0 15px;
    }
    
    .btn-aplicar {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Mejoras para experiencia táctil en móviles */
@media (max-width: 768px) {
    /* Aumentar área de toque para botones */
    .btn-reservas, .btn-reserve-destination, .btn-enviar {
        min-height: 44px;
        touch-action: manipulation;
    }

/* ========================================
   DESTINATIONS NEW STYLES - DISEÑO MEJORADO
   ======================================== */

/* Estilos para la nueva sección de destinos */
.destinations-new {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.destinations-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ad0b0d" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.destinations-new .container {
    position: relative;
    z-index: 2;
}

.destinations-new h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.destinations-new h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ad0b0d, #e74c3c);
    margin: 15px auto;
    border-radius: 2px;
}

.destinations-new .subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de destinos mejorado */
.destinations-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tarjetas de destino como botones llamativos */
.destination-card-new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.destination-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ad0b0d, #e74c3c, #3498db);
    border-radius: 20px;
    padding: 3px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card-new:hover::before {
    opacity: 1;
}

.destination-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(173, 11, 13, 0.2);
}

.destination-card-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card-new:hover img {
    transform: scale(1.1);
}

/* Overlay mejorado */
.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.destination-card-new:hover .destination-overlay {
    transform: translateY(0);
}

.destination-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-overlay .destination-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Indicador de click mejorado */
.click-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: rgba(173, 11, 13, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    width: fit-content;
    transition: all 0.3s ease;
}

.destination-card-new:hover .click-indicator {
    background: #ad0b0d;
    transform: scale(1.05);
}

.click-indicator i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Información visible por defecto */
.destination-info {
    padding: 25px;
    text-align: center;
    background: #fff;
}

.destination-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.destination-info .destination-location {
    font-size: 1rem;
    color: #ad0b0d;
    font-weight: 600;
    margin-bottom: 12px;
}

.destination-info .destination-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ad0b0d, #e74c3c);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 768px) {
    .destinations-new {
        padding: 40px 0;
    }
    
    .destinations-new h2 {
        font-size: 2rem;
    }
    
    .destinations-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .destination-card-new {
        border-radius: 15px;
    }
    
    .destination-card-new:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .destination-info {
        padding: 20px;
    }
    
    .destination-info h3 {
        font-size: 1.4rem;
    }
    
    .destination-overlay {
        padding: 25px 20px 20px;
    }
    
    .destination-overlay h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .destinations-new h2 {
        font-size: 1.8rem;
    }
    
    .destinations-grid-new {
        gap: 15px;
    }
    
    .destination-card-new img {
        height: 160px;
    }
    
    .destination-info h3 {
        font-size: 1.3rem;
    }
    
    .destination-overlay h3 {
        font-size: 1.3rem;
    }
}
    
    /* Mejorar scroll en móviles */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevenir zoom en inputs */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Mejorar contraste para accesibilidad */
    .top-nav a {
        color: #fff;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    
    /* Animación suave para el menú */
    .top-nav {
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Mejorar visibilidad del botón hamburguesa */
    .mobile-menu-toggle {
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .mobile-menu-toggle:active {
        background-color: rgba(255,255,255,0.2);
    }
} 

/* Reservations Information Section */
.reservations-info-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

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

.reservations-header h2 {
    color: #ad0b0d;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.reservations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.reservation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 450px;
    width: 100%;
}

.reservation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.reservation-header {
    background: #ad0b0d;
    color: white;
    padding: 20px;
    text-align: center;
}

.reservation-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-map {
    height: 200px;
    overflow: hidden;
}

.reservation-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-actions {
    background: #fff;
    text-align: right;
    padding: 8px 12px;
    border-top: 1px solid #e9ecef;
}

.map-actions a {
    color: #ad0b0d;
    text-decoration: none;
    font-weight: 600;
}

.map-actions a:hover {
    text-decoration: underline;
}

.reservation-contact {
    padding: 25px;
}

.reservation-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.reservation-contact .contact-item:hover {
    background: #e9ecef;
}

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

.reservation-contact .contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: transform 0.3s ease;
}

.reservation-contact .contact-link:hover {
    transform: translateX(5px);
}

.reservation-contact .contact-icon {
    width: 40px;
    height: 40px;
    background: #ad0b0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.reservation-contact .contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.reservation-contact .contact-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-contact .contact-details p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.reservation-action {
    padding: 25px;
    text-align: center;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.reservation-action p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.btn-reservation {
    display: inline-block;
    background: #ad0b0d;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #ad0b0d;
}

.btn-reservation:hover {
    background: #8a090b;
    border-color: #8a090b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(173, 11, 13, 0.3);
    text-decoration: none;
}

.btn-reservation:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(173, 11, 13, 0.3);
}

/* Responsive Design for Reservations Section */
@media (max-width: 1024px) {
    .reservations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 900px;
        justify-items: center;
    }
}

/* ===== GALLERY MODAL STYLES ===== */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-modal-image-container img,
.gallery-modal-image-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gallery-modal-image-container video {
    background: #000;
}

.gallery-modal-image-container video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0 0 10px 10px;
}

.gallery-modal-image-container video::-webkit-media-controls-panel {
    background: transparent;
}

.gallery-modal-info {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    display: none; /* Ocultar las letras descriptivas */
}

.gallery-modal-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Belleza', serif;
}

.gallery-modal-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gallery-modal-prev {
    left: -80px;
}

.gallery-modal-next {
    right: -80px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev:disabled,
.gallery-modal-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-modal-prev:disabled:hover,
.gallery-modal-next:disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Gallery Modal */
@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .gallery-modal-image-container img {
        max-height: 70vh;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .gallery-modal-prev {
        left: -60px;
    }
    
    .gallery-modal-next {
        right: -60px;
    }
    
    .gallery-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .gallery-modal-info {
        bottom: -50px;
        padding: 10px 20px;
        display: none; /* Ocultar también en móviles */
    }
    
    .gallery-modal-info h3 {
        font-size: 1rem;
    }
    
    .gallery-modal-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 10px;
    }
    
    .gallery-modal-info {
        position: relative;
        bottom: 0;
        margin-top: 20px;
        display: none; /* Ocultar también en pantallas muy pequeñas */
    }
}

/* ===== QUIENES SOMOS PAGE STYLES ===== */

/* Hero Section */
.quienes-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quienes-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #2C2C2C;
}

.quienes-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
    animation: zoomIn 8s ease-in-out infinite;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    min-width: 100%;
    min-height: 100%;
}

.quienes-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 8%,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(0, 0, 0, 0.7) 35%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
}

.quienes-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.quienes-logo {
    margin-bottom: 30px;
}

.quienes-logo-image {
    max-width: 300px;
    height: auto;
}

.quienes-slogan {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    text-align: justify;
    text-align-last: justify;
    hyphens: auto;
}

@media (max-width: 768px) {
    .quienes-hero {
        margin-top: 80px;
    }
}

/* Familia Section */
.familia-section {
    padding: 80px 0;
    background: white;
}

.familia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-column {
    display: flex;
    justify-content: center;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    width: 100%;
}

.video-thumbnail {
    width: 100%;
    max-width: 270px;
    height: 480px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: url('IMAGENES/rojito.png') center center;
    background-size: cover;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(139, 0, 0, 0.3) 0%,
        rgba(139, 0, 0, 0.4) 50%,
        rgba(139, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.play-button {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: #8B0000;
    margin-left: 5px;
}



.familia-video {
    width: 100%;
    max-width: 270px;
    height: 480px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #000;
    object-fit: cover;
}


.text-column {
    padding: 20px;
}

.familia-title {
    font-family: 'Belleza', serif;
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.familia-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

/* Propósito y Visión Section */
.proposito-vision-section {
    padding: 80px 0;
    background: #2C2C2C;
}

.proposito-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.proposito-box,
.vision-box {
    background: transparent;
    padding: 50px 40px;
    border-radius: 0;
    color: white;
    text-align: center;
}

.proposito-title,
.vision-title {
    font-family: 'Belleza', serif;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #FFD700;
}

.proposito-text,
.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
}

/* Fondo de Propósito y Visión */
.proposito-vision-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.proposito-vision-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.proposito-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.proposito-vision-section .container {
    position: relative;
    z-index: 2;
}

.proposito-vision-section .proposito-vision-grid {
    position: relative;
    z-index: 2;
}

/* Asegurar que el texto sea visible sobre la imagen */
.proposito-title,
.vision-title {
    font-family: 'Above the Beyond Script', cursive !important;
    color: #FFFFFF !important; /* Blanco */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 3rem !important;
    font-weight: 400 !important;
}

.proposito-text,
.vision-text {
    color: #FFFFFF !important; /* Blanco para mejor contraste */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive para el fondo */
@media (max-width: 768px) {
    .proposito-vision-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .proposito-vision-section {
        padding: 40px 0;
    }
}

/* Valores Section */
.valores-section {
    padding: 80px 0;
    background: white;
}

.valores-header {
    text-align: center;
    margin-bottom: 60px;
}

.valores-header h2 {
    font-family: 'Above the Beyond Script', cursive !important;
    font-size: 3rem !important;
    color: #ad0b0b !important; /* Rojo corporativo */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400 !important;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #8B0000;
}

.valor-title {
    font-size: 1.5rem;
    color: #8B0000;
    margin-bottom: 20px;
    font-weight: 600;
}

.valor-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Design for Quienes Somos */
@media (max-width: 768px) {
    .quienes-hero {
        height: 60vh;
    }
    
    .quienes-logo-image {
        max-width: 200px;
    }
    
    .quienes-slogan {
        font-size: 1rem;
    }
    
    .familia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-thumbnail,
    .familia-video {
        max-width: 240px;
        height: 427px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-text {
        font-size: 1rem;
    }
    
    .familia-title {
        font-size: 2rem;
    }
    
    .proposito-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proposito-box,
    .vision-box {
        padding: 40px 30px;
        background: transparent;
    }
    
    .proposito-title,
    .vision-title {
        font-family: 'Above the Beyond Script', cursive !important;
        color: #FFFFFF !important; /* Blanco */
        font-size: 2.5rem !important;
        font-weight: 400 !important;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .valor-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .quienes-hero {
        height: 50vh;
    }
    
    .quienes-logo-image {
        max-width: 150px;
    }
    
    .quienes-slogan {
        font-size: 0.9rem;
    }
    
    .familia-title {
        font-size: 1.8rem;
    }
    
    .proposito-title,
    .vision-title {
        font-size: 1.5rem;
    }
    
    .valores-header h2 {
        font-family: 'Above the Beyond Script', cursive !important;
        font-size: 2.5rem !important;
        color: #ad0b0b !important;
        font-weight: 400 !important;
    }
}

@media (max-width: 768px) {
    .reservations-info-section {
        padding: 60px 0;
        margin-top: 40px;
    }
    
    .reservations-header h2 {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .reservations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
        max-width: 500px;
        justify-items: center;
    }
    
    .reservation-card {
        max-width: 500px;
        width: 100%;
    }
    
    .reservation-header h3 {
        font-size: 1.2rem;
    }
    
    .reservation-contact {
        padding: 20px;
    }
    
    .reservation-contact .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .reservation-contact .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .reservation-contact .contact-icon i {
        font-size: 1rem;
    }
    
    .reservation-contact .contact-details h4 {
        font-size: 0.8rem;
    }
    
    .reservation-contact .contact-details p {
        font-size: 0.9rem;
    }
    
    .reservation-action {
        padding: 20px;
    }
    
    .reservation-action p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .btn-reservation {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .reservations-info-section {
        padding: 50px 0;
        margin-top: 30px;
    }
    
    /* Asegurar que la imagen de fondo ocupe todo el ancho en móviles */
    .bottom-booking-background {
        width: 100%;
        height: 100%;
    }
    
    .bottom-booking-image {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    
    .bottom-booking-video {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        /* Optimizar para móviles */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    
    .reservations-header h2 {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .reservations-grid {
        padding: 0 15px;
        gap: 15px;
        max-width: 400px;
        justify-items: center;
    }
    
    .reservation-header {
        padding: 15px;
    }
    
    .reservation-header h3 {
        font-size: 1.1rem;
    }
    
    .reservation-map {
        height: 180px;
    }
    
    .reservation-contact {
        padding: 18px;
    }
    
    .reservation-contact .contact-item {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .reservation-contact .contact-icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }
    
    .reservation-contact .contact-icon i {
        font-size: 0.9rem;
    }
    
    .reservation-contact .contact-details h4 {
        font-size: 0.75rem;
    }
    
    .reservation-contact .contact-details p {
        font-size: 0.85rem;
    }
    
    .reservation-action {
        padding: 18px;
    }
    
    .reservation-action p {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .btn-reservation {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
} 