* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #ffffff;
    --primary-light: #f5f5f5;
    --accent-gold: #ff9933;
    --accent-gold-light: #ffaa55;
    --accent-turquoise: #02A19C;
    --accent-magenta: #ff0080;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    color: #333333;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background-color: #02A19C;
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    width: 100%;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-contact span {
    margin-right: 20px;
    font-size: 14px;
    color: #ffffff;
}

.top-bar-contact i {
    margin-right: 6px;
    color: #ff9933;
}

.top-bar-social a {
    color: #ffffff;
    margin-left: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.top-bar-social a:hover {
    color: #ff9933;
}

/* Estilos para los iconos PNG */
.social-icon {
    width: auto;  /* Ajusta según el tamaño deseado */
    height: 16px; /* Ajusta según el tamaño deseado */
    transition: all 0.3s ease;
    display: block;
}

/* Efecto hover para las imágenes PNG */
.top-bar-social a:hover .social-icon {
    opacity: 0.8;
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(68%) sepia(37%) saturate(1239%) hue-rotate(335deg) brightness(102%) contrast(101%);
}

/* Responsive para top bar */
@media (max-width: 768px) {
    .top-bar-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .top-bar-contact span {
        margin-right: 12px;
        font-size: 12px;
    }
    
    .top-bar-social a {
        margin-left: 12px;
        font-size: 14px;
    }
}

/* ========== MAIN NAVIGATION ========== */
.main-nav {
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: #333333;
    font-family: 'Arial', sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #ff9933;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #02A19C;
}

.btn-book {
    background-color: #02A19C;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

.btn-book:hover {
    background-color: #ff0080;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== DROPDOWN MEGA MENÚ ========== */
.dropdown-trigger {
    position: static;
}

.dropdown-trigger > a i {
    font-size: 12px;
    margin-left: 6px;
    transition: var(--transition);
}

.dropdown-trigger:hover > a i {
    transform: rotate(180deg);
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid #ff9933;
}

.dropdown-trigger:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: stretch;
}

/* ========== COLUMNA IZQUIERDA - CATEGORÍAS ========== */
.dropdown-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
    color: #333333;
    font-family: 'Arial', sans-serif;
}

.category-item i {
    width: 20px;
    color: #ff9933;
    font-size: 1rem;
    transition: var(--transition);
}

.category-item span {
    flex: 1;
    font-size: 0.9rem;
}

.category-item:hover {
    background-color: #02A19C;
    color: #ffffff;
    transform: translateX(5px);
}

.category-item:hover i {
    color: #ffffff;
}

.category-item.active {
    background-color: #ff9933;
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.category-item.active i {
    color: #ffffff;
}

/* ========== COLUMNA DERECHA - GRID DE TOURS ========== */
.dropdown-grid {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 10px;
    min-height: 400px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    gap: 20px;
}

.tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #02A19C;
}

.tour-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8f9fa;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}

.tour-card-title {
    padding: 12px 10px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333333;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Arial', sans-serif;
}

.loading-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
    color: #ff9933;
    font-size: 1.2rem;
}

/* ========== BOTONES DEL TOP BAR ========== */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-btn-top {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.language-btn-top i {
    font-size: 12px;
    color: #ff9933;
}

.language-btn-top:hover {
    background: #ff9933;
    border-color: #ff9933;
}

.language-dropdown-menu-top {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
}

.language-dropdown-menu-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu-top a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
    font-family: 'Arial', sans-serif;
}

.language-dropdown-menu-top a:hover {
    background-color: #02A19C;
    color: #ffffff;
    padding-left: 20px;
}

.language-dropdown-menu-top a i {
    width: 20px;
    color: #ff9933;
}

.language-dropdown-menu-top a:hover i {
    color: #ffffff;
}

