@charset "utf-8";
/* CSS Document */

       @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Urbanist:wght@400;500;600;700;800;900&display=swap');
        
        body { font-family: 'Inter', sans-serif; }
        .font-urbanist { font-family: 'Urbanist', sans-serif; }
        
        .hero-shape { clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%); }
        .slider-container { scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
        .slider-container::-webkit-scrollbar { display: none; }
        
        .date-badge { position: absolute; top: -15px; left: 15px; background: #ffd60a; color: #0a1628; padding: 6px 14px; font-weight: 800; font-size: 0.9rem; border-radius: 4px; z-index: 10; line-height: 1; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
        .date-badge span { font-size: 0.65rem; font-weight: 700; }
        
        #map { height: 450px; width: 100%; border-radius: 12px; position: relative; z-index: 1; }
        .map-wrapper { position: relative; z-index: 1; }
        
        .fade-in { animation: fadeIn 0.5s ease-in; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        
        .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.9); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; z-index: 20; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.2s; }
        .slider-btn:hover { background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .slider-btn-left { left: 10px; }
        .slider-btn-right { right: 10px; }
        
        .news-card { transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; color: inherit; display: block; }
        .news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
        
        .event-card-link { text-decoration: none; color: inherit; display: block; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); min-width: 260px; border-radius: 0; overflow: visible; cursor: pointer; }
        .event-card-link:hover { transform: scale(1.05); z-index: 15; }
        .event-card-link .event-card-inner { background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
        .event-card-link:hover .event-card-inner { box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
        .event-card-img { border-radius: 0; height: 360px; }
        .event-title-link { color: #0a1628; text-decoration: none; transition: color 0.2s; display: block; }
        .event-title-link:hover { color: #00b4d8; text-decoration: underline; }
        
        .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 10px 40px rgba(0,0,0,0.1); z-index: 100; animation: slideDown 0.3s ease-out; }
        .dropdown-menu.active { display: block; }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        .category-item { transition: background 0.2s; }
        .category-item:hover { background: #f3f4f6; }

        .nav-item { position: relative; cursor: pointer; }
        .nav-item.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: #00b4d8; }

        .simbolica-wrapper { display: flex; justify-content: center; align-items: flex-end; }
        .simbolica-img-container { position: relative; width: 70%; line-height: 0; }
        .simbolica-img-container img { width: 100%; display: block; margin-bottom: 0; }

        .hero-slider { position: relative; width: 100%; height: 450px; overflow: hidden; }
        .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; }
        .hero-slide.active { opacity: 1; }
        .hero-slide img { width: 100%; height: 100%; object-fit: cover; }
        .hero-counter { position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%); z-index: 30; background: rgba(255,255,255,0.9); padding: 8px 20px; border-radius: 30px; font-weight: 700; color: #0a1628; font-size: 0.95rem; letter-spacing: 2px; }
        .hero-dots { position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 30; }
        .hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
        .hero-dot.active { background: #ffd60a; width: 30px; border-radius: 5px; }
        .hero-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; z-index: 30; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: all 0.2s; font-size: 1.1rem; color: #0a1628; }
        .hero-nav-btn:hover { background: white; }
        .hero-nav-btn.prev { left: 20px; }
        .hero-nav-btn.next { right: 20px; }

        .weather-widget-hero { position: absolute; top: 20px; right: 20px; z-index: 40; background: rgba(255,255,255,0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 16px; padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; min-width: 200px; border: 1px solid rgba(255,255,255,0.4); }
        .weather-widget-hero .weather-icon { font-size: 2rem; color: #ffd60a; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        .weather-widget-hero .weather-temp { font-size: 1.8rem; font-weight: 700; color: #0a1628; line-height: 1; }
        .weather-widget-hero .weather-desc { font-size: 0.75rem; color: #4b5563; margin-top: 2px; font-weight: 500; }
        .weather-widget-hero .weather-location { font-size: 0.7rem; color: #0077b6; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

        .weather-widget-simbolica { position: absolute; top: 20px; right: 20px; z-index: 10; background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 16px; padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; min-width: 200px; border: 1px solid rgba(255,255,255,0.5); }
        .weather-widget-simbolica .weather-icon { font-size: 2rem; color: #ffd60a; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        .weather-widget-simbolica .weather-temp { font-size: 1.8rem; font-weight: 700; color: #0a1628; line-height: 1; }
        .weather-widget-simbolica .weather-desc { font-size: 0.75rem; color: #4b5563; margin-top: 2px; font-weight: 500; }
        .weather-widget-simbolica .weather-location { font-size: 0.7rem; color: #0077b6; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

        .weather-widget-mobile { display: none; align-items: center; gap: 6px; background: white; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; }
        .weather-widget-mobile .wm-icon { font-size: 1rem; color: #ffd60a; }
        .weather-widget-mobile .wm-temp { font-weight: 700; color: #0a1628; font-size: 0.85rem; }
        .weather-widget-mobile .wm-desc { color: #6b7280; font-size: 0.7rem; }

        .compass-btn { position: fixed; right: 0; top: 50%; transform: translateY(-50%) scale(0.5) rotate(-180deg); width: 64px; height: 64px; border-radius: 50% 0 0 50%; background: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #023e8a 100%); border: none; border-right: none; box-shadow: -4px 0 20px rgba(0,119,182,0.5); cursor: pointer; z-index: 9998; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); padding-right: 8px; }
        .compass-btn.visible { opacity: 1; visibility: visible; transform: translateY(-50%) scale(1) rotate(0deg); }
        .compass-btn:hover { transform: translateY(-50%) scale(1.08) rotate(8deg); box-shadow: -6px 0 28px rgba(0,119,182,0.6); background: linear-gradient(135deg, #00c4e8 0%, #0087c6 50%, #034e9a 100%); }
        .compass-btn:active { transform: translateY(-50%) scale(0.95); }
        .compass-btn svg { width: 36px; height: 36px; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
        .compass-btn .compass-needle { animation: compassSpin 2.5s ease-in-out infinite; transform-origin: center; }
        @keyframes compassSpin { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: 0; width: 85%; max-width: 380px; height: 100vh; background: white; z-index: 201; transform: translateX(-100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
        .drawer.active { transform: translateX(0); }
        .drawer-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #e5e7eb; }
        .drawer-item { border-bottom: 1px solid #f3f4f6; }
        .drawer-item-title { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; font-weight: 600; color: #0a1628; cursor: pointer; transition: background 0.2s; }
        .drawer-item-title:hover { background: #f9fafb; }
        .drawer-item-title i.chevron { transition: transform 0.3s; color: #9ca3af; }
        .drawer-item-title.open i.chevron { transform: rotate(180deg); }
        .drawer-sub { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: #f9fafb; }
        .drawer-sub.open { max-height: 500px; }
        .drawer-sub a { display: block; padding: 12px 20px 12px 40px; color: #4b5563; font-size: 0.9rem; transition: all 0.2s; }
        .drawer-sub a:hover { color: #00b4d8; padding-left: 45px; }

        .dulce-link { display: inline-block; position: relative; cursor: pointer; text-decoration: none; }
        .dulce-img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 6px solid white; box-shadow: 0 8px 24px rgba(0,0,0,0.15); transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); position: relative; z-index: 2; }
        .dulce-link::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; background: linear-gradient(135deg, #00b4d8, #ffffff, #00b4d8); opacity: 0; z-index: 1; transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); transform: scale(0.9); }
        .dulce-link:hover .dulce-img { border-radius: 24px; transform: scale(1.15) rotate(-2deg); box-shadow: 0 20px 40px rgba(0, 180, 216, 0.4); border-color: #ffffff; }
        .dulce-link:hover::before { border-radius: 32px; opacity: 0.5; transform: scale(1.05); }

        .cat-tab { transition: all 0.3s; cursor: pointer; border: 2px solid transparent; }
        .cat-tab.active { border-color: #00b4d8; background: #e0f7fa; color: #00b4d8; }
        .cat-tab:not(.active):hover { border-color: #00b4d8; background: #f0f9fa; }

        .destino-img-wrapper { position: relative; overflow: hidden; }
        .destino-img-wrapper img { transition: opacity 0.5s ease; }
        .destino-img-wrapper.fade-out img { opacity: 0; }

        /* Search Desktop expandible con hover */
        .search-desktop { width: 160px; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        .search-desktop.expanded { width: 208px; }
        .search-desktop input { width: 100%; }

        .tab-pestana-container { display: flex; align-items: flex-end; gap: 0; margin-bottom: 24px; height: 52px; }
        .tab-pestana { padding: 14px 32px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s; position: relative; display: flex; align-items: center; gap: 10px; height: 100%; }
        .tab-pestana-destacados { background: #00b4d8; color: white; clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%); padding-right: 52px; z-index: 2; }
        .tab-pestana-destacados i { color: white; }
        .tab-pestana-destacados:hover { background: #00a0c0; }
        .tab-pestana-noticias { background: #f0f0f0; color: #374151; clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); padding-left: 52px; z-index: 1; margin-left: -12px; }
        .tab-pestana-noticias:hover { background: #e5e5e5; }
        .tab-pestana.active { font-weight: 700; }

        .events-slider-interactive { position: relative; overflow-x: auto; overflow-y: visible; -ms-overflow-style: none; scrollbar-width: none; padding: 20px 0 30px 0; cursor: grab; }
        .events-slider-interactive::-webkit-scrollbar { display: none; }
        .events-slider-interactive:active { cursor: grabbing; }
        .events-slider-track { display: flex; gap: 12px; padding: 0 20px; width: max-content; }

        @media (max-width: 768px) {
            .hero-slider { height: 240px; }
            .hero-counter { bottom: 40px; font-size: 0.75rem; padding: 5px 12px; }
            .hero-nav-btn { width: 34px; height: 34px; font-size: 0.8rem; }
            .hero-nav-btn.prev { left: 8px; }
            .hero-nav-btn.next { right: 8px; }
            .event-card-link { min-width: 230px; }
            .event-card-img { height: 300px; }
            #map { height: 320px; }
            .weather-widget-hero { display: none !important; }
            .dulce-img { width: 80%; max-width: 260px; height: auto; aspect-ratio: 1 / 1; margin: 0 auto; display: block; border-radius: 50%; }
            .dulce-link:hover .dulce-img, .dulce-link:active .dulce-img { border-radius: 20px; transform: none; box-shadow: 0 8px 24px rgba(0,0,0,0.15); border-color: #ffffff; }
            .dulce-link:hover::before, .dulce-link:active::before { border-radius: 28px; opacity: 0.4; transform: scale(1.02); }
            .simbolica-img-container { width: 100%; }
            .destino-img-wrapper { min-height: 300px !important; }
            .cat-tab { padding: 10px 8px; font-size: 0.75rem; }
            .cat-tab i { margin-right: 4px; }
            .map-wrapper { width: 100%; max-width: 100%; margin: 0 auto; }
            .map-wrapper .bg-white { padding: 8px; }
            .weather-widget-simbolica { top: 10px; right: 10px; padding: 8px 12px; min-width: 140px; gap: 8px; }
            .weather-widget-simbolica .weather-icon { font-size: 1.3rem; }
            .weather-widget-simbolica .weather-temp { font-size: 1.2rem; }
            .weather-widget-simbolica .weather-desc { font-size: 0.65rem; }
            .weather-widget-simbolica .weather-location { font-size: 0.6rem; }
            .compass-btn { width: 52px; height: 52px; }
            .compass-btn svg { width: 28px; height: 28px; }
            .weather-widget-mobile { display: flex; }
            .tab-pestana { padding: 10px 20px; font-size: 0.9rem; }
            .tab-pestana-destacados { padding-right: 34px; }
            .tab-pestana-noticias { padding-left: 34px; }
            .events-slider-track { gap: 10px; padding: 0 12px; }
        }
		
		
		
		
	