@media (max-width: 1023px) {
    .dropdown-content li {
        border-bottom: 1px solid #eee;
        padding: 10px 18px;
        background: #fff;
    }
    .dropdown-content li:last-child {
        border-bottom: none;
    }
    /* Sombra y separación visual */
    .dropdown.open-mobile-dropdown .dropdown-content {
        box-shadow: 0 8px 24px rgba(0,0,0,0.13);
        border: 1.5px solid #c5cae9;
    }
}
@media (max-width: 1023px) {
    .dropdown.open-mobile-dropdown > .dropdown-toggle {
        background: #f5f5f5;
        color: #1a237e;
        border-radius: 8px 8px 0 0;
    }
    .dropdown-toggle .dropdown-arrow {
        margin-left: 6px;
        transition: transform 0.2s;
    }
    .dropdown.open-mobile-dropdown .dropdown-arrow {
        color: #1a237e;
        font-weight: bold;
    }
}
@media (max-width: 1023px) {
    .dropdown-content {
        display: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        background: #fff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        margin-top: 8px;
        border: 1px solid #eee;
        padding: 0 0 8px 0;
    }
    .dropdown.open-mobile-dropdown .dropdown-content {
        display: block;
        max-height: 500px;
        opacity: 1;
        /* animación de apertura */
    }
}
/* Forzar visibilidad de los párrafos de cierre de itinerario traducidos en los modales */
p[data-translate="modal1Day10Desc"],
p[data-translate="modal2Day8Desc"] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    color: inherit;
}
.header-lang-btns {
    align-items: center;
    display: flex;
    position: relative;
    margin-left: auto;
    margin-right: 0;
    height: 100%;
}
.lang-btn-group {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}
.lang-btn {
    background: var(--bg-card);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    outline: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.lang-btn:hover, .lang-btn.active {
    background: var(--primary-color);
    color: #222;
    border-color: var(--primary-color);
}
.hero-gradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 30vh;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(20,20,20,0.7) 100%);
}

.hero-sound-btn {
    transition: background 0.2s;
}
.hero-sound-btn:hover {
    background: rgba(40,40,40,0.8);
}

