/* CSS opcional del plugin (vacío para respetar tu CSS actual). */
/* Hero Section */
        .hero {
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-content {
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 15px;
            opacity: 0.9;
            font-weight: 300;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            line-height: 1.2;
            color: #cecece
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-button {
            background: linear-gradient(45deg, #4a7c59, #5d8a6a);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(74, 124, 89, 0.4);
        }

        .hero-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 124, 89, 0.6);
        }

        /* Desktop Featured Cards */
        .desktop-only {
            display: block;
        }

        .mobile-only {
            display: none;
        }

        .featured-cards-container {
            position: absolute;
            bottom: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 900px;
            z-index: 100;
            color: white;
        }

        /* Mobile Featured Section */
        .mobile-featured-section {
            padding: 10px 0;
            background: #ffffff;
            border-bottom: 1px solid #eee;
        }

        .mobile-featured-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        .mobile-featured-slider {
            display: flex;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .mobile-featured-slider .featured-card {
            width: 100%;
            max-width: 350px;
            height: 220px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            display: none;
        }

        .mobile-featured-slider .featured-card.mobile-active {
            display: block;
        }

        .featured-cards {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); /* Transición suave */
        }

        .featured-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Transición más suave */
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }

        .featured-card.small {
            width: 250px;
            height: 140px;
            opacity: 0.9;
            transform: scale(0.95);
        }

        .featured-card.large {
            width: 350px; /* 30% más grande que 250px */
            height: 200px; /* 30% más grande que 140px */
            z-index: 10;
        }

        .featured-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .featured-card.small:hover {
            transform: translateY(-5px) scale(1);
            opacity: 1;
        }

        .carousel-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: #4a7c59;
            transition: all 0.3s ease;
            z-index: 101;
        }

        .carousel-controls:hover {
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-prev {
            left: -60px;
        }

        .carousel-next {
            right: -60px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .featured-card-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .featured-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px;
            color: white;
        }

        .featured-card h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .featured-card p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Main Content */
        .main-content {
            padding: 0px 0 80px;
            background: #ffffff;
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title.desktop-section-title {
            display: block;
        }

        .mobile-section-title {
            display: none;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Attraction Cards Grid */
        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            margin-top: 0px;
        }
        
        .attraction-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none !important;
        }

        .attraction-card:hover {
            transform: translateY(-10px);
            
        }

        .card-image-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-size: cover;
            background-position: center;
            border: 5px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        .card-image-circle-one {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-size: cover;
            background-position: center;
            border: 5px solid #f0f0f0;
            transition: all 0.3s ease;
            text-decoration: none !important;
        }

        .attraction-card:hover .card-image-circle {
            border-color: #4a7c59;
        }
        .card-image-circle-one:hover {
            border-color: #4a7c59;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .attraction-card h4 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .attraction-card p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .card-button {
            background: #4a7c59;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-decoration: none !important;
        }

        .card-button:hover {
            background: #3a6249;
            transform: translateY(-1px);
        }

        .card-button.outline {
            background: transparent;
            border: 2px solid #4a7c59;
            color: #4a7c59;
        }

        .card-button.outline:hover {
            background: #4a7c59;
            color: white;
        }

        /* Responsive */
        /* Responsive Design */
        @media (max-width: 1024px) {
            /* Ocultar completamente las cards del hero */
            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: block !important;
            }

            /* Hero sin cards flotantes - altura normal */
            .hero {
                height: 100vh; /* Altura completa ya que no hay cards flotantes */
            }

            .main-content {
                padding-top: 0px; /* Padding normal */
            }

            .attractions-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .container {
                max-width: 100%;
                padding: 0 20px;
            }

            /* Mobile carousel controls */
            .mobile-featured-container .carousel-controls {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(0,0,0,0.6);
                border: none;
                width: 35px;
                height: 35px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 1rem;
                color: white;
                transition: all 0.3s ease;
                z-index: 10;
            }

            .mobile-featured-container .carousel-prev {
                left: -50px;
            }

            .mobile-featured-container .carousel-next {
                right: -50px;
            }

            .mobile-featured-container .carousel-controls:hover {
                background: rgba(0,0,0,0.8);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero {
                height: 80vh; /* Altura reducida en móvil para mejor proporción */
            }

            .nav-menu {
                display: none;
            }

            .attractions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .attraction-card {
                padding: 20px 15px;
            }

            .card-image-circle {
                width: 250px;
                height: 250px;
            }

            /* Mobile carousel controls más cercanos */
            .mobile-featured-container .carousel-prev {
                left: -20px;
            }

            .mobile-featured-container .carousel-next {
                right: -20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .featured-card.small,
            .featured-card.large {
                height: 180px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .nav-container {
                padding: 10px 15px;
            }

            .logo-text h3 {
                font-size: 1rem;
            }

            .logo-text p {
                font-size: 0.8rem;
            }
        }