/* style.css - Diseño minimalista responsivo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 28px;
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: #2e7d32;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2e7d32;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2e7d32;
    color: white;
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #2e7d32;
    border: 2px solid #2e7d32;
}

.btn-secondary:hover {
    background: #2e7d32;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.stats-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2e7d32;
    display: block;
}

/* Credibilidad */
.credibility {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.cred-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
}

.cred-item i {
    font-size: 1.5rem;
    color: #2e7d32;
}

/* Calendario */
.calendar {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    color: #2e7d32;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2rem;
    margin-top: 8px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.match-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.match-card:hover {
    transform: translateY(-4px);
}

.match-date {
    background: #2e7d32;
    color: white;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    min-width: 70px;
}

.match-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.match-date .month {
    font-size: 0.8rem;
    font-weight: 600;
}

.match-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.match-info p {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 4px 0;
}

/* Beneficios */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px 20px;
    background: #f8f9fa;
    border-radius: 24px;
    transition: all 0.3s;
}

.benefit-card i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 12px;
}

/* Testimonios */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-card i {
    color: #2e7d32;
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card h4 {
    color: #2e7d32;
}

/* Contacto */
.contact {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: #f8f9fa;
    border-radius: 32px;
    padding: 48px;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-details {
    margin-top: 32px;
}

.contact-details p {
    margin: 12px 0;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

.alert {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #2e7d32;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    nav {
        gap: 20px;
    }
    
    .contact-wrapper {
        padding: 24px;
    }
    
    .stats-card {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SLIDER DE FONDO DEPORTIVO ===== */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Capa de transparencia para legibilidad */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

/* Asegurar que el contenido esté por encima del slider */
.hero .container {
    position: relative;
    z-index: 2;
}

/* Indicadores del slider (puntos) */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 20px;
}

.dot:hover {
    background: var(--primary);
}

/* Ajustes para el contenido del hero con fondo oscuro */
.hero-content h1,
.hero-content p {
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content .badge {
    background: var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stats-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
}

/* Responsive del slider */
@media (max-width: 768px) {
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    .hero-content h1 {
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }
}

