/* style.css - VERSIÓN FINAL (SIN TRANSPARENCIAS) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
}

:root {
    --morado: #521b7d;
    --morado-claro: #6a2c9e;
    --verde: #23bb6e;
    --verde-oscuro: #1e9e5e;
    --magenta: #df1061;
    --magenta-claro: #e63e81;
    --naranja-oscuro: #fe4b38;
    --naranja: #fd8838;
    --amarillo: #fdce13;
    --oscuro: #1c1c1c;
    --blanco: #ffffff;
    --gris-claro: #f8f9fa;
    --gris-medio: #e9ecef;
    --gris-oscuro: #495057;
    --sombra-suave: 0 5px 20px rgba(0,0,0,0.05);
    --sombra-media: 0 10px 30px rgba(0,0,0,0.1);
}

/* Estilos del Header - BLANCO CON ALTURA REDUCIDA */
.main-header {
    background-color: var(--blanco);
    box-shadow: var(--sombra-media);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid var(--gris-medio);
}

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

/* Logo */
.logo a {
    display: block;
    flex-shrink: 0;
}
.logo img {
    display: block;
    max-height: 50px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02);
}

/* Navegación - CENTRADA */
.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: static;
}

.nav-link {
    text-decoration: none;
    color: var(--oscuro);
    font-weight: 400;
    padding: 10px 0;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HOVER MORADO */
.nav-link:hover {
    color: var(--morado);
    border-bottom-color: var(--morado);
}

/* Links destacados (Inti Raymi) */
.highlight-link {
    color: var(--oscuro);
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-link:hover {
    color: var(--morado);
    border-bottom-color: var(--morado);
}

.dropdown-toggle .arrow {
    font-size: 11px;
    margin-left: 4px;
    color: var(--oscuro);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.nav-item.dropdown:hover .arrow {
    transform: rotate(180deg);
    color: var(--morado);
}

/* ======================================== */
/* ESTILOS DEL DROPDOWN - A ANCHO COMPLETO */
/* ======================================== */

.dropdown-menu {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: transparent;
    box-shadow: var(--sombra-media);
    border-top: 2px solid var(--gris-medio);
    z-index: 1001;
    top: 70px;
    
    /* Efecto cortina */
    display: none;
    height: 0;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

/* ======================================== */
/* DESTINOS - FONDO BLANCO (SIN TRANSPARENCIA) */
/* ======================================== */

.dropdown-content-destinos {
    background-color: var(--blanco); /* FONDO BLANCO SÓLIDO */
    width: 100%;
    z-index: 2;
}

/* ELIMINADA la imagen de fondo y la capa oscura */

/* ======================================== */
/* QUIENES SOMOS - FONDO BLANCO */
/* ======================================== */

.dropdown-content-quienes {
    background-color: var(--blanco); /* FONDO BLANCO SÓLIDO */
    width: 100%;
    position: relative;
    z-index: 2;
}

/* ======================================== */
/* CONTENIDO CENTRADO (1200px) */
/* ======================================== */

.dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    height: auto;
    position: relative;
    z-index: 2;
}

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

/* ======================================== */
/* GRIDS Y TARJETAS */
/* ======================================== */

/* Grid para Destinos */
.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dropdown-title {
    font-size: 15px;
    color: var(--oscuro); /* TEXTO OSCURO SOBRE FONDO BLANCO */
    margin-bottom: 18px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--morado);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.dropdown-list {
    list-style: none;
}

.dropdown-list li {
    margin-bottom: 10px;
}

.dropdown-list a {
    text-decoration: none;
    color: var(--oscuro); /* TEXTO OSCURO SOBRE FONDO BLANCO */
    font-size: 13px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* CÍRCULO para hover */
.dropdown-list a::before {
    content: '●';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--morado);
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* HOVER MORADO CON CÍRCULO */
.dropdown-list a:hover {
    color: var(--morado);
    transform: translateX(18px);
    padding-left: 5px;
}

.dropdown-list a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Grid para Quiénes Somos - TEXTO ABAJO */
.quienes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.quienes-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s ease;
    height: 300px;
    border: 2px solid var(--gris-medio);
}

.quienes-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
    border-color: var(--morado);
}

.quienes-item a {
    text-decoration: none;
    color: var(--blanco);
    display: block;
    height: 100%;
}

.quienes-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.quienes-item:hover img {
    transform: scale(1.1);
}

/* TEXTO EN LA PARTE INFERIOR CON TRANSPARENCIA (SOLO PARA LAS IMÁGENES) */
.quienes-text {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    top: auto;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    text-align: left;
    width: 100%;
    padding: 12px 15px;
    background: rgba(28, 28, 28, 0.5); /* ESTA TRANSPARENCIA ES SOLO PARA EL TEXTO SOBRE LAS IMÁGENES */
    backdrop-filter: blur(2px);
    color: var(--blanco);
    border-left: 3px solid var(--morado);
}

/* Tarjetas para las secciones - BLANCAS CON BORDE SUTIL */
.dropdown-col {
    background: var(--gris-claro);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--gris-medio);
}

.dropdown-col:hover {
    transform: translateY(-3px);
    border-color: var(--morado);
    background: var(--blanco);
}

/* Imagen destacada en Destinos */
.destacado-imagen {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--gris-medio);
    transition: all 0.3s ease;
}

.destacado-imagen:hover {
    transform: scale(1.02);
    border-color: var(--morado);
    box-shadow: 0 0 20px rgba(82, 27, 125, 0.1);
}

.destacado-imagen img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}