.hero-title-anim {
    animation: fadeInDown 1s cubic-bezier(.77,0,.18,1) both;
}
.hero-cta-anim {
    animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) both;
    box-shadow: 0 4px 24px rgba(212,175,55,0.25);
    transition: box-shadow 0.3s, transform 0.2s;
}
.hero-cta-anim:hover {
    box-shadow: 0 8px 32px rgba(212,175,55,0.45);
    transform: translateY(-3px) scale(1.04);
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
:root {
    /* ==================== TEMA OSCURO Y DORADO ==================== */
    --primary-color: #d4af37;      /* Dorado principal */
    --secondary-color: #0f0f0f;    /* Negro profundo */
    --accent-color: #f9d71c;       /* Dorado brillante */
    --urgency-color: #ff6b6b;      /* Rojo énfasis */
    --text-dark: #e0e0e0;          /* Texto principal claro */
    --text-light: #aaa;            /* Texto secundario */
    --bg-dark: #0a0a0a;            /* Fondo oscuro */
    --bg-card: linear-gradient(145deg, #1a1a1a, #0f0f0f); /* Fondo tarjetas */
    --border-color: rgba(212, 175, 55, 0.2); /* Borde dorado suave */
    --glass-bg: rgba(15, 15, 15, 0.85); /* Glass effect oscuro */
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 8px 25px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 35px rgba(212, 175, 55, 0.2);
    --shadow-xl: 0 25px 50px rgba(212, 175, 55, 0.3);
    
    /* Transiciones */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Radios */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Tipografía */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ================================================ 
   RESET Y ESTILOS BASE
   ================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

/* Botones principales */
.btn {
    background: var(--primary-color);
    color: #222;
    border-radius: var(--radius-sm);
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1;
}
.btn:hover, .btn:focus {
    background: var(--accent-color);
    color: #111;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.btn:active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-radius: var(--radius-sm);
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #128C7E;
    color: #fff;
    border-color: #128C7E;
    box-shadow: var(--shadow-md);
}
.btn-whatsapp:active {
    background: #075E54;
    color: #fff;
    border-color: #075E54;
}

ul {
    list-style: none;
}

/* ================================================ 
   ANIMACIONES
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Clases de animación */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ================================================ 
   LAYOUT Y CONTENEDORES
   ================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: var(--spacing-xs) auto 0;
    border-radius: 2px;
}

/* ================================================ 
   HEADER Y NAVEGACIÓN
   ================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-medium);
    border-bottom: 1px solid var(--border-color);
}

header.scrolled {
    background: var(--glass-bg);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo-circle {
    width: 85px;
    height: 80px;
    border-radius: 45%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: var(--transition-fast);
}

.logo-circle:hover {
    transform: rotate(15deg) scale(1.1);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Navegación desktop */
nav {
    display: none;
}


/* Desktop nav styles remain as before */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    transition: left 0.3s, opacity 0.3s;
}

/* Mobile nav overlay */
@media (max-width: 1023px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 80vw;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-card);
        box-shadow: 2px 0 24px rgba(0,0,0,0.25);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        z-index: 3000;
        opacity: 0;
        pointer-events: none;
        transition: left 0.3s, opacity 0.3s;
        overflow-y: auto;
    }
    .nav-links.nav-mobile-open {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }
    nav {
        display: block;
    }
    .mobile-menu-btn {
        display: block;
        z-index: 3100;
    }
    /* Dropdown fix for mobile */
    .dropdown {
        position: static;
        width: 100%;
    }
    .dropdown-content {
        position: static;
        min-width: unset;
        box-shadow: none;
        background: none;
        border: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        padding: 0 0 0 1.2rem;
        display: none;
        flex-direction: column;
        gap: 0;
        margin: 0;
        transition: opacity 0.2s;
    }
    .dropdown.open-mobile-dropdown > .dropdown-content {
        display: flex;
        opacity: 1;
        visibility: visible;
        background: var(--secondary-color);
        border-radius: 10px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        margin: 0.5rem 0 0.5rem 0.5rem;
        padding: 0.5rem 0.5rem 0.5rem 1.2rem;
        z-index: 10;
    }
    .dropdown.open-mobile-dropdown {
        margin-bottom: 1.2rem;
    }
    .dropdown-content a {
        padding: 0.6rem 0;
        background: none;
        color: var(--text-dark);
        border-radius: 0;
        font-size: 1rem;
    }
    .dropdown-content a:hover {
        background: var(--secondary-color);
        color: var(--primary-color);
        padding-left: 1.5rem;
    }
    .dropdown-toggle::after {
        content: '\25BC';
        font-size: 0.8em;
        margin-left: 0.5em;
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.2s;
    }
    .dropdown.open-mobile-dropdown > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.nav-link {
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-sm);
        transition: var(--transition-fast);
        position: relative;
        white-space: nowrap;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 0.3rem;
    }
    .nav-link {
        padding: 0.4rem 0.7rem;
        font-size: 0.98rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 0.1rem;
    }
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.93rem;
    }
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    padding: var(--spacing-xs);
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.dropdown-content a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Selector de idioma */
.lang-selector {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.lang-selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ================================================ 
   BOTONES GENERALES - AHORA CENTRADOS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Centrado horizontal */
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    margin: 0 auto; /* Centrado en contenedor */
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-urgency {
    background: linear-gradient(135deg, var(--urgency-color), #e74c3c);
    color: white;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-urgency::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-urgency:hover::before {
    left: 100%;
}

.btn-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

/* Menú móvil */
.mobile-menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--text-dark);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* ================================================ 
   HERO SECTION
   ================================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}

.hero-bg::before {
    content: none;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    max-width: 800px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideDown 0.8s ease-out;
}

/* ================================================ 
   SECTIONS GENERALES
   ================================================ */
section {
    padding: var(--spacing-lg) 0;
}

section:nth-child(even) {
    background: var(--bg-card);
}

/* ================================================ 
   ABOUT SECTION
   ================================================ */
.about-section {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.manager-photo {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    transform: scale(0.95);
    border: 2px solid var(--primary-color);
}

.manager-photo:hover {
    transform: scale(1);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.about-certifications {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.about-certifications:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.about-certifications h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.about-certifications ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-certifications li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.about-certifications li:hover {
    background: var(--secondary-color);
    padding-left: 1rem;
}

/* ================================================ 
   TOURS SECTION
   ================================================ */
.tours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.tour-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--border-color);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tour-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.tour-card:hover .tour-img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: var(--spacing-xs);
    right: var(--spacing-xs);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: pulse 2s infinite;
}

.tour-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.7));
}

.tour-price {
    position: absolute;
    bottom: var(--spacing-xs);
    left: var(--spacing-xs);
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.tour-features {
    display: flex;
    justify-content: space-around;
    padding: var(--spacing-xs);
    background: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.tour-content {
    padding: var(--spacing-sm);
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tour-desc {
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

/* ================================================ 
   GALLERY SECTION
   ================================================ */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-lg);
}

.gallery-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    opacity: 0;
    transform: scale(0.9);
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 15, 15, 0.8));
    color: white;
    padding: var(--spacing-sm);
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* ================================================ 
   BLOG ACCORDION
   ================================================ */
