
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --lime: #b1e314;
            --lime-light: #c8f53d;
            --teal: #04b0ac;
            --teal-light: #1dd4cf;
            --teal-dark: #038d8a;
            --navy: #2a3c54;
            --navy-dark: #1a2738;
            --navy-deeper: #0f1923;
            --primary: #04b0ac;
            --secondary: #2a3c54;
            --white: #ffffff;
            --bg-cream: #f4f1ea;
            --bg-light: #faf9f6;
            --text-dark: #2a3c54;
            --text-medium: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #e2dfd8;
            --gradient-1: linear-gradient(135deg, #b1e314 0%, #04b0ac 100%);
            --gradient-2: linear-gradient(135deg, #04b0ac 0%, #2a3c54 100%);
            --gradient-3: linear-gradient(135deg, #2a3c54 0%, #04b0ac 100%);
        }

          :root {

                --primary: #03bfac;
    --secondary: #2a3c54;
    --accent: #066aab;
    --dark: #1a2332;
    --light: #f8f9fa;
            --lime: #b1e314;
            --teal: #04b0ac;
            --navy: #2a3c54;
            --navy-dark: #1e2d40;
            --navy-light: #3a5070;
            --dark-green: #1b3c2a;
            --medium-green: #2d5a3f;
            --accent-green: #2e7d32;
            --bg-cream: #f4f1ea;
            --bg-light: #faf9f6;
            --white: #ffffff;
            --text-dark: #2a3c54;
            --text-medium: #333333;
            --text-light: #666666;
            --text-muted: #999999;
            --border-color: #e2dfd8;
            --border-light: #eceae4;
            --gradient-navy: linear-gradient(135deg, #2a3c54 0%, #1e2d40 100%);
            --gradient-teal: linear-gradient(135deg, #04b0ac 0%, #038d8a 100%);
            --gradient-mix: linear-gradient(135deg, #2a3c54 0%, #04b0ac 100%);
        }

        body {
            font-family: 'Barlow', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-medium);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

       

        /* ==================== HERO HEADER ==================== */
        .destinations-hero {
            position: relative;
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            height: 900px;
        }

        .destinations-hero .hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://heartfelt-gingersnap-8dd232.netlify.app/fotos-cadejo/Arenal_LaFortuna_9_11zon.webp') center/cover no-repeat;
        }

        .destinations-hero .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(42, 60, 84, 0.7) 0%,
                rgba(15, 25, 35, 0.85) 100%
            );
        }

        .destinations-hero .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            padding: 40px 20px;
            max-width: 750px;
        }

        .hero-breadcrumb {
            font-family: 'Barlow', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 15px;
        }

        .hero-breadcrumb a {
            color: var(--lime);
            text-decoration: none;
        }

        .hero-breadcrumb a:hover {
            text-decoration: underline;
        }

        .destinations-hero h1 {
            font-family: 'Roboto', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        .destinations-hero h1 span {
            background: linear-gradient(135deg, var(--lime), var(--teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .destinations-hero p {
            font-family: 'Barlow', sans-serif;
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat .number {
            font-family: 'Roboto', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--lime);
            line-height: 1;
        }

        .hero-stat .label {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ==================== DESCRIPTION SECTION ==================== */
        .description-section {
            padding: 50px 0 30px;
        }

        .description-section .container {
            max-width: 900px;
        }

        .description-section p {
            font-family: 'Barlow', sans-serif;
            font-size: 1rem;
            color: var(--text-light);
            line-height: 1.8;
            text-align: center;
        }

        .description-section p strong {
            color: var(--navy);
        }

        /* ==================== CATEGORIES GRID ==================== */
        .categories-section {
            padding: 30px 0 80px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        /* ===== CATEGORY CARD ===== */
        .category-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(42, 60, 84, 0.15);
            border-color: transparent;
        }

        .card-image-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .card-image-wrapper img {
            transform: scale(1.08);
        }

        .card-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                transparent 40%,
                rgba(15, 25, 35, 0.7) 100%
            );
        }

        .card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 5px 12px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            font-size: 0.65rem;
            font-weight: 600;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-tour-count {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: var(--lime);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--navy);
        }

        .card-body {
            padding: 22px 22px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card-body h3 {
            font-family: 'Roboto', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .card-body p {
            font-family: 'Barlow', sans-serif;
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.6;
            flex: 1;
            margin-bottom: 18px;
        }

        .card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 18px;
        }

        .card-tag {
            font-size: 0.65rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 15px;
            background: rgba(4, 176, 172, 0.08);
            color: var(--teal);
            border: 1px solid rgba(4, 176, 172, 0.15);
        }

        /* ===== GRADIENT BUTTONS ===== */
        .btn-destination {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            border: none;
            border-radius: 8px;
            font-family: 'Barlow', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-destination::before {
            content: '';
            position: absolute;
            inset: 0;
            background: inherit;
            filter: brightness(1.15);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn-destination:hover::before {
            opacity: 1;
        }

        .btn-destination:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            color: var(--white);
        }

        .btn-destination span,
        .btn-destination i {
            position: relative;
            z-index: 1;
        }

        /* Gradient Variations */
        .btn-gradient-1 { background: linear-gradient(135deg, #b1e314 0%, #04b0ac 100%); color: var(--navy); }
        .btn-gradient-1:hover { color: var(--navy); }
        .btn-gradient-2 { background: linear-gradient(135deg, #04b0ac 0%, #028a87 100%); }
        .btn-gradient-3 { background: linear-gradient(135deg, #2a3c54 0%, #04b0ac 100%); }
        .btn-gradient-4 { background: linear-gradient(135deg, #e85d3a 0%, #C0392B 100%); }
        .btn-gradient-5 { background: linear-gradient(135deg, #04b0ac 0%, #b1e314 100%); color: var(--navy); }
        .btn-gradient-5:hover { color: var(--navy); }
        .btn-gradient-6 { background: linear-gradient(135deg, #2a3c54 0%, #3a5070 100%); }
        .btn-gradient-7 { background: linear-gradient(135deg, #038d8a 0%, #2a3c54 100%); }
        .btn-gradient-8 { background: linear-gradient(135deg, #3a5070 0%, #04b0ac 100%); }

        /* ==================== FEATURED LARGE CARD ==================== */
        .featured-card {
            grid-column: span 2;
        }

        .featured-card .card-image-wrapper {
            height: 280px;
        }

        /* ==================== CTA BANNER ==================== */
        .cta-banner {
            background: var(--gradient-3);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(177, 227, 20, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-banner h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .cta-banner p {
            font-size: 0.9rem;
            opacity: 0.75;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-banner .btn-cta-banner {
            background: var(--lime);
            color: var(--navy) !important;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-banner .btn-cta-banner:hover {
            background: var(--lime-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(177, 227, 20, 0.3);
              color: var(--navy)!important;
        }






        .cta-banner .btn-cta-banner:hover {
    background: var(--lime-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 227, 20, 0.3);
    color: var(--navy) !important;
}

.cta-banner .btn-cta-banner {
    background: var(--lime);
    color: var(--navy) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    text-align: center;
}


.btn-destination {
  position: relative;
  z-index: 1; /* Crea la base de capas */
  isolation: isolate; /* Fuerza a que los z-index hijos se queden aquí */
}

.btn-destination::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: inherit; 
  filter: brightness(1.15); 
  opacity: 0; 
  transition: opacity 0.3s;
  z-index: -1; /* Mueve el fondo brillante detrás del texto */
  pointer-events: none; /* Evita que interfiera con el cursor */
}

.btn-destination:hover::before { 
  opacity: 1; 
}

a:hover

 {
    --bs-link-color-rgb: var(--white);
}

        /* ==================== FOOTER ==================== */
       

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .featured-card {
                grid-column: span 2;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 991px) {
            .btn-trip-planning {
                margin-top: 15px;
                width: 100%;
                justify-content: center;
            }

          
        }

        @media (max-width: 768px) {
            .destinations-hero {
                min-height: 350px;
            }

            .destinations-hero h1 {
                font-size: 2.4rem;
            }

            .destinations-hero p {
                font-size: 0.9rem;
            }

            .hero-stats {
                gap: 20px;
            }

            .hero-stat .number {
                font-size: 1.4rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .featured-card {
                grid-column: span 1;
            }

            .card-image-wrapper {
                height: 200px;
            }

            .featured-card .card-image-wrapper {
                height: 200px;
            }

            .cta-banner {
                padding: 30px 20px;
            }

            .cta-banner h3 {
                font-size: 1.3rem;
            }

           
        }

        @media (max-width: 480px) {
            .destinations-hero h1 {
                font-size: 1.9rem;
            }

            .card-body h3 {
                font-size: 1rem;
            }

          
        }






/* ==================== FOOTER ==================== */