.destacado-imagen:hover img {
    transform: scale(1.1);
}

.destacado-imagen span {
    display: block;
    text-align: center;
    margin-top: 6px;
    color: var(--oscuro);
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.destacado-imagen:hover span {
    color: var(--morado);
}

/* Botón de WhatsApp - VERDE CON DEGRADADO */
.contact-whatsapp {
    flex-shrink: 0;
    margin-left: 20px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--verde), var(--verde-oscuro));
    color: var(--blanco);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(35, 187, 110, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(35, 187, 110, 0.4);
}

.whatsapp-button img {
    filter: brightness(0) invert(1);
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover img {
    transform: rotate(5deg);
}


/* Separadores elegantes */
.dropdown-list li:not(:last-child) {
    border-bottom: 1px solid var(--gris-medio);
    padding-bottom: 8px;
}

/* ======================================== */
/* NUEVO: CONTENEDOR PARA CENTRAR EL CONTENIDO */
/* ======================================== */

.contenedor-centrado {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
}

/* ======================================== */
/* MODIFICACIONES PARA QUE EL FONDO SEA ANCHO COMPLETO */
/* ======================================== */

.dropdown-content-destinos,
.dropdown-content-quienes {
    width: 100%; /* Hereda el ancho del dropdown-menu que ya es 100% */
    background-color: var(--blanco);
}

/* Aseguramos que el dropdown-menu ocupe todo el ancho */
.dropdown-menu {
    width: 100%;
    left: 0;
}

/* ======================================== */
/* CORRECCIÓN PARA EL SCRIPT (ALTURA) */
/* ======================================== */

/* El script busca .dropdown-content, pero nosotros usamos .contenedor-centrado */
/* Por eso debemos asegurarnos de que .contenedor-centrado sea el que define la altura */
.contenedor-centrado {
    height: auto;
    display: block;
}









/* ======================================== */
/* MENÚ MÓVIL - SOLUCIÓN DEFINITIVA */
/* ======================================== */

/* Por defecto en desktop, el menú móvil está oculto */
.movil-header,
.movil-menu,
.movil-overlay {
    display: none;
}

/* ===== VERSIÓN MÓVIL (menos de 1000px) ===== */
@media (max-width: 1000px) {
    
    /* OCULTAR COMPLETAMENTE el menú de escritorio */
    .main-header .main-nav,
    .main-header .contact-whatsapp {
        display: none !important;
    }
    
    /* Ajustar header de escritorio para móvil */
    .main-header {
        height: 60px !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000;
    }
    
    .main-header .header-container {
        height: 60px !important;
        padding: 0 15px !important;
    }
    
    .main-header .logo img {
        max-height: 40px !important;
    }
    
    /* ===== MOSTRAR MENÚ MÓVIL ===== */
    .movil-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: var(--blanco);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 2500;
        border-bottom: 2px solid var(--gris-medio);
    }
    
    .movil-contenedor {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .movil-logo img {
        max-height: 40px;
        width: auto;
    }
    
    /* Botón hamburguesa */
    .movil-boton {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 2600;
    }
    
    .movil-boton span {
        width: 100%;
        height: 3px;
        background-color: var(--oscuro);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .movil-boton.activo span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--morado);
    }
    
    .movil-boton.activo span:nth-child(2) {
        opacity: 0;
    }
    
    .movil-boton.activo span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--morado);
    }
    
    /* Menú desplegable */
    .movil-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--blanco);
        z-index: 2550;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        overflow-y: auto;
    }
    
    .movil-menu.activo {
        right: 0;
    }
    
    /* Header del menú */
    .movil-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 2px solid var(--gris-medio);
        background: var(--blanco);
        position: sticky;
        top: 0;
        z-index: 2560;
    }
    
    .movil-titulo {
        font-size: 18px;
        font-weight: 500;
        color: var(--morado);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .movil-cerrar {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: var(--oscuro);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }
    
    /* Navegación */
    .movil-nav {
        padding: 10px 0 30px;
    }
    
    .movil-lista {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .movil-item {
        border-bottom: 1px solid var(--gris-medio);
    }
    
    .movil-enlace {
        display: block;
        padding: 16px 20px;
        text-decoration: none;
        color: var(--oscuro);
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.3s ease;
    }
    
    .movil-enlace:active {
        background: var(--gris-claro);
    }
    
    /* Items con submenú */
    .movil-con-submenu .movil-enlace {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .movil-flecha {
        font-size: 12px;
        color: var(--morado);
        transition: transform 0.3s ease;
    }
    
    .movil-con-submenu.activo .movil-flecha {
        transform: rotate(180deg);
    }
    
    /* Submenús */
    .movil-submenu {
        display: none;
        background: var(--gris-claro);
        padding: 10px 0;
        border-top: 1px solid var(--gris-medio);
    }
    
    .movil-con-submenu.activo .movil-submenu {
        display: block;
    }
    
    .movil-submenu-grupo {
        padding: 5px 0;
    }
    
    .movil-submenu-titulo {
        font-size: 14px;
        font-weight: 500;
        color: var(--morado);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 8px 20px;
        margin: 0;
        background: rgba(82,27,125,0.05);
    }
    
    .movil-submenu-lista {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .movil-submenu-lista li a {
        display: block;
        padding: 10px 20px 10px 35px;
        text-decoration: none;
        color: var(--oscuro);
        font-size: 14px;
        font-weight: 300;
        transition: all 0.3s ease;
    }
    
    .movil-submenu-lista li a:active {
        color: var(--morado);
        background: rgba(82,27,125,0.05);
        padding-left: 45px;
    }
    
    .movil-simple li a {
        padding-left: 20px;
    }
    
    .movil-simple li a:active {
        padding-left: 25px;
    }
    
    /* Destacado (Inti Raymi) */
    .movil-destacado {
        color: var(--morado) !important;
        font-weight: 500 !important;
    }
    
    /* WhatsApp */
    .movil-whatsapp-item {
        margin-top: 20px;
        border-top: 2px solid var(--gris-medio);
        padding: 20px;
        border-bottom: none;
    }
    
    .movil-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, var(--verde), var(--verde-oscuro));
        color: var(--blanco);
        text-decoration: none;
        padding: 15px;
        border-radius: 50px;
        font-weight: 500;
        font-size: 16px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    
    .movil-whatsapp:active {
        transform: scale(0.98);
        background: var(--verde-oscuro);
    }
    
    .movil-whatsapp img {
        filter: brightness(0) invert(1);
        width: 20px;
        height: 20px;
    }
    
    /* Overlay */
    .movil-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2540;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .movil-overlay.activo {
        display: block;
        opacity: 1;
    }
    
    /* Ajuste del body */
    body {
        padding-top: 60px;
    }
}

/* Pantallas muy pequeñas */
@media (max-width: 480px) {
    .movil-menu {
        width: 100%;
        max-width: none;
    }
    
    .movil-submenu-lista li a {
        font-size: 13px;
    }
}
.movil-cerrar::before,
.movil-cerrar::after {
    display: none !important;
    content: none !important;
}






/* ======================================== */
/* HERO SECTION - ESTILO CHINA HIGHLIGHTS */
/* ======================================== */

.hero-section {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    height: 100%;
    background-image: url('../img/Machu-Picchu-Portada.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Capa oscura sutil */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Contenido centrado */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--blanco);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    opacity: 0.9;
    color: var(--blanco);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 15px 0;
    display: inline-block;
}

/* ======================================== */
/* BOTÓN - BLANCO CON BORDES REDONDEADOS */
/* ======================================== */

.hero-button {
    display: inline-block;
    background: var(--blanco); /* FONDO BLANCO */
    color: var(--oscuro); /* TEXTO OSCURO */
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--blanco);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* HOVER: FONDO NARANJA, TEXTO BLANCO */
.hero-button:hover {
    background: var(--naranja); /* FONDO NARANJA */
    color: var(--blanco); /* TEXTO BLANCO */
    border-color: var(--naranja);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 136, 56, 0.4);
}

/* Efecto de flecha */
.hero-button::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.hero-button:hover::after {
    transform: translateX(5px);
}

/* ======================================== */
/* ANIMACIONES SUAVES */
/* ======================================== */

.hero-title {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeIn 1.2s ease-out;
}

.hero-button {
    animation: fadeInUp 1.4s ease-out;
}

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

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

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 56px;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        letter-spacing: 3px;
        padding: 12px 0;
    }
    
    .hero-button {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
        padding: 10px 0;
        margin-bottom: 25px;
    }
    
    .hero-button {
        font-size: 14px;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
        padding: 8px 0;
    }
    
    .hero-button {
        font-size: 12px;
        padding: 8px 20px;
    }
}




