 
        .hero-section {
            position: relative; 
            overflow: hidden; 
        }
        .hero-section video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -100;
            transform: translateX(-50%) translateY(-50%);
            background-size: cover;
            transition: 1s opacity;
            /* Filtro oscuro y sepia */
            filter: brightness(0.55) sepia(0.3);
        }
        .hero-content {
            position: relative; 
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.5); 
            padding: 2rem; 
            border-radius: 0.5rem;
        }
        .section-title {
            position: relative;
            width: 100%;
            text-align: center;
            display: block;
            padding-bottom: 0.5rem; 
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 4px;
            background-color: #FFC107; 
            border-radius: 2px;
        }
        .card-hover {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        html {
            scroll-behavior: smooth;
        }
        .activity-card img {
            width: 80px; 
            height: 80px; 
            margin-bottom: 1rem; 
        }
        .subscription-message {
            margin-top: 1rem;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem; 
            font-size: 0.875rem; 
        }
        .subscription-message.success {
            background-color: #D1FAE5; 
            color: #065F46; 
        }
        .subscription-message.error {
            background-color: #FEE2E2; 
            color: #991B1B; 
        }
        /* Estilos para el botón "Subir al Inicio" */
        #scrollToTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: none; /* Oculto por defecto */
            background-color: #FFC107; /* secondary color */
            color: #343A40; /* neutral-dark */
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 24px;
            cursor: pointer;
            z-index: 1000;
            transition: opacity 0.3s, visibility 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        #scrollToTopBtn:hover {
            background-color: #e0a800; /* Un poco más oscuro al pasar el mouse */
        }
        
    @keyframes fade-in { from { opacity: 0; transform: translateY(40px);} to { opacity: 1; transform: none;} }
    .animate-fade-in { animation: fade-in 0.4s both; }
    
        @keyframes fade-in { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: none;} }
        .animate-fade-in { animation: fade-in 1s 0.2s both; }
        .animate-fade-in-slow { animation: fade-in 1.5s 0.5s both; }
        .animate-fade-in-slower { animation: fade-in 2s 0.8s both; }
        .animate-fade-in-slowest { animation: fade-in 2.5s 1.1s both; } 
        strong {
            font-size: 21px !important;
        }

        /* Hero slider minimal */
        .hero-slider { position: relative; }
        .hero-slide { display: none; opacity: 0; transform: translateY(12px); transition: opacity 0.35s ease, transform 0.35s ease; }
        .hero-slide.active { display: block; opacity: 1; transform: translateY(0); }
        .hero-cards-slider { position: relative; min-height: 400px; }
        .hero-card { position: absolute; top: 0; left: 0; right: 0; display: none; opacity: 0; transform: translateX(30px); transition: opacity 0.4s ease, transform 0.4s ease; }
        .hero-card.active { display: block; opacity: 1; transform: translateX(0); position: relative; }
        @media (max-width: 768px) {
            .hero-cards-slider { touch-action: pan-y; }
            .hero-card.active::after {
                content: '← Desliza →';
                position: absolute;
                bottom: 10px;
                left: 50%;
                transform: translateX(-50%);
                font-size: 11px;
                color: rgba(52, 58, 64, 0.4);
                font-weight: 600;
                letter-spacing: 0.05em;
                animation: fade-hint 2s ease-in-out infinite;
            }
            @keyframes fade-hint {
                0%, 100% { opacity: 0.3; }
                50% { opacity: 0.7; }
            }
        }
        .hero-cta { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.4rem; border-radius: 0.9rem; background: #28A745; color: #fff; font-weight: 700; box-shadow: 0 12px 30px rgba(40,167,69,0.18); transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
        .hero-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(40,167,69,0.22); background: #1f8a36; }
        .hero-ghost { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.4rem; border-radius: 0.9rem; border: 1px solid rgba(40,167,69,0.18); color: #343A40; font-weight: 700; background: rgba(255,255,255,0.7); transition: border-color 0.2s ease, transform 0.2s ease; }
        .hero-ghost:hover { border-color: #28A745; transform: translateY(-2px); }
        .hero-nav { width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(52,58,64,0.12); background: #fff; color: #343A40; font-weight: 700; box-shadow: 0 6px 18px rgba(0,0,0,0.06); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
        .hero-nav:hover { transform: translateY(-1px); border-color: #28A745; box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
        #hero-dots button { width: 26px; height: 6px; border-radius: 999px; border: 0; background: rgba(52,58,64,0.18); transition: width 0.2s ease, background 0.2s ease; }
        #hero-dots button.active { width: 40px; background: #28A745; }
        .pill { padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(52,58,64,0.06); border: 1px solid rgba(52,58,64,0.08); color: #343A40; font-weight: 600; }
        /* Quitar sombras en sliders */
        .hero-slider img, #pueblos-slider img, #tourist-slider img { box-shadow: none !important; }
        #pueblos-slider .shadow-lg, #tourist-slider .shadow-lg, .hero-slider .shadow-lg { box-shadow: none !important; }
        /* Video fondo hero */
        .hero-section video, .hero-video { object-fit: cover; filter: brightness(0.55) sepia(0.1); }
        /* Glass cards en hero pueblos */
        #pueblos-hero-slider article { background: rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.18); border-bottom: 1px solid rgba(255,255,255,0.12); }
        #pueblos-hero { min-height: 420px; }

        /* Image Lightbox */
        .lightbox-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .lightbox-overlay.active {
            display: flex;
            opacity: 1;
        }
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90vh;
            animation: lightbox-zoom 0.3s ease;
        }
        .lightbox-content img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }
        .lightbox-close {
            position: absolute;
            top: -45px;
            right: 0;
            background: #fff;
            color: #343A40;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        .lightbox-close:hover {
            background: #FFC107;
            transform: rotate(90deg);
        }
        .lightbox-clickable {
            cursor: zoom-in;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }
        .lightbox-clickable:hover {
            transform: scale(1.02);
            opacity: 0.9;
        }
        @keyframes lightbox-zoom {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Publicidad en contenido */
        .ad-banner-block {
            max-width: 1860px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        .ad-banner-label {
            text-align: center;
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #9ca3af;
            margin-bottom: 0.5rem;
        }
        .ad-banner-cards {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: flex-start;
        }
        .ad-banner-card {
            flex: 1;
            max-width: 2060px;
            display: block;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.10);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .ad-banner-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .ad-banner-card img {
            width: 100%;
            height: auto;
            display: block;
        }
        @media (max-width: 600px) {
            .ad-banner-cards { flex-direction: column; align-items: center; }
            .ad-banner-card  { max-width: 100%; }
        }