.blog-accordion-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.blog-accordion-header {
    padding: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.blog-accordion-header:hover {
    background: var(--secondary-color);
}

.blog-accordion-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.blog-accordion-header i {
    transition: var(--transition-fast);
}

.blog-accordion-item.open .blog-accordion-header i {
    transform: rotate(180deg);
}

.blog-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    padding: 0 var(--spacing-sm);
}

.blog-accordion-item.open .blog-accordion-content {
    max-height: 1000px;
    padding: var(--spacing-sm);
}

.blog-accordion-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.blog-accordion-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-accordion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.blog-accordion-tag {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-accordion-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

/* ================================================ 
   OFFERS SECTION - ESTILOS DEL USUARIO
   ================================================ */
.offers-section {
    display: block !important;
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.offers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    position: relative;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.5);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.offer-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 2rem;
    color: var(--text-dark);
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-highlights {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.offer-highlight {
    text-align: center;
    flex: 1;
    color: var(--text-dark);
}

.offer-highlight i {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.offer-price {
    text-align: center;
    margin: 1.5rem 0;
}

.offer-price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.offer-price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-left: 10px;
}

.offer-price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.offer-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ==================== BOTÓN CTA CENTRADO ==================== */
.offer-cta {
    width: auto;
    min-width: 120px;
    padding: 0.35rem 0.9rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    border: none;
    border-radius: 22px;
    font-weight: 600;
    font-size: 0.98rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0.7rem auto 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.10);
    max-width: 180px;
    white-space: nowrap;
}

.offer-cta.small {
    min-width: 100px;
    font-size: 0.93rem;
    padding: 0.28rem 0.8rem;
    border-radius: 18px;
    margin: 0.5rem auto 0.3rem auto;
}

.offer-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

.offer-price-group {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.7rem;
}

.offer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.offer-countdown {
    text-align: center;
    color: var(--urgency-color);
    font-weight: 600;
    padding: 0.8rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.offer-countdown i {
    margin-right: 5px;
}

/* ================================================ 
   TESTIMONIALS
   ================================================ */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--border-color);
    min-width: 320px;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    flex: 1 1 auto;
    margin-top: 1rem;
    margin-bottom: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.testimonial-meta {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.testimonial-image {
    width: 300px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: block;
    margin: 0 auto;
}

.testimonial-image:hover {
    transform: scale(1.02);
}

/* ================================================ 
   FAQ SECTION
   ================================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.faq-question:hover {
    background: var(--secondary-color);
}

.faq-question i {
    transition: var(--transition-fast);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    padding: 0 var(--spacing-sm);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: var(--spacing-sm);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================ 
   MODALES
   ================================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-card);
    max-width: 900px;
    margin: 5% auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    animation: scaleIn 0.4s ease-out;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.modal.loading .modal-content {
    position: relative;
    overflow: hidden;
}

.modal.loading .modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    animation: shimmer 1.5s infinite;
    z-index: 19;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--secondary-color);
    padding: var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.close-btn {
    color: var(--secondary-color);
    font-size: 2rem;
    line-height: 1;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.close-btn:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: var(--spacing-md);
}

.modal-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Carrusel */
.carousel-container {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-sm);
}

.carousel-btn {
    background: rgba(0,0,0,0.5);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: var(--spacing-xs);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Itinerario */
.itinerary-accordion {
    margin-top: var(--spacing-md);
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: var(--transition-medium);
}

.accordion-header {
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.accordion-header:hover {
    background: var(--secondary-color);
}

.chevron {
    margin-left: auto;
    transition: var(--transition-fast);
}

.accordion-item.open .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
    padding: 0 var(--spacing-sm);
}

.accordion-item.open .accordion-content {
    max-height: 800px;
    padding: var(--spacing-sm);
}

.day-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs);
    background: var(--secondary-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Incluye/No incluye */
.inclusions-section {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--secondary-color);
    border-radius: var(--radius-md);
}

.inclusions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.inclusions-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.inclusions-list li:hover {
    transform: translateX(5px);
}

.inclusions-list .fa-check {
    color: #27ae60;
}

.inclusions-list .fa-times {
    color: var(--urgency-color);
}

/* Formulario */
#enquiry-form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--secondary-color);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
    justify-content: center; /* Centrado */
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* ================================================ 
   WHATSAPP FLOAT BUTTON
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transition: var(--transition-fast);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ================================================ 
   FOOTER
   ================================================ */
footer {
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0a);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition-fast);
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.office-hours {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent-color);
}