/* ======================================== */
/* SECCIÓN 4 VALORES - ESTILO CHINA HIGHLIGHTS */
/* ======================================== */

.valores-grid-section {
    width: 100%;
    padding: 60px 0;
    background-color: var(--blanco);
}

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

/* GRID DE 4 COLUMNAS */
.valores-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CADA ÍTEM */
.valor-grid-item {
    text-align: center;
    padding: 0 10px;
}

.valor-grid-titulo {
    font-size: 18px;
    font-weight: 400;
    color: var(--oscuro);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Línea decorativa debajo del título (como China Highlights) */
.valor-grid-titulo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--morado);
    transition: width 0.3s ease;
}

.valor-grid-item:hover .valor-grid-titulo::after {
    width: 50px;
    background-color: var(--naranja);
}

.valor-grid-descripcion {
    font-size: 14px;
    font-weight: 300;
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin: 0;
    max-width: 250px;
    margin: 0 auto;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .valores-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .valores-grid-section {
        padding: 40px 0;
    }
    
    .valores-grid-4 {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .valor-grid-titulo {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .valor-grid-descripcion {
        font-size: 13px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .valores-grid-4 {
        gap: 30px;
    }
    
    .valor-grid-titulo {
        font-size: 15px;
        letter-spacing: 1.5px;
    }
    
    .valor-grid-descripcion {
        font-size: 12px;
    }
}




/* ======================================== */
/* SECCIÓN TOURS POPULARES - 3 TARJETAS */
/* ======================================== */

.tours-populares-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gris-claro) 0%, var(--blanco) 100%);
    position: relative;
    overflow: hidden;
}

/* Fondo decorativo sutil */
.tours-populares-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82,27,125,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.tours-populares-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253,136,56,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.tours-populares-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ENCABEZADO */
.tours-populares-header {
    text-align: center;
    margin-bottom: 50px;
}

.tours-populares-titulo {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--oscuro);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tours-populares-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--morado), var(--naranja));
}

.tours-populares-subtitulo {
    font-size: 18px;
    font-weight: 300;
    color: var(--gris-oscuro);
    letter-spacing: 1px;
}

/* GRID DE 3 TARJETAS */
.tours-populares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* TARJETA INDIVIDUAL */
.tour-card {
    background: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--gris-medio);
}

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--sombra-media);
    border-color: var(--morado);
}

