  :root {
            --primary: #FF6B6B;
            --secondary: #4e6ecd;
            --accent: #FFE66D;
            --dark: #292F36;
            --light: #F7FFF7;
            --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
            --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light);
            color: var(--dark);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
        }

        /* Hero Section */
        .hero-section {
            background: var(--gradient-primary);
            padding: 6rem 0 4rem;
            color: white;
            position: relative;
            overflow: hidden;
            margin-bottom: 3rem;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            background-position: bottom;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        /* Search Container */
        .search-container {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-top: -4rem;
            position: relative;
            z-index: 10;
            margin-bottom: 3rem;
        }

        .search-icon {
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            color: var(--primary);
            z-index: 2;
        }

        .form-control,
        .form-select {
            padding-left: 3rem !important;
            height: 50px;
            border-radius: 10px !important;
            border: 2px solid #eee;
            transition: all 0.3s;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
        }

        /* Buttons */
        .btn-primary {
            background: var(--gradient-primary);
            background: var(--gradient-primary);
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        .btn-outline-primary {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-outline-primary:hover {
            background: var(--primary);
        }

        /* Tour Cards */
        .tour-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
        }

        .tour-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .tour-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .tour-image {
            transform: scale(1.05);
        }

        .card-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .card-text {
            color: #666;
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        .btn-visit {
            background: var(--gradient-secondary);
            color: white !important;
            border: none;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 600;
            align-self: flex-start;
            transition: all 0.3s;
        }

        .btn-visit:hover {
            transform: translateX(5px);
            color: white;
            box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
        }

        /* Location Badges */
        .location-badge {
            background-color: rgba(78, 205, 196, 0.1);
            color: var(--secondary);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.75rem;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-flex;
            align-items: center;
            border: none;
            font-weight: 600;
        }

        .location-badge i {
            margin-right: 5px;
            font-size: 0.8em;
        }

        /* Loading Animation */
        .loading {
            padding: 3rem 0;
        }

        .spinner-border {
            width: 3rem;
            height: 3rem;
            border-width: 0.25em;
        }

        /* No Results */
        .no-results {
            padding: 3rem 0;
        }

        .no-results i {
            color: var(--primary);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .search-container {
                margin-top: -2rem;
            }
        }

        /* Floating Elements */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Pulse Animation */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
            }
        }

        /* Tour Item Animation */
        .tour-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }




        .hero-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgb(23, 45, 106) 0%, #FF6B6B 100%);
            padding: 120px 0;
            color: white;
        }

        .hero-collage {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .collage-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .collage-img {
            position: absolute;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .collage-img:hover {
            opacity: 0.95 !important;
            transform: scale(1.05) rotate(0deg) !important;
            z-index: 10;
        }

        .hero-content {
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Efecto flotante más suave */
        .floating {
            animation: floating 4s ease-in-out infinite;
            filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.3));
        }

        @keyframes floating {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }


          .mixed-service-badge {
                position: absolute;
                top: 10px;
                right: 10px;
                z-index: 2;
            }

            .mixed-service-badge .badge {
                font-size: 0.8rem;
                padding: 0.4rem 0.6rem;
            }


              /* Estilos para la barra de búsqueda */
            .search-container {
                margin-bottom: 2rem;
            }

            .search-card {
                border: 1px solid #e0e0e0;
                transition: all 0.3s ease;
            }

            .search-card:hover {
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .search-input-group {
                position: relative;
            }

            .search-main-input {
                border-radius: 50px;
                padding: 12px 20px 12px 45px;
                border: 2px solid #dee2e6;
                font-size: 1rem;
                height: auto;
                transition: all 0.3s;
            }

            .search-main-input:focus {
                border-color: #3498db;
                box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            }

            .search-icon {
                position: absolute;
                left: 20px;
                top: 50%;
                transform: translateY(-50%);
                color: #6c757d;
                z-index: 4;
            }

            .btn-search-now {
                position: absolute;
                right: 5px;
                top: 50%;
                transform: translateY(-50%);
                background: #3498db;
                border: none;
                color: white;
                padding: 8px 15px;
                border-radius: 50px;
                font-size: 0.9rem;
                transition: all 0.3s;
            }

            .btn-search-now:hover {
                background: #2980b9;
            }

            .filter-group {
                margin-bottom: 0;
            }

            .filter-label {
                display: block;
                margin-bottom: 6px;
                font-size: 0.85rem;
                color: #495057;
                font-weight: 500;
            }

            .filter-select {
                border-radius: 8px;
                padding: 10px 15px;
                border: 2px solid #dee2e6;
                transition: all 0.3s;
                height: auto;
            }

            .filter-select:focus {
                border-color: #3498db;
                box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            }

            .search-btn {
                border-radius: 8px;
                padding: 10px;
                font-weight: 500;
                transition: all 0.3s;
                height: 100%;
            }

            .search-btn:hover {
                transform: translateY(-2px);
            }

            .quick-filters {
                padding-top: 10px;
                border-top: 1px solid #f0f0f0;
            }

            .quick-filter {
                border-radius: 20px;
                padding: 5px 12px;
                font-size: 0.8rem;
                transition: all 0.3s;
            }

            .quick-filter.active {
                background: #3498db;
                color: white;
                border-color: #3498db;
            }

            /* Estilos para las tarjetas */
            .section-title {
                color: #2c3e50;
                font-weight: 600;
            }

            .transport-item .tour-card {
                border-left: 4px solid #3498db;
            }

            .tour-item .tour-card {
                border-left: 4px solid #2ecc71;
            }

            .tour-card {
                transition: all 0.3s ease;
                height: 100%;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }

            .tour-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .btn-visit {
                background-color: #3498db;
                border: none;
                padding: 8px 16px;
                font-weight: 500;
                transition: all 0.3s;
            }

            .btn-visit:hover {
                background-color: #2980b9;
                transform: translateY(-2px);
            }

            .location-badge {
                background-color: #f8f9fa;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 0.85rem;
                display: inline-block;
                margin-bottom: 8px;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .search-main-input {
                    padding-right: 100px;
                }

                .btn-search-now {
                    padding: 8px 12px;
                }

                .quick-filters {
                    flex-direction: column;
                    align-items: flex-start;
                }
            }