/* ========== BOTONES DE NAVEGACIÓN ========== */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-private {
    background-color: #ff9933;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.btn-private:hover {
    background-color: #da7817;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========== SCROLL BEHAVIOR ========== */
.top-bar {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.top-bar-hidden {
    transform: translateY(-100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.main-nav {
    transition: padding 0.3s ease;
}

.main-nav.nav-scrolled {
    padding: 8px 0 !important;
}

.main-nav.nav-scrolled .logo-img {
    height: 40px;
    transition: height 0.3s ease;
}

.main-nav.nav-scrolled .nav-links a {
    font-size: 14px;
}

.main-nav.nav-scrolled .btn-book,
.main-nav.nav-scrolled .btn-private {
    padding: 6px 18px;
    font-size: 13px;
}

/* ========== FIX PARA STICKY MENU ========== */
#desktop-menu-container {
    display: block;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #ffffff;
}

.main-nav {
    position: relative !important;
    top: 0 !important;
    background-color: #ffffff;
}

/* ========== MEDIA QUERY - PANTALLAS MENORES A 1200px ========== */
@media (max-width: 1199px) {
    .dropdown-trigger {
        display: none !important;
    }
    
    .top-bar {
        display: none !important;
    }
    
    .logo {
        display: none !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .btn-book {
        display: none !important;
    }
    
    .nav-container {
        justify-content: center;
        min-height: 0;
        padding: 0;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .mega-dropdown-content {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .mega-dropdown-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .dropdown-categories {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 8px;
    }
    
    .dropdown-grid {
        max-height: 400px;
    }
    
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .tours-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
}

/* ========== NUEVO MENÚ RESPONSIVE ========== */
.responsive-header {
    display: none;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
}

.responsive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.responsive-logo {
    flex-shrink: 0;
}

.responsive-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.responsive-logo-img:hover {
    transform: scale(1.02);
}

.responsive-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-btn {
    background: rgba(2, 161, 156, 0.1);
    border: 1px solid #02A19C;
    color: #02A19C;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.language-btn i {
    font-size: 14px;
    color: #ff9933;
}

.language-btn:hover {
    background: #02A19C;
    color: #ffffff;
}

.language-btn:hover i {
    color: #ffffff;
}

.language-dropdown {
    position: relative;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e0e0e0;
}

.language-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
}

.language-dropdown-menu a:hover {
    background-color: #02A19C;
    color: #ffffff;
    padding-left: 20px;
}

.language-dropdown-menu a i {
    width: 20px;
    color: #ff9933;
}

.language-dropdown-menu a:hover i {
    color: #ffffff;
}

.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 35px;
    height: 35px;
    margin-left: -10px; /* Mueve a la izquierda */
    /* o */
    margin-right: 20px; /* Empuja a la derecha, dejando espacio a la izquierda */
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1003;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1004;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    background: linear-gradient(135deg, #02A19C 0%, #ff0080 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
    color: white;
}

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.sidebar-nav-item {
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.sidebar-nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: #ff9933;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #ff9933;
}

.dropdown-arrow.rotated {
    transform: rotate(90deg);
}

.sidebar-submenu {
    display: none;
    padding-left: 20px;
    margin-bottom: 10px;
}

.sidebar-submenu.active {
    display: block;
}

/* Mostrar menú responsive en móvil */
@media (max-width: 1199px) {
    .responsive-header {
        display: block;
    }
    
    .top-bar,
    .main-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .responsive-container {
        padding: 10px 16px;
    }
    
    .responsive-logo-img {
        height: 45px;
    }
    
    .language-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-btn span {
        display: none;
    }
    
    .language-btn i:first-child {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .sidebar-menu {
        width: 100%;
        max-width: 100%;
    }
}

/* ========== ESTILOS DEL SUBMENÚ ========== */
.submenu-category {
    margin-top: 15px;
    margin-bottom: 5px;
}

.submenu-category:first-child {
    margin-top: 0;
}

.submenu-category-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff9933;
    padding: 8px 0 5px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.submenu-category-title i {
    display: none;
}

.sidebar-submenu a {
    display: block;
    padding: 8px 0 8px 15px;
    color: #666666;
    text-decoration: none;
    font-size: 0.85rem;
    position: relative;
    font-family: 'Arial', sans-serif;
}

.sidebar-submenu a i {
    display: none;
}

.sidebar-submenu a::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #ff9933;
    font-size: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-submenu a:hover {
    color: #02A19C;
}

.sidebar-nav-link i {
    display: none;
}

.dropdown-arrow {
    display: inline-block !important;
}

.sidebar-nav-link span {
    display: flex;
    align-items: center;
}

.sidebar-nav-link {
    justify-content: flex-start;
}

.sidebar-nav-link.has-dropdown {
    justify-content: space-between;
}

/* ========== HERO SECTION CON VIDEO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ========== MEDIA QUERIES PARA MÓVILES ========== */

/* Tablets y móviles grandes (max-width: 768px) */
@media (max-width: 768px) {
.hero {
    position: top;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}
}

/* Móviles pequeños (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        position: top;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* ========== OPCIONAL: MEJORAS PARA MÓVILES ========== */

/* Para móviles con pantallas muy pequeñas */
@media (max-width: 360px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Para orientación horizontal en móviles */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* ========== PARA AHORRAR BATERÍA EN MÓVILES ========== */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: linear-gradient(135deg, rgba(2, 161, 156, 0.9), rgba(255, 0, 128, 0.8)), 
                    url('/img/hero-background-mobile.jpg') center/cover no-repeat;
    }
}

/* ========== TOURS MÁS VENDIDOS ========== */
.featured-tours {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #02A19C;
    font-weight: 600;
    margin-bottom: 15px;
    background: rgba(2, 161, 156, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
    font-family: 'Arial', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 15px;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.section-title span {
    color: #ff9933;
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff9933, transparent);
}

.section-subtitle {
    font-size: 1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.tours-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.featured-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    /* NUEVO: flex column para alinear botones al fondo */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: #02A19C;
}

.card-image {
    position: relative;
    overflow: hidden;
    /* ALTURA AUMENTADA: de 250px a 320px para fotos 600x800 */
    height: 320px;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9933;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 161, 156, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-card:hover .card-overlay {
    opacity: 1;
}

.card-link {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid #ff9933;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.card-link:hover {
    background: #ff9933;
    color: #ffffff;
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    /* NUEVO: flex-grow para que ocupe espacio y empuje el botón hacia abajo */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-rating {
    margin-bottom: 12px;
}

.card-rating i {
    color: #ffc107;
    font-size: 0.85rem;
    margin-right: 2px;
}

.card-rating span {
    font-size: 0.75rem;
    color: #999999;
    margin-left: 8px;
    font-family: 'Arial', sans-serif;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333333;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.card-content p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.card-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #666666;
    font-family: 'Arial', sans-serif;
}

.card-duration i {
    color: #ff9933;
}

.card-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-old {
    font-size: 0.8rem;
    color: #999999;
    text-decoration: line-through;
    font-family: 'Arial', sans-serif;
}

.price-new {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff9933;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

/* NUEVO: contenedor para el botón con margen superior automático */
.btn-card-wrapper {
    margin-top: auto;
    padding-top: 10px;
}

.btn-card {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: transparent;
    border: 2px solid #02A19C;
    color: #02A19C;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
}

.btn-card:hover {
    background: #ff0080;
    border-color: #ff0080;
    color: #ffffff;
    transform: translateY(-2px);
}

.section-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff9933;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover {
    background: #02A19C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .tours-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .featured-tours {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tours-grid-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-image {
        height: 280px; /* ligeramente más baja en móvil pero sigue siendo alta */
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #ffffff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e0e0e0;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, #02A19C 0%, #008080 100%);
    color: #ffffff;
}

.contact-tag {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff9933;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.contact-info h2 span {
    color: #ff9933;
    position: relative;
}

.contact-info > p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.detail-icon i {
    font-size: 1.3rem;
    color: #ff9933;
}

.detail-item:hover .detail-icon {
    background: #ff9933;
    transform: scale(1.05);
}

.detail-item:hover .detail-icon i {
    color: #ffffff;
}

.detail-text h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #ff9933;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.detail-text p {
    font-size: 0.85rem;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

.contact-form-wrapper {
    padding: 40px;
    background: #ffffff;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    color: #333333;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.form-group label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: #999999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 5px;
    font-family: 'Arial', sans-serif;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff9933;
    font-size: 1rem;
    z-index: 1;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: 0;
    font-size: 0.7rem;
    background: #ffffff;
    color: #02A19C;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #02A19C;
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 161, 156, 0.1);
}

.form-group select option {
    background: #ffffff;
    color: #333333;
}

.btn-submit {
    width: 100%;
    background: #ff9933;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    background: #02A19C;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.85rem;
    display: none;
    font-family: 'Arial', sans-serif;
}

.form-message.success {
    display: block;
    background: rgba(2, 161, 156, 0.1);
    color: #02A19C;
    border: 1px solid #02A19C;
}

.form-message.error {
    display: block;
    background: rgba(255, 0, 128, 0.1);
    color: #ff0080;
    border: 1px solid #ff0080;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-details {
        align-items: left;
    }
    
    .detail-item {
        justify-content: left;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
}











/* ========== TESTIMONIOS ========== */
.testimonials-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0px;
    margin: 50px 0 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    color: #333333;
}

.carousel-btn:hover {
    background: #ff9933;
    color: #ffffff;
    border-color: #ff9933;
    transform: scale(1.05);
}

.carousel-btn i {
    font-size: 1.2rem;
}

.testimonials-track-container {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 24px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #02A19C;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar i {
    font-size: 3rem;
    color: #ff9933;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333333;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.testimonial-rating {
    margin-bottom: 5px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.8rem;
    margin-right: 2px;
}

.testimonial-info span {
    font-size: 0.7rem;
    color: #999999;
    font-family: 'Arial', sans-serif;
}

.tripadvisor-logo {
    margin-left: auto;
}

.tripadvisor-logo i {
    font-size: 1.5rem;
    color: #34E0A1;
}

.testimonial-title {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 12px;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.testimonial-footer {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.7rem;
    color: #999999;
    font-family: 'Arial', sans-serif;
}

.testimonial-footer i {
    margin-right: 5px;
    color: #ff9933;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: #ff9933;
}

.tripadvisor-badge {
    text-align: center;
    margin-top: 20px;
}

.btn-tripadvisor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #34E0A1;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-tripadvisor:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: #2bcb8e;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}











/* ========== BLOG ========== */
.blog-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: #02A19C;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9933;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    font-size: 0.7rem;
    color: #999999;
    font-family: 'Arial', sans-serif;
}

.blog-meta i {
    margin-right: 5px;
    color: #ff9933;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333333;
    line-height: 1.4;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.blog-content p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Arial', sans-serif;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #f8f9fa;
    color: #666666;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.tag:hover {
    background: #ff9933;
    color: #ffffff;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff9933;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.blog-link:hover {
    gap: 12px;
    color: #02A19C;
}

.blog-footer {
    text-align: center;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-image {
        height: 200px;
    }
}









/* ========== CATEGORÍAS ========== */
.categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff9933;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: #02A19C;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(2, 161, 156, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2rem;
    color: #ff9933;
}

.category-card:hover .category-icon i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.category-info {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.category-count {
    display: inline-block;
    background: #f8f9fa;
    color: #ff9933;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.category-preview {
    margin-bottom: 20px;
    min-height: 80px;
    flex: 1;
}

.preview-item {
    font-size: 0.7rem;
    color: #666666;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Arial', sans-serif;
}

.preview-item i {
    font-size: 0.6rem;
    color: #ff9933;
}

.preview-more {
    font-size: 0.65rem;
    color: #ff9933;
    font-weight: 600;
    margin-top: 5px;
    font-family: 'Arial', sans-serif;
}

.btn-category {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 1px solid #02A19C;
    color: #02A19C;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    margin-top: auto;
    flex-shrink: 0;
}

.btn-category span {
    transition: transform 0.3s ease;
}

.category-card:hover .btn-category {
    background: #02A19C;
    color: #ffffff;
}

.category-card:hover .btn-category span {
    transform: translateX(5px);
}

@media (max-width: 1199px) and (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-card {
        padding: 20px;
    }
}












/* ========== FEATURES ========== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    background: rgba(2, 161, 156, 0.05);
    border-radius: 24px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(2, 161, 156, 0.1);
    border-color: #02A19C;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 153, 51, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #ff9933;
}

.feature-card:hover .feature-icon {
    background: #ff9933;
    transform: scale(1.05);
}

.feature-card:hover .feature-icon i {
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 15px;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 25px auto;
    }
}

/* ========== FOOTER - COLORES PERSONALIZADOS ========== */

/* ========== DECORACIÓN SUPERIOR DEL FOOTER ========== */
.footer {
    background: #02A19C;
    color: #ffffff;
    padding: 0 0 0; /* Quitamos el padding superior */
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Contenedor de la imagen decorativa */
.footer-top-decoration {
    width: 100%;
    background: #ffffff;
    height: 300px; /* Altura de tu imagen */
    overflow: hidden;
    line-height: 0; /* Elimina espacio extra */
    position: relative;
    z-index: 1; /* Encima del footer */
}

.footer-decoration-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cubre todo el ancho */
    display: block;
    vertical-align: bottom; /* Elimina espacio debajo */
    /* Si la imagen es más ancha que alta y quieres que se vea completa: */
    /* object-fit: contain; */
    /* object-position: center bottom; */
}

/* Ajuste del contenedor principal */
.footer .container {
    padding-top: 40px; /* Espacio después de la imagen */
    position: relative;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid de 4 columnas */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Columna 1 - Logo y descripción */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

/* Redes Sociales */
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: #ffffff;
    color: #ff0080;
    transform: translateY(-3px);
}

/* Títulos de columnas */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #ffffff;
    text-align: left;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

/* Lista de enlaces */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    text-align: left;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    font-family: 'Arial', sans-serif;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #ff0080;
}

.footer-links a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: #ffffff;
    transform: translateX(3px);
}

/* Contacto */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    text-align: left;
    align-items: flex-start;
}

.footer-contact li i {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: #ff0080;
    color: #ffffff;
}

.footer-contact li div {
    flex: 1;
    text-align: left;
}

.footer-contact li strong {
    display: block;
    font-size: 0.75rem;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 600;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
    display: block;
    text-decoration: none;
    opacity: 0.85;
    font-family: 'Arial', sans-serif;
}

.footer-contact li a:hover {
    color: #ff9933;
    opacity: 1;
}

.footer-contact li span {
    margin-bottom: 2px;
}

/* Newsletter y pagos */
.newsletter-text {
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: left;
    opacity: 0.9;
    font-family: 'Arial', sans-serif;
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods p {
    font-size: 0.75rem;
    margin-bottom: 12px;
    color: #ff9933;
    text-align: left;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.payment-icons i {
    font-size: 1.8rem;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #ff0080;
    opacity: 1;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-content p {
    font-size: 0.7rem;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.7rem;
    color: #ffffff;
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.footer-bottom-links a:hover {
    color: #ff9933;
    opacity: 1;
}

/* ========== RESPONSIVE - ACTUALIZADO CON ALINEACIÓN IZQUIERDA ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer .container {
        padding-top: 25px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    /* ===== TODOS LOS TEXTOS A LA IZQUIERDA ===== */
    .footer-col {
        text-align: left !important;
        padding: 0 10px;
    }
    
    .footer-logo {
        text-align: left !important;
    }
    
    .footer-description {
        text-align: left !important;
    }
    
    .footer-social {
        justify-content: flex-start !important;
    }
    
    .footer-col h4 {
        text-align: left !important;
    }
    
    .footer-col h4::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .footer-links li {
        text-align: left !important;
    }
    
    .footer-links a {
        justify-content: flex-start !important;
    }
    
    /* Contacto - mantener iconos a la izquierda */
    .footer-contact li {
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .footer-contact li i {
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    .footer-contact li div {
        text-align: left !important;
    }
    
    /* Newsletter y pagos a la izquierda */
    .newsletter-text {
        text-align: left !important;
    }
    
    .payment-methods p {
        text-align: left !important;
    }
    
    .payment-icons {
        justify-content: flex-start !important;
    }
    
    /* Bottom bar a la izquierda */
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .footer-bottom-content p {
        text-align: left !important;
    }
    
    .footer-bottom-links {
        justify-content: flex-start !important;
    }
    
    /* Separadores entre columnas */
    .footer-col:not(:last-child) {
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 25px;
    }
    
    .footer-col {
        padding: 0 5px;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-contact li span,
    .footer-contact li a {
        font-size: 0.7rem;
    }
    
    .payment-icons {
        gap: 12px;
    }
    
    .payment-icons i {
        font-size: 1.5rem;
    }
    
    .footer-bottom-links {
        gap: 15px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff9f0 0%, #f7ede0 100%);
}

.about-container {
    max-width: 1280px;
    margin: 50px auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c27e3a;
    font-weight: 600;
    background: #faeedf;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-family: 'Arial', sans-serif;
}

.section-header h1 {
    font-size: 3rem;
    margin-top: 1rem;
    font-weight: 700;
    color: #2c3e2f;
    line-height: 1.2;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.header-decoration {
    width: 80px;
    height: 4px;
    background: #c27e3a;
    margin: 1.5rem auto 0;
    border-radius: 4px;
}

.welcome-text {
    max-width: 950px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #2c2b28;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.welcome-text p {
    margin-bottom: 1.2rem;
}

.welcome-text strong {
    color: #b55b1a;
    font-weight: 700;
}

.beliefs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.belief-card {
    background: white;
    flex: 1;
    min-width: 250px;
    padding: 2rem 1.5rem;
    border-radius: 28px;
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(194, 126, 58, 0.15);
}

.belief-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 36px -12px rgba(0, 0, 0, 0.15);
    border-color: #c27e3a40;
}

.card-icon {
    font-size: 2.8rem;
    color: #c27e3a;
    margin-bottom: 1rem;
}

.belief-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e2f;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.belief-card p {
    color: #5a5a57;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.promise-team {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.promise-box, .team-box {
    flex: 1;
    background: white;
    padding: 2rem 2rem;
    border-radius: 32px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    transition: 0.2s;
}

.promise-box i, .team-box i {
    font-size: 2rem;
    color: #c27e3a;
    margin-bottom: 1rem;
    display: inline-block;
}

.promise-box h2, .team-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e2f;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.promise-box p, .team-box p {
    color: #3e3c38;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.promise-box ul {
    list-style: none;
    margin-top: 1rem;
}

.promise-box li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.promise-box li i {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #c27e3a;
}

.team-quote {
    font-style: italic;
    background: #fef3e8;
    padding: 0.8rem 1rem;
    border-radius: 24px;
    margin-top: 1rem;
    font-weight: 500;
}

.authorization-banner {
    background: linear-gradient(105deg, #2c3e2f 0%, #1f2b1f 100%);
    color: white;
    padding: 2rem 2rem;
    border-radius: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.authorization-banner i {
    font-size: 3.5rem;
    color: #e6bc8b;
}

.auth-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.auth-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.auth-text strong {
    color: #f5cb9b;
}

.cta-about {
    text-align: center;
    background: #ffffffdd;
    backdrop-filter: blur(2px);
    padding: 3rem 2rem;
    border-radius: 48px;
    border: 1px solid #e6d5bf;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e2f;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.cta-about p {
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 1.8rem auto;
    color: #4a4a46;
    font-family: 'Arial', sans-serif;
}

.cta-button {
    background: #c27e3a;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 5px 12px rgba(194, 126, 58, 0.3);
    font-family: 'Arial', sans-serif;
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-button:hover {
    background: #a5642a;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(194, 126, 58, 0.4);
}

@media (max-width: 800px) {
    .section-header h1 {
        font-size: 2.2rem;
    }

    .beliefs-grid, .promise-team {
        flex-direction: column;
    }

    .authorization-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-about h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }

    .about-section {
        padding: 3rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .promise-box h2, .team-box h2 {
        font-size: 1.4rem;
    }

    .belief-card h3 {
        font-size: 1.3rem;
    }
}











/* ========== CONTACT SECTION (custom form) ========== */
.contact-section {
    padding: 2rem;
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section2 {
    padding: 2rem;
    min-height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container-wide {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-form-col {
    flex: 1.5;
    min-width: 0;
}

.contact-info-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-badge {
    background: #ff9933;
    padding: 0.25rem 0.8rem;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.contact-badge i {
    color: #ffffff;
}

.contact-header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #2d3e2b;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.contact-header h1 span {
    color: #ff9933;
}

.contact-header p {
    font-size: 0.8rem;
    color: #6b5a45;
    font-family: 'Arial', sans-serif;
}

.tour-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-card {
    background: white;
    border-radius: 1.2rem;
    padding: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0e0ce;
}

.form-card.compact {
    padding: 0.8rem;
}

.radio-group-horizontal {
    display: flex;
    gap: 0.6rem;
}

.radio-chip {
    flex: 1;
    cursor: pointer;
}

.radio-chip input {
    display: none;
}

.radio-chip span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem;
    background: #f5ede2;
    border-radius: 3rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #5c401f;
    transition: all 0.2s;
    font-family: 'Arial', sans-serif;
}

.radio-chip input:checked + span {
    background: #02A19C;
    color: #ffffff;
}

.section-header-collapsible {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.2rem 0;
}

.section-header-collapsible i:first-child {
    color: #02A19C;
    font-size: 1rem;
}

.section-header-collapsible h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2f4d2d;
    flex: 1;
    font-family: 'Arial', sans-serif;
}

.toggle-icon {
    font-size: 0.8rem;
    color: #02A19C;
    transition: transform 0.2s;
}

.section-header-collapsible.open .toggle-icon {
    transform: rotate(180deg);
}

.collapsible-content {
    display: none;
    margin-top: 0.8rem;
}

.collapsible-content.show {
    display: block;
}

/* ============================================
   PACKAGE GROUP EN 4 COLUMNAS CON CUADROS
   ============================================ */
.package-group {
    margin-bottom: 1rem;
    background: #faf6f0;
    border-radius: 1rem;
    padding: 0.6rem 0.8rem 0.8rem;
    border: 1px solid #e8ddd0;
    transition: all 0.2s ease;
}

.package-group:hover {
    border-color: #02A19C;
    box-shadow: 0 2px 8px rgba(2, 161, 156, 0.1);
}

.group-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #ff0080;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid rgba(255, 0, 128, 0.15);
}

.group-title i {
    font-size: 0.8rem;
    color: #ff0080;
}

.package-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
}

.tag-option {
    cursor: pointer;
    background: #ffffff;
    padding: 0.4rem 0.5rem;
    border-radius: 0.6rem;
    font-size: 0.65rem;
    font-weight: 500;
    color: #5c401f;
    transition: all 0.2s ease;
    font-family: 'Arial', sans-serif;
    text-align: center;
    border: 1.5px solid #e8ddd0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 32px;
}

.tag-option:hover {
    border-color: #02A19C;
    background: #f0f8f7;
    transform: translateY(-1px);
}

.tag-option input {
    display: none;
}

.tag-option:has(input:checked) {
    background: #02A19C;
    color: #ffffff;
    border-color: #02A19C;
    box-shadow: 0 2px 8px rgba(2, 161, 156, 0.25);
}

/* ============================================
   DÍAS PERSONALIZADOS - VERSIÓN MEJORADA
   ============================================ */

.days-control-compact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
    background: #faf6f0;
    padding: 0.6rem 0.8rem;
    border-radius: 1rem;
    border: 1px solid #e8ddd0;
}

.label-icon {
    font-size: 0.8rem;
    color: #02A19C;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.day-buttons-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    flex: 1;
}

.day-btn-mini {
    background: #ffffff;
    border: 1.5px solid #e8ddd0;
    padding: 0.3rem 0.8rem;
    border-radius: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    color: #5c401f;
    transition: all 0.2s;
    font-family: 'Arial', sans-serif;
    min-width: 38px;
    text-align: center;
}

.day-btn-mini:hover {
    border-color: #02A19C;
    background: #f0f8f7;
    transform: translateY(-1px);
}

.day-btn-mini.active {
    background: #02A19C;
    color: #ffffff;
    border-color: #02A19C;
    box-shadow: 0 2px 8px rgba(2, 161, 156, 0.25);
}

/* ============================================
   DÍAS CONTAINER - CUADROS MEJORADOS
   ============================================ */

.days-container-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.day-item-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.5rem 0.6rem;
    border-radius: 0.8rem;
    border: 1.5px solid #e8ddd0;
    transition: all 0.2s ease;
}

.day-item-compact:hover {
    border-color: #02A19C;
    box-shadow: 0 2px 8px rgba(2, 161, 156, 0.08);
}

.day-number {
    font-weight: 700;
    background: #ff9933;
    padding: 0.2rem 0.6rem;
    border-radius: 0.6rem;
    font-size: 0.65rem;
    color: #ffffff;
    font-family: 'Arial Black', 'Arial', sans-serif;
    white-space: nowrap;
    min-width: 32px;
    text-align: center;
}

.day-select-compact {
    flex: 1;
    padding: 0.35rem 0.5rem;
    border-radius: 0.6rem;
    border: 1px solid #e2cfb5;
    background: white;
    font-size: 0.7rem;
    font-family: 'Arial', sans-serif;
    min-width: 0;
    width: 100%;
}

.day-select-compact:focus {
    outline: none;
    border-color: #02A19C;
    box-shadow: 0 0 0 2px rgba(2, 161, 156, 0.15);
}

.note-mini {
    font-size: 0.65rem;
    color: #ff0080;
    margin-top: 0.6rem;
    background: #fff0e0;
    padding: 0.3rem 0.6rem;
    border-radius: 2rem;
    display: inline-block;
    font-family: 'Arial', sans-serif;
}

/* ============================================
   FIN DÍAS PERSONALIZADOS
   ============================================ */

.compact-row {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.compact-row input, .compact-row select {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border-radius: 2rem;
    border: 1px solid #e2cfb5;
    background: white;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
}

.compact-row input:focus, .compact-row select:focus, textarea:focus {
    outline: none;
    border-color: #02A19C;
    box-shadow: 0 0 0 2px rgba(2, 161, 156, 0.2);
}

textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 1rem;
    border: 1px solid #e2cfb5;
    background: white;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
    resize: vertical;
}

.submit-btn-compact {
    background: #ff9933;
    color: #ffffff;
    border: none;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.2s;
    font-family: 'Arial', sans-serif;
}

.submit-btn-compact:hover {
    background: #e07a1a;
    transform: scale(1.01);
}

.disclaimer-compact {
    text-align: center;
    font-size: 0.65rem;
    color: #9a8b72;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-family: 'Arial', sans-serif;
}

.info-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0e0ce;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff9933;
}

.info-card-header i {
    font-size: 1.2rem;
    color: #02A19C;
}

.info-card-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2f4d2d;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.info-card-content p {
    font-size: 0.75rem;
    color: #5c5a4e;
    margin-bottom: 0.4rem;
    word-break: break-word;
    font-family: 'Arial', sans-serif;
}

.info-card-content span, .info-card-content a {
    color: #02A19C;
    font-weight: 500;
    text-decoration: none;
}

.info-card-content a:hover {
    color: #ff0080;
}

.info-card-content i {
    width: 1.2rem;
    color: #ff9933;
    font-size: 0.7rem;
}

.hours {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed #e2cfb5;
}

.hours-text {
    font-weight: 500;
    color: #ff0080 !important;
}

.map-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0e0ce;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .contact-container-wide {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-form-col, .contact-info-col {
        width: 100%;
    }
    
    .contact-section {
        padding-top: 8rem;
    }

    .contact-section2 {
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .package-tags {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
    }
    
    .tag-option {
        font-size: 0.6rem;
        padding: 0.35rem 0.4rem;
        min-height: 28px;
    }
    
    /* Días - Tablet */
    .days-control-compact {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        padding: 0.6rem;
    }
    
    .label-icon {
        justify-content: center;
        font-size: 0.75rem;
    }
    
    .day-buttons-compact {
        justify-content: center;
    }
    
    .day-btn-mini {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
        min-width: 34px;
    }
    
    .days-container-compact {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .day-item-compact {
        padding: 0.4rem 0.5rem;
        border-radius: 0.6rem;
    }
    
    .day-number {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        min-width: 28px;
    }
    
    .day-select-compact {
        font-size: 0.65rem;
        padding: 0.3rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding-top: 6rem;
    }

    .contact-section2 {
        padding-top: 1rem;
    }
    
    .compact-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .package-tags {
        grid-template-columns: repeat(1, 1fr);
        gap: 0.3rem;
    }
    
    .tag-option {
        font-size: 0.55rem;
        padding: 0.3rem 0.3rem;
        min-height: 24px;
        border-radius: 0.4rem;
    }
    
    .contact-header h1 {
        font-size: 1.3rem;
    }
    
    /* Días - Móvil */
    .days-control-compact {
        padding: 0.5rem;
    }
    
    .day-buttons-compact {
        gap: 0.3rem;
    }
    
    .day-btn-mini {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
        min-width: 30px;
        border-radius: 0.4rem;
    }
    
    .days-container-compact {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }
    
    .day-item-compact {
        padding: 0.35rem 0.4rem;
        border-radius: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .day-number {
        font-size: 0.55rem;
        padding: 0.12rem 0.35rem;
        min-width: 24px;
    }
    
    .day-select-compact {
        font-size: 0.6rem;
        padding: 0.25rem 0.35rem;
        border-radius: 0.4rem;
    }
    
    .note-mini {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 360px) {
    .package-tags {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    
    .tag-option {
        font-size: 0.5rem;
        padding: 0.25rem 0.25rem;
        min-height: 22px;
    }
    
    /* Días - Móvil muy pequeño */
    .day-btn-mini {
        padding: 0.15rem 0.4rem;
        font-size: 0.55rem;
        min-width: 26px;
    }
    
    .day-number {
        font-size: 0.5rem;
        padding: 0.1rem 0.3rem;
        min-width: 20px;
    }
    
    .day-select-compact {
        font-size: 0.55rem;
        padding: 0.2rem 0.3rem;
    }
}














/* ========== ESNNA SECTION ========== */
.esnna-section {
    padding: 4rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esnna-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.esnna-header {
    text-align: center;
    margin-bottom: 3rem;
}

.esnna-badge {
    background: #ff0080;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.esnna-badge i {
    margin-right: 0.4rem;
}

.esnna-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.esnna-header h1 span {
    color: #ff0080;
}

.esnna-header p {
    font-size: 0.9rem;
    color: #6b5a45;
    font-family: 'Arial', sans-serif;
}

.esnna-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.esnna-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0ce;
    transition: transform 0.2s, box-shadow 0.2s;
}

.esnna-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.esnna-card .card-icon {
    width: 50px;
    height: 50px;
    background: #02A19C10;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.esnna-card .card-icon i {
    font-size: 1.8rem;
    color: #02A19C;
}

.esnna-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2f4d2d;
    margin-bottom: 0.8rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.esnna-card p {
    font-size: 0.85rem;
    color: #5c5a4e;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
}

.esnna-card ul {
    list-style: none;
    margin-top: 0.5rem;
}

.esnna-card ul li {
    font-size: 0.85rem;
    color: #5c5a4e;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.esnna-card ul li i {
    color: #02A19C;
    font-size: 0.8rem;
}

.report-channels {
    margin-top: 0.8rem;
    background: #fef8f0;
    padding: 0.8rem;
    border-radius: 1rem;
}

.report-channels p {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
}

.report-channels i {
    width: 1.2rem;
    color: #ff0080;
}

.report-channels a {
    color: #02A19C;
    text-decoration: none;
}

.report-channels a:hover {
    color: #ff0080;
}

.law-banner {
    background: linear-gradient(135deg, #2f4d2d 0%, #1f3b1e 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.law-icon i {
    font-size: 2.5rem;
    color: #ff9933;
}

.law-text h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.law-text p {
    color: #d4d4c6;
    font-size: 0.8rem;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.protocols-section {
    margin-bottom: 2.5rem;
}

.protocols-section h2 {
    font-size: 1.4rem;
    color: #2f4d2d;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.protocols-section h2 i {
    color: #02A19C;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.protocol-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #f0e0ce;
}

.protocol-item i {
    font-size: 1.5rem;
    color: #ff9933;
    flex-shrink: 0;
}

.protocol-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2f4d2d;
    margin-bottom: 0.3rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.protocol-item p {
    font-size: 0.75rem;
    color: #5c5a4e;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.esnna-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2cfb5;
}

.esnna-footer p {
    font-size: 0.75rem;
    color: #9a8b72;
    margin-bottom: 0.3rem;
    font-family: 'Arial', sans-serif;
}

.esnna-footer i {
    color: #ff0080;
    margin-right: 0.3rem;
}

.esnna-footer a {
    color: #02A19C;
    text-decoration: none;
}

.esnna-footer a:hover {
    color: #ff0080;
}

.small {
    font-size: 0.65rem;
}

@media (max-width: 768px) {
    .esnna-section {
        padding: 2rem 1rem;
    }
    
    .esnna-header h1 {
        font-size: 1.6rem;
    }
    
    .esnna-grid {
        grid-template-columns: 1fr;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
    }
    
    .law-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .esnna-card {
        padding: 1.2rem;
    }
    
    .protocol-item {
        flex-direction: column;
        text-align: center;
    }
    
    .protocol-item i {
        margin: 0 auto;
    }
}

/* ========== TERMS AND CONDITIONS SECTION ========== */
.terms-section {
    padding: 4rem 2rem;
    min-height: 100vh;
}

.terms-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.terms-badge {
    background: #ff0080;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.terms-badge i {
    margin-right: 0.4rem;
}

.terms-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.terms-header h1 span {
    color: #ff0080;
}

.terms-header p {
    font-size: 0.9rem;
    color: #6b5a45;
    font-family: 'Arial', sans-serif;
}

.terms-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0ce;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.terms-card:hover {
    transform: translateY(-2px);
}

.intro-card {
    background: linear-gradient(135deg, #2f4d2d 0%, #1f3b1e 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.intro-icon {
    flex-shrink: 0;
}

.intro-icon i {
    font-size: 2.2rem;
    color: #ff9933;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e8e8d8;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.intro-text strong {
    color: #ff9933;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #ff9933;
}

.title-icon {
    flex-shrink: 0;
}

.title-icon i {
    font-size: 1.3rem;
    color: #02A19C;
}

.card-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2f4d2d;
    margin: 0;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #5c5a4e;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: 'Arial', sans-serif;
}

.card-content p i {
    color: #02A19C;
    font-size: 0.85rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 1.2rem;
}

.card-content p strong {
    color: #2f4d2d;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.terms-col {
    display: flex;
    flex-direction: column;
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.info-tags span {
    background: #fef8f0;
    border: 1px solid #e2cfb5;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #5c401f;
    font-family: 'Arial', sans-serif;
}

.cancellation-table {
    background: #fef8f0;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0.5rem 0;
    border: 1px solid #e2cfb5;
}

.table-header {
    display: flex;
    justify-content: space-between;
    background: #02A19C;
    color: white;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.table-header span:first-child {
    width: 60%;
}

.table-header span:last-child {
    width: 40%;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: #5c5a4e;
    border-bottom: 1px solid #e2cfb5;
    font-family: 'Arial', sans-serif;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row span:first-child {
    width: 60%;
}

.table-row span:last-child {
    width: 40%;
}

.table-row.highlight {
    background: #ff008010;
    font-weight: 700;
    color: #ff0080;
}

.agreement-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    border: 2px solid #ff9933;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.agreement-icon {
    flex-shrink: 0;
}

.agreement-icon i {
    font-size: 2rem;
    color: #ff9933;
}

.agreement-text {
    flex: 1;
}

.agreement-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2f4d2d;
    margin-bottom: 0.2rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.agreement-text p {
    font-size: 0.8rem;
    color: #5c5a4e;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

@media (max-width: 900px) {
    .terms-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .terms-section {
        padding: 2rem 1rem;
    }
    
    .terms-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .intro-card {
        flex-direction: column;
        text-align: center;
    }
    
    .agreement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-content p {
        flex-wrap: wrap;
    }
    
    .card-content p i {
        width: auto;
    }
    
    .table-header, .table-row {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
}

/* ========== PRIVACY POLICY SECTION ========== */
.privacy-section {
    padding: 4rem 2rem;
    min-height: 100vh;
}

.privacy-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.privacy-badge {
    background: #ff0080;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.privacy-badge i {
    margin-right: 0.4rem;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.privacy-header h1 span {
    color: #ff0080;
}

.privacy-header p {
    font-size: 0.9rem;
    color: #6b5a45;
    font-family: 'Arial', sans-serif;
}

.privacy-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0ce;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.privacy-card:hover {
    transform: translateY(-2px);
}

.intro-privacy {
    background: linear-gradient(135deg, #2f4d2d 0%, #1f3b1e 100%);
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.intro-icon {
    flex-shrink: 0;
}

.intro-icon i {
    font-size: 2.2rem;
    color: #ff9933;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #e8e8d8;
    margin-bottom: 0.8rem;
    font-family: 'Arial', sans-serif;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: #ff9933;
}

.privacy-card .card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #ff9933;
}

.privacy-card .title-icon {
    flex-shrink: 0;
}

.privacy-card .title-icon i {
    font-size: 1.3rem;
    color: #02A19C;
}

.privacy-card .card-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2f4d2d;
    margin: 0;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.privacy-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.privacy-card .card-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #5c5a4e;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.privacy-card .card-content p strong {
    color: #2f4d2d;
}

.privacy-card .card-content ul {
    list-style: none;
    margin: 0.2rem 0;
}

.privacy-card .card-content ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #5c5a4e;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.privacy-card .card-content ul li i {
    color: #02A19C;
    font-size: 0.8rem;
    width: 1.2rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.privacy-col {
    display: flex;
    flex-direction: column;
}

.tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.tags-group span {
    background: #fef8f0;
    border: 1px solid #e2cfb5;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #5c401f;
    font-family: 'Arial', sans-serif;
}

.data-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.data-list span {
    background: #02A19C10;
    border: 1px solid #02A19C30;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #02A19C;
    font-family: 'Arial', sans-serif;
}

.conditions-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.3rem;
}

.condition-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.condition-item i {
    color: #02A19C;
    font-size: 0.8rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.condition-item span {
    font-size: 0.85rem;
    color: #5c5a4e;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.important-box {
    background: #02A19C10;
    border-left: 3px solid #02A19C;
    padding: 0.8rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.3rem;
}

.important-box i {
    color: #02A19C;
    font-size: 1rem;
}

.important-box p {
    margin: 0;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
}

.important-note {
    background: #ff008010;
    border-left: 3px solid #ff0080;
    padding: 0.8rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.important-note i {
    color: #ff0080;
    font-size: 1rem;
}

.important-note p {
    margin: 0;
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
}

.privacy-footer {
    text-align: center;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.privacy-footer p {
    font-size: 0.75rem;
    color: #9a8b72;
    font-family: 'Arial', sans-serif;
}

.privacy-footer i {
    color: #ff9933;
    margin-right: 0.4rem;
}

@media (max-width: 900px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .privacy-section {
        padding: 2rem 1rem;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .intro-privacy {
        flex-direction: column;
        text-align: center;
    }
    
    .intro-icon {
        align-self: center;
    }
    
    .privacy-card .card-content ul li {
        flex-wrap: wrap;
    }
    
    .important-box, .important-note {
        flex-direction: column;
        text-align: center;
    }
    
    .data-list {
        justify-content: center;
    }
    
    .tags-group {
        justify-content: center;
    }
}

/* ========== PAYMENT SECTION ========== */
.payment-section {
    padding: 4rem 2rem;
    min-height: 100vh;
}

.payment-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

.payment-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-badge {
    background: #ff0080;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.payment-badge i {
    margin-right: 0.4rem;
}

.payment-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3e2b;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.payment-header h1 span {
    color: #ff0080;
}

.payment-header p {
    font-size: 0.9rem;
    color: #6b5a45;
    font-family: 'Arial', sans-serif;
}

.info-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e0ce;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff9933;
}

.info-item strong {
    font-size: 0.9rem;
    color: #2f4d2d;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.info-item p {
    font-size: 0.7rem;
    color: #9a8b72;
    font-family: 'Arial', sans-serif;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.payment-card {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0e0ce;
    transition: all 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: #02A19C10;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 1.8rem;
    color: #02A19C;
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2f4d2d;
    flex: 1;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.badge {
    background: #fef8f0;
    border: 1px solid #ff9933;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.6rem;
    font-weight: 600;
    color: #ff9933;
    font-family: 'Arial', sans-serif;
}

.card-details {
    margin-bottom: 1.2rem;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #f0e0ce;
    flex-wrap: wrap;
}

.detail-row .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9a8b72;
    width: 100px;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
}

.detail-row .value {
    font-size: 0.8rem;
    color: #5c5a4e;
    flex: 1;
    word-break: break-word;
    font-family: 'Arial', sans-serif;
}

.detail-row .value.highlight {
    color: #ff0080;
    font-weight: 600;
}

.detail-row .value.swift {
    font-family: monospace;
    letter-spacing: 0.5px;
}

.detail-row .value.cci {
    font-family: monospace;
    font-size: 0.7rem;
}

.copy-btn {
    background: #f5ede2;
    border: none;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 0.7rem;
    color: #02A19C;
    transition: all 0.2s;
    font-family: 'Arial', sans-serif;
}

.copy-btn:hover {
    background: #02A19C;
    color: white;
}

.copy-all-btn {
    width: 100%;
    background: #02A19C10;
    border: 1px solid #02A19C30;
    padding: 0.6rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #02A19C;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.copy-all-btn:hover {
    background: #02A19C;
    color: white;
}

.paypal-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef8f0 100%);
}

.paypal-note {
    background: #ff008010;
    padding: 0.8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.paypal-note i {
    color: #ff0080;
    font-size: 1rem;
}

.paypal-note p {
    font-size: 0.7rem;
    color: #5c5a4e;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.paypal-note strong {
    color: #ff0080;
}

.paypal-instruction {
    font-size: 0.75rem;
    color: #9a8b72;
    margin-bottom: 1rem;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.paypal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #0070ba;
    color: white;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s;
    font-family: 'Arial', sans-serif;
}

.paypal-btn:hover {
    background: #003087;
    transform: scale(1.02);
}

.paypal-btn i {
    font-size: 1.2rem;
}

.confirmation-footer {
    background: linear-gradient(135deg, #2f4d2d 0%, #1f3b1e 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 2rem 0;
}

.footer-icon i {
    font-size: 2rem;
    color: #ff9933;
}

.footer-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.footer-text p {
    font-size: 0.8rem;
    color: #e8e8d8;
    font-family: 'Arial', sans-serif;
}

.footer-text strong {
    color: #ff9933;
}

.notes-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.note-card {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-left: 3px solid #ff9933;
}

.note-card i {
    font-size: 1.2rem;
    color: #ff9933;
}

.note-card strong {
    font-size: 0.8rem;
    color: #2f4d2d;
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.note-card p {
    font-size: 0.75rem;
    color: #5c5a4e;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
}

.toast-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2f4d2d;
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    font-family: 'Arial', sans-serif;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .payment-section {
        padding: 2rem 1rem;
    }
    
    .payment-header h1 {
        font-size: 1.8rem;
    }
    
    .info-bar {
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.5rem 1rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    .confirmation-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-row {
        flex-wrap: wrap;
    }
    
    .detail-row .label {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .notes-section {
        grid-template-columns: 1fr;
    }
}

/* ========== PREMIUM SECTION (SIN CONFLICTOS) ========== */
.premium-section {
    padding: 5rem 2rem;
    background: #1c1c1c;
}

.premium-container {
    max-width: 1300px;
    margin: 0 auto;
}

.premium-header {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-badge {
    background: #ff0080;
    padding: 0.4rem 1.2rem;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Arial', sans-serif;
}

.premium-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.premium-header h1 span {
    color: #ff0080;
}

.premium-header p {
    font-size: 0.9rem;
    color: #b0b0a8;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
}

.premium-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.premium-tour-card {
    background: #2a2a2a;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid #3a3a3a;
    /* NUEVO: Hacer que la tarjeta sea flex column */
    display: flex;
    flex-direction: column;
}

.premium-tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.4);
    border-color: #ff008030;
}

.premium-tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0; /* Evita que la imagen se encoja */
}

.premium-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-tour-card:hover .premium-tour-image img {
    transform: scale(1.05);
}

.premium-tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #02A19C;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Arial', sans-serif;
}

.premium-tour-content {
    padding: 1.5rem;
    /* NUEVO: Hacer que el contenido ocupe todo el espacio disponible */
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-tour-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
    /* NUEVO: Altura mínima para mantener consistencia */
    min-height: 3.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-tour-description {
    font-size: 0.85rem;
    color: #b0b0a8;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-family: 'Arial', sans-serif;
    /* NUEVO: Altura mínima para mantener consistencia */
    min-height: 4.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.premium-tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    /* NUEVO: Hacer que las features ocupen el espacio disponible */
    flex: 1;
    align-content: flex-start;
}

.premium-feature {
    background: rgba(255, 0, 128, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #ff0080;
    border: 1px solid rgba(255, 0, 128, 0.3);
    font-family: 'Arial', sans-serif;
}

.premium-tour-btn {
    width: 100%;
    background: #02A19C;
    border: none;
    padding: 0.8rem;
    border-radius: 2rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    /* NUEVO: Empujar el botón hacia abajo */
    margin-top: auto;
    flex-shrink: 0;
    /* NUEVO: Para enlaces <a> */
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.premium-tour-btn:hover {
    background: #ff0080;
    transform: scale(1.02);
}

.premium-faq-section {
    background: #2a2a2a;
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.2);
    border: 1px solid #3a3a3a;
}

.premium-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.premium-faq-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.premium-faq-header p {
    font-size: 0.85rem;
    color: #b0b0a8;
    font-family: 'Arial', sans-serif;
}

.premium-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.8rem;
}

.premium-faq-item {
    border-bottom: 1px solid #3a3a3a;
    padding-bottom: 1.2rem;
}

.premium-faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.premium-faq-question span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff9933;
    opacity: 0.7;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.premium-faq-question h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.premium-faq-answer p {
    font-size: 0.85rem;
    color: #b0b0a8;
    line-height: 1.6;
    padding-left: 2.5rem;
    font-family: 'Arial', sans-serif;
}

.premium-cta {
    background: linear-gradient(135deg, #02A19C 0%, #00807a 100%);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.premium-cta:hover {
    transform: scale(1.01);
}

.premium-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-family: 'Arial Black', 'Arial', sans-serif;
}

.premium-cta-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    font-family: 'Arial', sans-serif;
}

.premium-cta-button {
    background: #ff9933;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 3rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.premium-cta-button:hover {
    background: #ff0080;
    transform: translateY(-3px);
}

/* ====== BOTÓN COMO ENLACE <a> ====== */
.premium-tour-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    background: #02A19C;
    padding: 0.8rem;
    border-radius: 2rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    border: none;
    margin-top: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

.premium-tour-btn:hover {
    background: #ff0080;
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .premium-section {
        padding: 8rem 1.5rem;
    }
    
    .premium-header h1 {
        font-size: 2rem;
    }
    
    .premium-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-faq-section {
        padding: 1.5rem;
    }
}

@media (max-width: 700px) {
    .premium-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .premium-faq-question span {
        font-size: 1.2rem;
    }
    
    .premium-faq-answer p {
        padding-left: 0;
    }
    
    .premium-cta {
        padding: 2rem 1.5rem;
    }
    
    .premium-cta-content h3 {
        font-size: 1.2rem;
    }
    
    .premium-tour-content h3 {
        min-height: 3rem;
        font-size: 1rem;
    }
    
    .premium-tour-description {
        min-height: 3.8rem;
        font-size: 0.8rem;
    }
}



/* Para los dropdowns de categorías */
.submenu-category-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu-category-items.active {
    max-height: 1000px; /* Alto suficiente para mostrar todos los enlaces */
}

.submenu-category-title.has-dropdown {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-category-title .dropdown-arrow {
    transition: transform 0.3s ease;
}

.submenu-category-title .dropdown-arrow.rotated {
    transform: rotate(180deg);
}

/* Para el dropdown de Tours principal */
.sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-submenu.active {
    max-height: 3000px; /* Alto suficiente para mostrar todas las categorías */
}

.sidebar-nav-link .dropdown-arrow {
    transition: transform 0.3s ease;
}

.sidebar-nav-link .dropdown-arrow.rotated {
    transform: rotate(180deg);
}














/* ========== POPUP - VERSIÓN FUNCIONAL ========== */

/* Overlay - Fondo oscuro */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Mostrar cuando tiene la clase 'active' */
.popup-overlay.active {
    display: flex !important;
}

/* Contenedor del popup */
.popup-container {
    background: #ffffff;
    border-radius: 20px;
    max-width: 950px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Botón cerrar */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #ff0080;
    color: #ffffff;
}

/* Grid de 2 columnas */
.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
}

/* Columna izquierda */
.popup-left {
    background: linear-gradient(135deg, #02A19C, #027d79);
    padding: 30px 25px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.popup-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.popup-info p {
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 4px;
}

.popup-info p i {
    margin-right: 6px;
    color: #ffcc00;
}

.popup-info strong {
    color: #ffcc00;
}

.popup-tips {
    margin-top: 8px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.popup-tips span {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-tips span i {
    color: #00ff88;
}

/* Columna derecha - Espacios mínimos */
.popup-right {
    padding: 18px 24px 14px 24px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-right h2 {
    font-size: 1.5rem;
    color: #02A19C;
    margin-bottom: 0;
}

.popup-subtitle {
    color: #666;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group input,
.form-group textarea {
    padding: 8px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.85rem;
    width: 100%;
    box-sizing: border-box;
    background: #f8f8f8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #02A19C;
    background: #ffffff;
}

.form-group textarea {
    min-height: 38px;
    resize: vertical;
}

.popup-submit-btn {
    padding: 9px 20px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.popup-submit-btn:hover {
    background: #1da851;
}

.popup-note {
    font-size: 0.65rem;
    color: #999;
    text-align: center;
    margin-top: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .popup-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .popup-left {
        padding: 16px 20px;
        border-radius: 20px 20px 0 0;
    }
    
    .popup-image {
        height: 120px;
        margin-bottom: 10px;
    }
    
    .popup-info h3 {
        margin-bottom: 6px;
    }
    
    .popup-right {
        padding: 14px 20px 12px 20px;
    }
    
    .popup-right h2 {
        font-size: 1.2rem;
    }
    
    .popup-subtitle {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-left {
        padding: 12px 16px;
    }
    
    .popup-image {
        height: 80px;
        margin-bottom: 8px;
    }
    
    .popup-info h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .popup-info p {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .popup-tips {
        margin-top: 4px;
        gap: 8px;
    }
    
    .popup-tips span {
        font-size: 0.65rem;
    }
    
    .popup-right {
        padding: 10px 14px 8px 14px;
    }
    
    .popup-right h2 {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .popup-subtitle {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
    
    .popup-form {
        gap: 4px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 6px 10px;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .form-group textarea {
        min-height: 32px;
    }
    
    .popup-submit-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
        border-radius: 6px;
        gap: 6px;
    }
    
    .popup-note {
        font-size: 0.55rem;
    }
    
    .popup-close {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
        top: 8px;
        right: 12px;
    }
}












/* Contenedor general */
.whatsapp-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* BotÃ³n flotante */
.whatsapp-float {
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Chat oculto por defecto */
.whatsapp-chat {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 70px;
  right: 0;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;   /* ðŸ‘ˆ importante */
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

/* Estado visible */
.whatsapp-float.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Cuando se abre */
.whatsapp-chat.show {
  opacity: 1;
  visibility: visible;  /* ðŸ‘ˆ importante */
  transform: translateY(0);
  pointer-events: auto;
}

/* Header */
.chat-header {
  background: #25d366;
  color: white;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BotÃ³n cerrar */
.close-chat {
  cursor: pointer;
}

/* Cuerpo */
.chat-body {
  padding: 12px;
  background: #f0f0f0;
}

.bot-message {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

/* Footer */
.chat-footer {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 6px;
  width: 100%;
}

.chat-footer input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.chat-footer button {
  background: #25d366;
  color: white;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Estado oculto inicial */
.whatsapp-float,
.whatsapp-chat {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Estado visible */
.whatsapp-float.show,
.whatsapp-chat.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}










/* Social Icons in Mobile Header - Bubble Style */
.responsive-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons-mobile a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    background: #02A19C;
    /* Efecto burbuja 3D */
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Brillo de la burbuja (efecto de luz) */
.social-icons-mobile a::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 6px;
    width: 12px;
    height: 8px;
    border-radius: 50%;
    transform: rotate(-30deg);
}

/* Efecto hover - más brillante y con elevación */
.social-icons-mobile a:hover {
    transform: translateY(-4px) scale(1.15);
    background: #02B5AE;
    box-shadow: 
        0 8px 20px rgba(2, 161, 156, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.4);
}

/* Efecto click */
.social-icons-mobile a:active {
    transform: scale(0.92);
    background: #028D89;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.15),
        inset 0 -3px 6px rgba(0, 0, 0, 0.2),
        inset 0 3px 6px rgba(255, 255, 255, 0.2);
}

.social-icons-mobile a .fab {
    font-size: 17px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Efecto de flotación (animación suave) */
.social-icons-mobile a {
    animation: float-bubble 3s ease-in-out infinite;
}

.social-icons-mobile a:nth-child(2) {
    animation-delay: 0.2s;
}

.social-icons-mobile a:last-child {
    animation-delay: 0.4s;
}

@keyframes float-bubble {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Pausar animación en hover */
.social-icons-mobile a:hover {
    animation-play-state: paused;
}

/* Ajuste responsive */
@media (max-width: 480px) {
    .social-icons-mobile a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .social-icons-mobile a .fab {
        font-size: 14px;
    }
    
    .social-icons-mobile a::before {
        top: 3px;
        left: 5px;
        width: 10px;
        height: 6px;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 380px) {
    .social-icons-mobile a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .social-icons-mobile a .fab {
        font-size: 12px;
    }
    
    .social-icons-mobile {
        gap: 5px;
    }
}














/* ============================================
   SECCIÓN MÁS EXPERIENCIAS
   ============================================ */

.more-experiences-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Decoración de fondo sutil */
.more-experiences-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 161, 156, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.more-experiences-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.more-experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: transparent; /* Fondo transparente para que se vea la imagen */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(2, 161, 156, 0.25);
    transition: var(--transition);
    position: relative;
}

/* Contenedor de la imagen de fondo */
.more-experiences-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/more-experiences.jpg') center/cover no-repeat;
    filter: blur(8px) brightness(0.7);
    transform: scale(1.1);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Mostrar la imagen de fondo solo en desktop */
@media (min-width: 993px) {
    .more-experiences-content::before {
        opacity: 1;
    }
}

.more-experiences-content:hover {
    box-shadow: 0 16px 56px rgba(2, 161, 156, 0.35);
    transform: translateY(-4px);
}

/* ===== IMAGEN ===== */
.more-experiences-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    z-index: 1;
}

.more-experiences-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.more-experiences-content:hover .more-experiences-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.badge i {
    font-size: 12px;
}

/* ===== TEXTO (lado derecho con fondo transparente) ===== */
.more-experiences-text {
    padding: 50px 50px 50px 40px;
    color: var(--white);
    position: relative;
    z-index: 1;
    /* Fondo semitransparente para legibilidad */
    background: rgba(2, 161, 156, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

/* En desktop, el texto se superpone a la imagen de fondo */
@media (min-width: 993px) {
    .more-experiences-text {
        background: rgba(2, 161, 156, 0.70);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 16px;
}

.more-experiences-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.more-experiences-text h2 .highlight {
    color: var(--accent-gold);
    position: relative;
}

.more-experiences-text h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-gold);
    opacity: 0.3;
    border-radius: 4px;
}

.more-experiences-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* ===== FEATURES ===== */
.experience-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.experience-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
}

.experience-features li i {
    color: var(--accent-gold);
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== BOTÓN NARANJA ===== */
.btn-experiences {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 42px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.3);
}

/* Efecto de brillo */
.btn-experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-experiences:hover::before {
    left: 100%;
}

.btn-experiences:hover {
    background: #ff8800;
    border-color: #ff8800;
    transform: translateX(6px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 153, 51, 0.45);
}

.btn-experiences:active {
    transform: scale(0.96);
}

.btn-experiences i {
    transition: var(--transition);
}

.btn-experiences:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet - igual que desktop pero con ajustes */
@media (max-width: 992px) {
    .more-experiences-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Ocultar la imagen de fondo borrosa en tablet y móvil */
    .more-experiences-content::before {
        display: none !important;
    }

    .more-experiences-image {
        min-height: 300px;
        height: 300px;
    }

    .more-experiences-text {
        padding: 40px 35px;
        background: var(--accent-turquoise); /* Color sólido en tablet */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-left: none;
    }

    .more-experiences-text h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .more-experiences-section {
        padding: 40px 16px;
    }

    .more-experiences-image {
        min-height: 220px;
        height: 220px;
    }

    .more-experiences-text {
        padding: 30px 24px;
        background: var(--accent-turquoise); /* Color sólido en móvil */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .more-experiences-text h2 {
        font-size: 26px;
    }

    .more-experiences-text p {
        font-size: 14px;
    }

    .experience-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .experience-features li {
        font-size: 13px;
    }

    .btn-experiences {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .section-tag {
        font-size: 12px;
    }
}

/* Mobile muy pequeño */
@media (max-width: 380px) {
    .more-experiences-text {
        padding: 24px 18px;
    }

    .more-experiences-text h2 {
        font-size: 22px;
    }

    .btn-experiences {
        padding: 12px 24px;
        font-size: 13px;
    }
}