/* IMAGEN DE LA TARJETA */
.tour-card-imagen {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-card-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-imagen img {
    transform: scale(1.1);
}

/* BADGE (ETIQUETA) */
.tour-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--morado);
    color: var(--blanco);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(82,27,125,0.3);
    z-index: 2;
}

.tour-card-badge-lujo {
    background: linear-gradient(135deg, #b8860b, #daa520);
    box-shadow: 0 4px 10px rgba(184,134,11,0.3);
}

.tour-card-badge-aventura {
    background: linear-gradient(135deg, var(--naranja-oscuro), var(--naranja));
    box-shadow: 0 4px 10px rgba(254,75,56,0.3);
}

/* CONTENIDO DE LA TARJETA */
.tour-card-contenido {
    padding: 25px 20px;
}

.tour-card-titulo {
    font-size: 22px;
    font-weight: 400;
    color: var(--oscuro);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.tour-card-descripcion {
    font-size: 15px;
    font-weight: 300;
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* DETALLES DEL TOUR */
.tour-card-detalles {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gris-medio);
}

.tour-card-duracion,
.tour-card-dificultad {
    font-size: 13px;
    font-weight: 300;
    color: var(--gris-oscuro);
    background: var(--gris-claro);
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-card-dificultad {
    background: rgba(82,27,125,0.1);
    color: var(--morado);
}

/* FOOTER DE LA TARJETA */
.tour-card-footer {
    text-align: right;
}

.tour-card-boton {
    display: inline-block;
    color: var(--morado);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.tour-card-boton::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--morado);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.tour-card-boton:hover {
    color: var(--naranja);
}

.tour-card-boton:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--naranja);
}

/* BOTÓN VER TODOS */
.tours-populares-ver-todos {
    text-align: center;
}

.tours-populares-boton-todos {
    display: inline-block;
    background: transparent;
    color: var(--oscuro);
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--morado);
    position: relative;
    overflow: hidden;
}

