:root {
    --primary-color: #2ECC71; /* Verde Pasto */
    --secondary-color: #2C3E50; /* Azul Oscuro */
    --accent-color: #E74C3C; /* Rojo Acción */
    --light-bg: #F8F9FA;
}

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

h1, h2, h3, h4, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #fff;
}
.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    font-weight: 900;
}
.nav-link {
    color: var(--secondary-color);
    font-weight: 600;
}
.nav-link:hover {
    color: var(--primary-color);
}
.btn-cta {
    background-color: var(--accent-color);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.3s;
}
.btn-cta:hover {
    background-color: #c0392b;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/img/bubble-soccer-principal.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.promo-icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Feature Cards */
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.card-service {
    border: none;
    transition: transform 0.3s;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.card-service:hover {
    transform: translateY(-10px);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Pricing */
.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.pricing-card:hover {
    transform: scale(1.03);
    border-color: var(--primary-color);
}
.pricing-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}
.pricing-header.popular {
    background-color: var(--primary-color);
}
.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.pricing-card ul li {
    margin-bottom: 10px;
}

/* Scroll Offset for anchors behind sticky header */
.scroll-offset {
    scroll-margin-top: 100px;
}

/* Gallery Images */
.gallery-img {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.02);
}

/* Testimonials */
.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    border: 1px solid #eee;
}

/* 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;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0;
}
footer a {
    color: #25d366;
    text-decoration: none;
}
footer a:hover {
    color: var(--primary-color);
}

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