:root {
            --primary-green: #2ECC71; /* Verde Bosque */
            --secondary-green: #43A047; /* Verde Hoja */
            --earth-color: #1B5E20; /* Verde Oscuro Profundo */
            --light-bg: #F1F8E9; /* Fondo muy claro verdoso */
            --white: #ffffff;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--white);
        }

        /* Navbar */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .navbar-brand {
            color: var(--primary-green) !important;
            font-weight: 800;
            font-size: 1.5rem;
        }
        .nav-link {
            color: #555 !important;
            font-weight: 600;
            transition: color 0.3s;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-green) !important;
        }
        .btn-custom {
            background-color: var(--primary-green);
            color: white;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
        }
        .btn-custom:hover {
            background-color: var(--earth-color);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/img/gallery/bubble-soccer-team-building.jpg');
            background-size: cover;
            background-position: center;
            height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        }
        .hero-title {
            font-size: 3.5rem;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Services & Features */
        .section-padding {
            padding: 80px 0;
        }
        .bg-light-green {
            background-color: var(--light-bg);
        }
        .service-card {
            border: none;
            border-radius: 15px;
            transition: transform 0.3s;
            height: 100%;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .icon-box {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }

        /* Features List */
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .feature-item i {
            color: var(--secondary-green);
            margin-right: 15px;
            font-size: 1.5rem;
        }

        /* Gallery */
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s;
            cursor: pointer;
        }
        .gallery-img:hover {
            transform: scale(1.03);
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        .whatsapp-float:hover {
            background-color: #128C7E;
            color: white;
            transform: scale(1.1);
        }

        /* Footer */
        footer {
            background-color: var(--earth-color);
            color: white;
            padding: 50px 0;
        }
        footer h5 {
            color: #A5D6A7;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
        }
        footer a:hover {
            color: white;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.2rem; }
            .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
        }