.tours-populares-boton-todos:hover {
    background: var(--morado);
    color: var(--blanco);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(82,27,125,0.3);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .tours-populares-titulo {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .tours-populares-grid {
        gap: 20px;
    }
    
    .tour-card-imagen {
        height: 200px;
    }
    
    .tour-card-titulo {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .tours-populares-section {
        padding: 60px 0;
    }
    
    .tours-populares-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .tours-populares-titulo {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .tours-populares-subtitulo {
        font-size: 16px;
    }
    
    .tour-card-imagen {
        height: 220px;
    }
    
    .tour-card-boton-todos {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tours-populares-titulo {
        font-size: 24px;
        letter-spacing: 1.5px;
    }
    
    .tour-card-contenido {
        padding: 20px 15px;
    }
    
    .tour-card-titulo {
        font-size: 18px;
    }
    
    .tour-card-descripcion {
        font-size: 14px;
    }
}



/* ======================================== */
/* SECCIÓN DE TESTIMONIOS - TRIPADVISOR */
/* ======================================== */

.testimonios-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gris-claro) 0%, var(--blanco) 100%);
    position: relative;
}

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

/* ENCABEZADO */
.testimonios-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonios-tripadvisor-logo {
    margin-bottom: 20px;
}

.testimonios-tripadvisor-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.testimonios-tripadvisor-logo img:hover {
    filter: brightness(1);
}

.testimonios-titulo {
    font-size: 32px;
    font-weight: 300;
    color: var(--oscuro);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonios-calificacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonios-estrellas {
    color: #00aa6c; /* Color verde de Tripadvisor */
    font-size: 24px;
    letter-spacing: 4px;
}

.testimonios-puntaje {
    font-size: 18px;
    font-weight: 300;
    color: var(--gris-oscuro);
}

.testimonios-ver-mas {
    display: inline-block;
    color: var(--morado);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.testimonios-ver-mas:hover {
    color: var(--naranja);
    border-bottom-color: var(--naranja);
}

/* GRID DE TESTIMONIOS */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* TARJETA DE TESTIMONIO */
.testimonio-card {
    background: var(--blanco);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--sombra-suave);
    transition: all 0.3s ease;
    border: 1px solid var(--gris-medio);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
    border-color: var(--morado);
}

.testimonio-estrellas {
    color: #00aa6c; /* Verde Tripadvisor */
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonio-contenido {
    flex: 1;
    margin-bottom: 20px;
}

.testimonio-texto {
    font-size: 15px;
    font-weight: 300;
    color: var(--oscuro);
    line-height: 1.7;
    font-style: normal;
    margin: 0;
    position: relative;
}

/* Comillas decorativas (opcional) */
.testimonio-texto::before {
    content: '"';
    font-size: 40px;
    color: var(--morado);
    opacity: 0.2;
    position: absolute;
    top: -15px;
    left: -10px;
    font-family: serif;
}

.testimonio-autor {
    border-top: 1px solid var(--gris-medio);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gris-oscuro);
}

.testimonio-autor strong {
    color: var(--morado);
    font-weight: 500;
}

/* FOOTER CON BOTÓN */
.testimonios-footer {
    text-align: center;
    margin-top: 20px;
}

.testimonios-boton {
    display: inline-block;
    background: transparent;
    color: var(--morado);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--morado);
}

.testimonios-boton:hover {
    background: var(--morado);
    color: var(--blanco);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(82,27,125,0.2);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .testimonios-grid {
        gap: 20px;
    }
    
    .testimonio-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .testimonios-section {
        padding: 60px 0;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .testimonios-titulo {
        font-size: 28px;
        letter-spacing: 1.5px;
    }
    
    .testimonios-estrellas {
        font-size: 20px;
    }
    
    .testimonios-puntaje {
        font-size: 16px;
    }
    
    .testimonio-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonios-titulo {
        font-size: 24px;
    }
    
    .testimonios-calificacion {
        flex-direction: column;
        gap: 5px;
    }
    
    .testimonio-autor {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .testimonios-boton {
        padding: 10px 20px;
        font-size: 13px;
    }
}



/* ======================================== */
/* SECCIÓN DE BLOG - CON Fondo Degradado INKA RAINBOW */
/* ======================================== */

.blog-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(82, 27, 125, 0.95) 0%, 
        rgba(106, 44, 158, 0.95) 40%,
        rgba(253, 136, 56, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

/* Efecto de líneas decorativas (opcional) */
.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 20px,
            transparent 20px,
            transparent 40px
        );
    pointer-events: none;
}

/* Círculos decorativos */
.blog-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ENCABEZADO - AHORA CON TEXTO BLANCO */
.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-titulo {
    font-size: 42px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--blanco);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.blog-subtitulo {
    font-size: 24px;
    font-weight: 300;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.blog-subtitulo::before,
.blog-subtitulo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

.blog-subtitulo::before {
    right: 100%;
    margin-right: 20px;
}

.blog-subtitulo::after {
    left: 100%;
    margin-left: 20px;
}

.blog-descripcion {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* GRID DE BLOG - TARJETAS BLANCAS QUE RESALTAN */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* TARJETA DE BLOG - BLANCA CON SOMBRA DESTACADA */
.blog-card {
    background: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* IMAGEN DE LA TARJETA */
.blog-card-imagen {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.blog-card:hover .blog-card-imagen img {
    transform: scale(1.1);
}

/* FECHA EN LA ESQUINA SUPERIOR IZQUIERDA */
.blog-card-fecha {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--blanco);
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(82,27,125,0.2);
    z-index: 2;
}

.blog-card-dia {
    display: block;
    font-size: 28px;
    font-weight: 300;
    color: var(--morado);
    line-height: 1;
    margin-bottom: 3px;
}

.blog-card-mes {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--oscuro);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CONTENIDO DE LA TARJETA */
.blog-card-contenido {
    padding: 25px 20px;
}

.blog-card-categoria {
    font-size: 13px;
    font-weight: 400;
    color: var(--naranja);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.blog-card-titulo {
    font-size: 20px;
    font-weight: 400;
    color: var(--oscuro);
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-descripcion {
    font-size: 15px;
    font-weight: 300;
    color: var(--gris-oscuro);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ENLACE LEER MÁS */
.blog-card-enlace {
    display: inline-block;
    color: var(--morado);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.blog-card-enlace::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--morado);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.blog-card-enlace:hover {
    color: var(--naranja);
}

.blog-card-enlace:hover::after {
    transform: scaleX(1);
    transform-origin: left;
    background: var(--naranja);
}

/* BOTÓN VER TODOS - VERSIÓN CLARA SOBRE FONDO OSCURO */
.blog-footer {
    text-align: center;
}

.blog-boton {
    display: inline-block;
    background: transparent;
    color: var(--blanco);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 0;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--blanco);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.blog-boton:hover {
    background: var(--blanco);
    color: var(--morado);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .blog-titulo {
        font-size: 36px;
        letter-spacing: 6px;
    }
    
    .blog-subtitulo {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .blog-card-imagen {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-titulo {
        font-size: 30px;
        letter-spacing: 4px;
    }
    
    .blog-subtitulo::before,
    .blog-subtitulo::after {
        width: 30px;
    }
    
    .blog-descripcion {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
        gap: 25px;
    }
    
    .blog-card-imagen {
        height: 260px;
    }
    
    .blog-card-titulo {
        font-size: 18px;
    }
    
    .blog-boton {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-titulo {
        font-size: 24px;
        letter-spacing: 3px;
    }
    
    .blog-subtitulo {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .blog-subtitulo::before,
    .blog-subtitulo::after {
        display: none;
    }
    
    .blog-descripcion {
        font-size: 15px;
    }
    
    .blog-card-fecha {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        min-width: 60px;
    }
    
    .blog-card-dia {
        font-size: 24px;
    }
    
    .blog-card-mes {
        font-size: 10px;
    }
    
    .blog-boton {
        padding: 10px 25px;
        font-size: 13px;
        border-width: 1px;
    }
}



/* ======================================== */
/* SECCIÓN DE AFILIACIONES - SOLO ICONOS */
/* ======================================== */

.afiliaciones-section {
    width: 100%;
    padding: 50px 0;
    background-color: var(--blanco);
    position: relative;
}

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

/* GRID DE 6 LOGOS */
.afiliaciones-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columnas en desktop */
    gap: 40px;
    align-items: center;
    justify-items: center;
}

/* CADA ÍTEM */
.afiliacion-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

/* LOGOS */
.afiliacion-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* EFECTO HOVER */
.afiliacion-item:hover .afiliacion-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 768px) {
    .afiliaciones-section {
        padding: 40px 0;
    }
    
    /* EN MÓVIL: 2 COLUMNAS (3 FILAS) */
    .afiliaciones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .afiliacion-logo {
        max-height: 50px;
        filter: grayscale(70%); /* Un poco menos gris en móvil */
        opacity: 0.8;
    }
}

@media (max-width: 480px) {
    .afiliaciones-grid {
        gap: 25px;
    }
    
    .afiliacion-logo {
        max-height: 45px;
    }
}




/* ======================================== */
/* FOOTER - INKA RAINBOW */
/* ======================================== */

.footer {
    width: 100%;
    background: linear-gradient(135deg, var(--oscuro) 0%, #2a2a2a 100%);
    color: var(--blanco);
    position: relative;
    overflow: hidden;
}

/* Efecto decorativo de montañas (opcional) */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--morado), var(--naranja), var(--verde));
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" opacity="0.03"><path fill="%23ffffff" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,170.7C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 2;
}

/* GRID PRINCIPAL - 4 COLUMNAS */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* COLUMNA 1 - LOGO Y DESCRIPCIÓN */
.footer-col-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-height: 55px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Para logo blanco */
}

.footer-descripcion {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

/* ICONOS SOCIALES */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: var(--morado);
    transform: translateY(-5px);
    color: var(--blanco);
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
}

/* TÍTULOS DE COLUMNA */
.footer-titulo {
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: var(--blanco);
    position: relative;
    padding-bottom: 10px;
}

.footer-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--morado), var(--naranja));
}

/* LISTA DE ENLACES */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--naranja);
    font-size: 18px;
}

.footer-link:hover {
    color: var(--blanco);
    transform: translateX(15px);
}

.footer-link:hover::before {
    opacity: 1;
    left: -5px;
}

/* CONTACTO */
.footer-contacto {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contacto-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.footer-contacto-item:hover {
    color: var(--blanco);
    transform: translateX(5px);
}

.footer-contacto-item svg {
    flex-shrink: 0;
    color: var(--naranja);
}

/* BOTÓN WHATSAPP */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--verde), var(--verde-oscuro));
    color: var(--blanco);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-whatsapp:hover {
    background: var(--verde-oscuro);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(35,187,110,0.3);
}

.footer-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* PARTE INFERIOR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.footer-legal-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--naranja);
    transition: width 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--blanco);
}