.enquire-btn {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ================================================ 
   LIGHTBOX
   ================================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease-out;
}

.lightbox-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--urgency-color);
    transform: rotate(90deg);
}

/* ================================================ 
   RESPONSIVE DESIGN - TABLET (768px+)
   ================================================ */
@media (min-width: 768px) {
    /* Header */
    nav {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    /* Layout */
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr 2fr;
        text-align: left;
    }
    
    .manager-photo {
        margin: 0 !important;
    }
    
    .about-text {
        max-width: none !important;
        margin: 0 !important;
    }
    
    .about-certifications ul {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    /* Modales */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Ofertas */
    .offer-cta {
        max-width: 60%; /* Más pequeño en tablet */
    }
    
    .footer-column h3 {
        pointer-events: none;
    }
    
    .footer-column h3 i {
        display: none;
    }
    
    .footer-links {
        display: block !important;
    }
}

/* ================================================ 
   RESPONSIVE DESIGN - DESKTOP (1024px+)
   ================================================ */
@media (min-width: 1024px) {
    /* Tipografía */
    .section-title {
        font-size: 2.5rem;
    }
    
    /* Tours */
    .tours-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Testimonials */
    .testimonials-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Modales */
    .carousel-container {
        height: 400px;
    }
    
    /* Ofertas */
    .offer-cta {
        max-width: 50%; /* Más pequeño en desktop */
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================ 
   LOADING Y ESTADOS
   ================================================ */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ================================================ 
   UTILIDADES
   ================================================ */
.text-center { text-align: center; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

/* Botón centrado global */
.btn-centered {
    display: block !important;
    margin: 1rem auto !important;
    text-align: center;
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ================================================ 
   NUEVAS FUNCIONALIDADES MODERNAS
   ================================================ */

/* Banner de Cookies Moderno */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(245,245,245,0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2.5rem;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.cookie-reject {
    background: transparent;
    color: var(--text-color);
    border: 2px solid #ddd;
}

.cookie-reject:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Buscador Moderno */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    line-height: 1;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-container h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-box {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
}

.search-box input {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.4);
    transform: translateY(-2px);
}

.search-results {
    background: white;
    border-radius: 15px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-result-item {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:hover {
    background: #f8f8f8;
    padding-left: 2rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-result-text h4 {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.search-result-text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.search-no-results {
    padding: 3rem;
    text-align: center;
    color: #666;
}

.search-no-results i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* Botón de búsqueda en header */
.search-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Social Proof Notifications */
#social-proof-container {
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 9998;
    max-width: 350px;
}

.social-proof-notification {
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transform: translateX(-400px);
    animation: slideInProof 0.5s ease forwards, slideOutProof 0.5s ease 4.5s forwards;
    border-left: 4px solid var(--primary-color);
}

@keyframes slideInProof {
    to { transform: translateX(0); }
}

@keyframes slideOutProof {
    to { transform: translateX(-400px); }
}

.social-proof-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.social-proof-text {
    flex: 1;
}

.social-proof-text strong {
    color: var(--text-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.2rem;
}

.social-proof-text span {
    color: #666;
    font-size: 0.8rem;
}

.social-proof-time {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

/* Responsive cookies y búsqueda */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .search-container {
        width: 95%;
        padding-top: 5vh;
    }

    .search-container h2 {
        font-size: 1.2rem;
    }

    #social-proof-container {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }

    .social-proof-notification {
        padding: 0.8rem;
    }
}

/* ================================================ 
   MAPA INTERACTIVO DE DESTINOS
   ================================================ */

.map-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.map-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.map-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.interactive-map {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.destination-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.destination-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.destination-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.destination-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }

    .map-section .section-title {
        font-size: 2rem;
    }

    .map-container {
        padding: 1rem;
    }

    .map-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .destination-card {
        padding: 1rem;
    }

    .destination-icon {
        font-size: 2rem;
    }
}

/* ================================================ 
   MEJORAS ADICIONALES DE UI/UX
   ================================================ */

/* Animaciones suaves para cards */
.tour-card,
.offer-card,
.blog-accordion-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover,
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Scroll suave mejorado */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Loading skeleton para imágenes */
img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

img[src] {
    animation: none;
    background: none;
}

/* Botón de scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Mejoras de contraste y accesibilidad */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Tooltips modernos */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0,0,0,0.9);
}

/* Indicador de progreso de lectura */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 10001;
    transition: width 0.1s ease;
}

/* Efecto parallax sutil en hero */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    transition: transform 0.5s ease-out;
}

/* Mejora de testimonios con hover */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