.footer-legal-link:hover::after {
    width: 100%;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 50px 20px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-link {
        text-align: center;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .footer-link:hover {
        transform: translateX(0);
    }
    
    .footer-contacto-item {
        justify-content: center;
    }
    
    .footer-whatsapp {
        margin: 0 auto;
        display: inline-flex;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-social-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-whatsapp {
        padding: 10px 18px;
        font-size: 13px;
    }
}



/* ======================================== */
/* SECCIÓN SOBRE NOSOTROS */
/* ======================================== */

.sobre-nosotros-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blanco) 0%, var(--gris-claro) 100%);
    position: relative;
    overflow: hidden;
}

.sobre-nosotros-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82,27,125,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.sobre-nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.sobre-nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* COLUMNA IZQUIERDA */
.sobre-nosotros-contenido {
    padding-right: 30px;
}

.sobre-nosotros-titulo {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--morado);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.sobre-nosotros-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--naranja);
}

.sobre-nosotros-destacado {
    font-size: 22px;
    font-weight: 400;
    color: var(--oscuro);
    margin-bottom: 25px;
    line-height: 1.4;
}

.sobre-nosotros-texto {
    font-size: 16px;
    font-weight: 300;
    color: var(--gris-oscuro);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ESTADÍSTICAS */
.sobre-nosotros-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.stat-item {
    text-align: center;
}

.stat-numero {
    display: block;
    font-size: 36px;
    font-weight: 300;
    color: var(--morado);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    font-weight: 300;
    color: var(--gris-oscuro);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BOTÓN */
.sobre-nosotros-boton {
    display: inline-block;
    background: transparent;
    color: var(--morado);
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--morado);
    margin-top: 15px;
}

.sobre-nosotros-boton:hover {
    background: var(--morado);
    color: var(--blanco);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(82,27,125,0.2);
}

/* COLUMNA DERECHA - PREGUNTA */
.sobre-nosotros-pregunta {
    background: var(--blanco);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--sombra-media);
    border: 1px solid var(--gris-medio);
    transition: transform 0.3s ease;
}

.sobre-nosotros-pregunta:hover {
    transform: translateY(-5px);
}

.pregunta-card {
    text-align: left;
}

.pregunta-titulo {
    font-size: 28px;
    font-weight: 400;
    color: var(--oscuro);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.pregunta-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--morado), var(--naranja));
}

.pregunta-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pregunta-lista li {
    font-size: 16px;
    font-weight: 300;
    color: var(--gris-oscuro);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.pregunta-lista li::before {
    content: '✓';
    color: var(--verde);
    font-weight: 400;
    margin-right: 10px;
    font-size: 18px;
}

.pregunta-testimonial {
    background: var(--gris-claro);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--morado);
}

.pregunta-testimonial p {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--oscuro);
    margin-bottom: 10px;
    line-height: 1.6;
}

.pregunta-testimonial span {
    font-size: 14px;
    font-weight: 300;
    color: var(--gris-oscuro);
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media (max-width: 1024px) {
    .sobre-nosotros-grid {
        gap: 30px;
    }
    
    .sobre-nosotros-titulo {
        font-size: 32px;
    }
    
    .sobre-nosotros-destacado {
        font-size: 20px;
    }
    
    .pregunta-titulo {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .sobre-nosotros-section {
        padding: 60px 0;
    }
    
    .sobre-nosotros-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-nosotros-contenido {
        padding-right: 0;
        text-align: center;
    }
    
    .sobre-nosotros-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sobre-nosotros-stats {
        justify-content: center;
    }
    
    .pregunta-card {
        text-align: center;
    }
    
    .pregunta-titulo::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .pregunta-lista li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .sobre-nosotros-titulo {
        font-size: 28px;
    }
    
    .sobre-nosotros-destacado {
        font-size: 18px;
    }
    
    .sobre-nosotros-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sobre-nosotros-boton {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .sobre-nosotros-pregunta {
        padding: 25px;
    }
    
    .pregunta-titulo {
        font-size: 22px;
    }
    
    .pregunta-lista li {
        font-size: 14px;
    }
}














/* ======================================== */
/* TOUR PAGE - VALLE SAGRADO + MACHU PICCHU */
/* ======================================== */

/* ===== VARIABLES ===== */
:root {
    --morado: #521b7d;
    --morado-claro: #6a2c9e;
    --naranja: #fd8838;
    --naranja-oscuro: #fe4b38;
    --verde: #23bb6e;
    --verde-logo: #23bb6e;
    --magenta: #df1061;
    --amarillo: #fdce13;
    --oscuro: #1c1c1c;
    --blanco: #ffffff;
    --gris-claro: #f8f9fa;
    --gris-medio: #e9ecef;
    --gris-oscuro: #495057;
    --sombra-suave: 0 5px 20px rgba(0,0,0,0.05);
    --sombra-media: 0 10px 30px rgba(0,0,0,0.1);
    --sombra-fuerte: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO DEL TOUR ===== */
.tour-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0px;
}

.tour-hero__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.tour-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomHero 20s infinite alternate ease-in-out;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.tour-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(82, 27, 125, 0.7) 0%, 
        rgba(253, 136, 56, 0.5) 100%);
    z-index: 1;
}

.tour-hero__content {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--blanco);
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 30px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.tour-hero__title {
    font-size: 56px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.tour-hero__title .highlight {
    font-weight: 400;
    color: var(--amarillo);
    display: block;
    font-size: 48px;
    margin-top: 5px;
}

.tour-hero__subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ===== INFO RÁPIDA DEL TOUR ===== */
.tour-quick-info {
    background: var(--blanco);
    padding: 40px 0;
    border-bottom: 1px solid var(--gris-medio);
    box-shadow: var(--sombra-suave);
    position: relative;
    z-index: 10;
}

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

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--gris-claro);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--gris-medio);
}

.quick-info-item:hover {
    transform: translateY(-3px);
    border-color: var(--morado);
    box-shadow: var(--sombra-media);
}

.quick-info-item i {
    font-size: 32px;
    color: var(--morado);
    width: 40px;
    text-align: center;
}

.quick-info-text {
    display: flex;
    flex-direction: column;
}

.quick-info-label {
    font-size: 13px;
    font-weight: 300;
    color: var(--gris-oscuro);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-info-value {
    font-size: 18px;
    font-weight: 400;
    color: var(--oscuro);
    line-height: 1.3;
}

/* ===== SECCIÓN ITINERARIO ===== */
.tour-itinerary-section {
    padding: 80px 0;
    background: var(--gris-claro);
}

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

.itinerary-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

/* ===== FORMULARIO DE RESERVA ===== */
.itinerary-form {
    background: var(--blanco);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--sombra-media);
    border: 1px solid var(--gris-medio);
    position: sticky;
    top: 90px;
    height: fit-content;
}

.form-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--morado);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--morado), var(--naranja));
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--oscuro);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gris-medio);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 300;
    color: var(--oscuro);
    background: var(--blanco);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--morado);
    box-shadow: 0 0 0 3px rgba(82, 27, 125, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gris-oscuro);
    opacity: 0.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--morado), var(--morado-claro));
    color: var(--blanco);
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: transparent;
    color: var(--morado);
    border-color: var(--morado);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(82, 27, 125, 0.2);
}

.form-submit i {
    transition: transform 0.3s ease;
}

.form-submit:hover i {
    transform: translateX(5px);
}

/* ===== ACORDEÓN ITINERARIO ===== */
.itinerary-accordion {
    background: var(--blanco);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--sombra-media);
    border: 1px solid var(--gris-medio);
}

.accordion-title {
    font-size: 28px;
    font-weight: 300;
    color: var(--morado);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.accordion-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--morado), var(--naranja));
}

.accordion-item {
    border: 1px solid var(--gris-medio);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--morado);
    box-shadow: var(--sombra-suave);
}

.accordion-header {
    background: var(--gris-claro);
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--gris-medio);
}

.accordion-day {
    background: var(--morado);
    color: var(--blanco);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.accordion-title-small {
    font-size: 16px;
    font-weight: 400;
    color: var(--oscuro);
    flex: 1;
}

.accordion-icon {
    color: var(--morado);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: var(--blanco);
}

.accordion-item.active .accordion-content {
    padding: 25px 20px;
    max-height: 500px;
}

.accordion-content p {
    font-size: 15px;
    font-weight: 300;
    color: var(--gris-oscuro);
    line-height: 1.7;
    margin-bottom: 15px;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.accordion-content li {
    font-size: 15px;
    font-weight: 300;
    color: var(--gris-oscuro);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.accordion-content li::before {
    content: '•';
    color: var(--naranja);
    font-size: 20px;
    position: absolute;
    left: 5px;
    top: -2px;
}

.accordion-content li strong {
    color: var(--morado);
    font-weight: 400;
}

.accordion-content .fa-utensils,
.accordion-content .fa-train,
.accordion-content .fa-check-circle,
.accordion-content .fa-times-circle {
    margin-right: 8px;
}

/* ===== QUÉ INCLUYE / NO INCLUYE / RECOMENDACIONES ===== */
.tour-features-section {
    padding: 80px 0;
    background: var(--gris-claro);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--blanco);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra-media);
    transition: all 0.3s ease;
    border: 1px solid var(--gris-medio);
    
    /* IMPORTANTE: Para que todas las tarjetas tengan la misma altura */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-fuerte);
}

.feature-card-incluye:hover {
    border-color: var(--verde);
}

.feature-card-noincluye:hover {
    border-color: var(--naranja-oscuro);
}

.feature-card-recomendaciones:hover {
    border-color: var(--morado);
}

.feature-header {
    padding: 25px 25px 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--gris-medio);
    /* El header toma su espacio natural */
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-card-incluye .feature-icon {
    background: rgba(35, 187, 110, 0.1);
    color: var(--verde);
}

.feature-card-noincluye .feature-icon {
    background: rgba(254, 75, 56, 0.1);
    color: var(--naranja-oscuro);
}

.feature-card-recomendaciones .feature-icon {
    background: rgba(82, 27, 125, 0.1);
    color: var(--morado);
}

.feature-title {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.feature-card-incluye .feature-title {
    color: var(--verde);
}

.feature-card-noincluye .feature-title {
    color: var(--naranja-oscuro);
}

.feature-card-recomendaciones .feature-title {
    color: var(--morado);
}

.feature-content {
    padding: 25px;
    /* IMPORTANTE: El contenido se estira para ocupar el espacio restante */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    /* La lista ocupa todo el espacio disponible */
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 300;
    color: var(--oscuro);
    line-height: 1.5;
}

.feature-list li i {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-list-check li i {
    color: var(--verde);
}

.feature-list-times li i {
    color: var(--naranja-oscuro);
}

.feature-list-recomendaciones li i {
    color: var(--morado);
    width: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .feature-header {
        padding: 20px 20px 10px 20px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-content {
        padding: 20px;
    }
}

/* Responsive para la nueva sección */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .feature-header {
        padding: 20px 20px 10px 20px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-content {
        padding: 20px;
    }
}



/* ===== GALERÍA CARRUSEL ===== */
.tour-gallery {
    padding: 80px 0;
    background: var(--blanco);
}

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

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    color: var(--oscuro);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--morado), var(--naranja));
}

.highlight-text {
    color: var(--morado);
    font-weight: 400;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--sombra-fuerte);
}

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

.carousel-slide {
    flex: 0 0 100%;
    height: 500px;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--morado); /* CAMBIADO a morado */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--blanco); /* CAMBIADO a blanco para contraste */
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--morado-claro); /* CAMBIADO a morado claro */
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(82, 27, 125, 0.4);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.3);
}

.dot.active {
    background: var(--morado);
    transform: scale(1.2);
    border-color: var(--blanco);
}

/* ===== TOURS RELACIONADOS ===== */
.related-tours {
    padding: 80px 0;
    background: var(--gris-claro);
}

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

.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.related-tour-card {
    background: var(--blanco);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    transition: all 0.4s ease;
    border: 1px solid var(--gris-medio);
}

.related-tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sombra-fuerte);
    border-color: var(--morado);
}

.related-tour-image {
    height: 250px;
    overflow: hidden;
}

.related-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.related-tour-content {
    padding: 25px 20px;
    text-align: center;
}

.related-tour-content h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--oscuro);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.related-tour-content p {
    font-size: 18px;
    font-weight: 300;
    color: var(--morado);
    margin-bottom: 20px;
}

.related-tour-btn {
    display: inline-block;
    background: transparent;
    color: var(--morado);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--morado);
}

.related-tour-btn:hover {
    background: var(--morado);
    color: var(--blanco);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(82, 27, 125, 0.2);
}

/* ===== CERTIFICACIONES ===== */
.certifications {
    padding: 60px 0;
    background: var(--blanco);
    border-top: 1px solid var(--gris-medio);
}

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

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.certification-item {
    position: relative;
    width: 120px;
    height: 80px;
    cursor: pointer;
}

.cert-gris,
.cert-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.cert-gris {
    opacity: 0.5;
    filter: grayscale(100%);
}

.cert-color {
    opacity: 0;
}

.certification-item:hover .cert-gris {
    opacity: 0;
}

.certification-item:hover .cert-color {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .tour-hero__title {
        font-size: 48px;
    }
    
    .tour-hero__title .highlight {
        font-size: 40px;
    }
    
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .itinerary-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .itinerary-form {
        position: static;
        order: 2;
    }
    
    .itinerary-accordion {
        order: 1;
    }
    
    .related-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .tour-hero__title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .tour-hero__title .highlight {
        font-size: 30px;
    }
    
    .tour-hero__subtitle {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .tour-hero__content {
        bottom: 50px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .quick-info-item {
        padding: 12px 15px;
    }
    
    .itinerary-form,
    .itinerary-accordion {
        padding: 25px;
    }
    
    .form-title,
    .accordion-title {
        font-size: 24px;
    }
    
    .accordion-header {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .accordion-day {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .accordion-title-small {
        font-size: 15px;
        width: 100%;
        order: 3;
    }
    
    .carousel-slide {
        height: 350px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .related-tours-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .tour-hero__title {
        font-size: 28px;
    }
    
    .tour-hero__title .highlight {
        font-size: 24px;
    }
    
    .tour-hero__subtitle {
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .carousel-slide {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .related-tour-image {
        height: 200px;
    }
    
    .related-tour-content h3 {
        font-size: 18px;
    }
    
    .certification-item {
        width: 100px;
        height: 70px;
    }
}