/* Wojo Soccer Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 46, 22, 0.7) 0%, rgba(6, 78, 59, 0.6) 30%, rgba(6, 95, 70, 0.5) 70%, rgba(16, 185, 129, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    z-index: -2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 46, 22, 0.7) 0%, rgba(6, 78, 59, 0.6) 30%, rgba(6, 95, 70, 0.5) 70%, rgba(16, 185, 129, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.025em;
}

.hero-logo {
    width: 320px;
    height: auto;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    max-width: 600px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

/* Como Funciona Section */
.como-funciona {
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #052e16;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #374151;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #052e16;
    margin-bottom: 15px;
}

.step-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Training Photos Section */
.training-photos {
    background: linear-gradient(180deg, #bbf7d0 0%, #86efac 50%, #4ade80 100%);
    padding: 100px 20px;
    text-align: center;
}

.photos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.photo-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(6, 78, 59, 0.1);
    transition: transform 0.3s ease;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.photo-card:hover {
    transform: translateY(-5px);
}

.training-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-card:hover .training-photo {
    transform: scale(1.05);
}

.photo-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 46, 22, 0.9), rgba(5, 46, 22, 0.7), transparent);
    color: white;
    padding: 20px 15px 15px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    padding: 100px 20px;
    text-align: center;
}

.testimonials .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(6, 78, 59, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-video {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.testimonial-info {
    text-align: left;
}

.parent-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #052e16;
    margin-bottom: 5px;
}

.player-info {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Player Progress Section */
.player-progress {
    background: linear-gradient(180deg, #052e16 0%, #064e3b 50%, #065f46 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.player-progress .section-title {
    color: white;
}

.player-progress .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.carousel-btn {
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn.active {
    background: rgba(16, 185, 129, 0.8);
    border-color: #10b981;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.player-profile {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: #333;
}

.player-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.player-avatar {
    width: 240px;
    height: 240px;
    border-radius: 20px;
    background: linear-gradient(135deg, #064e3b, #065f46);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
    font-size: 2rem;
    overflow: hidden;
}

.player-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.player-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #052e16;
    margin-bottom: 8px;
}

.player-details {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.veocam-badge {
    display: inline-block;
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.metrics-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.metrics-table th {
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: white;
    padding: 12px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.metrics-table td {
    padding: 12px 8px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.metric-name-cell {
    font-weight: 600;
    color: #052e16;
    text-align: left !important;
    padding-left: 15px !important;
}

.metric-initial-cell {
    background: #f1f5f9;
    color: #475569;
    font-weight: 600;
}

.metric-current-cell {
    background: #f0f9ff;
    color: #0369a1;
    font-weight: 600;
}

.metric-improvement-cell {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.metric-improvement-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.timeline-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e2e8f0;
}

.timeline-period {
    font-size: 1.1rem;
    font-weight: 700;
    color: #064e3b;
}

/* Video Highlights Carousel */
.video-highlights {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
}

.highlights-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #064e3b;
    text-align: center;
    margin-bottom: 20px;
}

.video-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.video-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.video-player {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
}

.video-overlay-large {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 15px;
    border-radius: 8px;
    pointer-events: none;
    z-index: 2;
}

.video-label-large {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.video-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: #064e3b;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.video-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.video-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(6, 78, 59, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot.active {
    background: #064e3b;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .video-carousel-wrapper {
        height: 300px;
    }
    
    .video-player {
        max-height: 300px;
    }
    
    .video-overlay-large {
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
    }
    
    .video-label-large {
        font-size: 12px;
    }
    
    .video-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}
/* Pricing Plans Section */
.pricing-plans {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    padding: 100px 20px;
    text-align: center;
}

.pricing-plans .section-title {
    color: #052e16;
}

.pricing-plans .section-subtitle {
    color: #374151;
}

.plans-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.toggle-btn {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 78, 59, 0.3);
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-container.hidden {
    display: none !important;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border-color: #10b981;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #052e16;
    margin-bottom: 10px;
}

.plan-duration {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
}

.plan-sessions {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

.plan-price {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #052e16;
    margin-bottom: 25px;
}

.plan-price::before {
    content: "$";
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-features {
    text-align: left;
}

.feature-item {
    color: #374151;
    margin-bottom: 12px;
    padding-left: 5px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-description {
    font-weight: 600;
    color: #052e16;
    margin-bottom: 15px;
    text-align: center;
}

.plan-details {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 15px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #065f46 0%, #047857 50%, #064e3b 100%);
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    display: grid;
    gap: 15px;
    max-width: 500px;
    margin: 40px auto 0;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-half {
    flex: 1;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
}

.submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #052e16 0%, #064e3b 50%, #020617 100%);
    padding: 40px 20px 20px;
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-tagline {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-link {
    color: #10b981;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #059669;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Hide mobile metrics on desktop */
.metrics-container {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step {
        flex-direction: column !important;
        text-align: center;
    }

    .player-profile {
        padding: 15px;
        margin: 0 5px;
        max-width: none;
        width: calc(100% - 10px);
        box-sizing: border-box;
    }

    .player-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .player-avatar {
        width: 160px;
        height: 160px;
        margin: 0 auto 15px;
    }

    .player-name {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .player-details {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .carousel-container {
        padding: 0 10px;
        max-width: 100%;
        overflow: hidden;
    }

    .carousel-wrapper {
        width: 100%;
    }

    .carousel-slide {
        width: 100%;
        min-width: 100%;
    }

    .carousel-nav {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .carousel-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        min-width: 120px;
        text-align: center;
    }

    /* Desktop table styles */
    .metrics-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        margin-top: 30px;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .metrics-table th {
        background: linear-gradient(135deg, #064e3b, #065f46);
        color: white;
        padding: 20px;
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .metrics-table td {
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
        font-size: 1rem;
    }

    .metric-name-cell {
        font-weight: 600;
        color: #1f2937;
        text-align: left;
    }

    .metric-initial-cell {
        color: #64748b;
        font-weight: 600;
    }

    .metric-current-cell {
        color: #0369a1;
        font-weight: 700;
    }

    .metric-improvement-cell {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        font-weight: 800;
        border-radius: 20px;
        padding: 8px 16px !important;
    }

    .metrics-table tr:last-child td {
        border-bottom: none;
    }

    .metrics-table tr:hover {
        background: #f8fafc;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }
}

/* Mobile-specific metrics grid */
@media (max-width: 768px) {
        /* Hide table on mobile, show card grid */
        .metrics-table {
            display: none;
        }

        .metrics-container {
            display: block !important;
            margin-top: 30px;
        }

        .metrics-grid {
            grid-template-columns: 1fr;
            gap: 12px;
            margin: 20px 0;
            padding: 0 5px;
        }

        .metric-card {
            padding: 16px;
            margin: 0;
            width: 100%;
            box-sizing: border-box;
        }

        .metric-name {
            font-size: 1rem;
            margin-bottom: 12px;
        }

        .metric-values {
            gap: 12px;
        }

        .metric-label {
            font-size: 0.75rem;
        }

        .metric-number {
            font-size: 1rem;
        }

        .metric-improvement {
            padding: 6px 12px;
            font-size: 0.9rem;
        }
    }

    .metric-card {
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-left: 4px solid #10b981;
        transition: transform 0.2s ease;
    }

    .metric-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .metric-name {
        font-weight: 700;
        color: #052e16;
        font-size: 1.1rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .metric-values {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 15px;
    }

    .metric-value {
        text-align: center;
        flex: 1;
    }

    .metric-label {
        font-size: 0.8rem;
        color: #6b7280;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }

    .metric-number {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .metric-initial {
        color: #64748b;
        background: #f1f5f9;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .metric-current {
        color: #0369a1;
        background: #dbeafe;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .metric-improvement {
        color: white;
        background: linear-gradient(135deg, #10b981, #059669);
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 800;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    /* Hide old mobile metrics on mobile */
    .mobile-metrics {
        display: none;
    }

    .video-carousel-container {
        flex-direction: column;
        gap: 10px;
    }

    .video-carousel-wrapper {
        width: 280px;
        height: 180px;
    }

    .video-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }

/* Smaller mobile devices (iPhone 12 Pro and similar) */
@media (max-width: 428px) {
    .metrics-table {
        display: none;
    }

    .metrics-container {
        display: block !important;
    }
    .player-profile {
        padding: 12px;
        margin: 0 5px;
        width: calc(100% - 10px);
        border-radius: 15px;
    }

    .player-avatar {
        width: 140px;
        height: 140px;
    }

    .player-name {
        font-size: 1.3rem;
    }

    .player-details {
        font-size: 0.8rem;
    }

    .carousel-nav {
        padding: 0 5px;
        gap: 6px;
    }

    .carousel-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 100px;
    }

    .metrics-grid {
        padding: 0;
        gap: 10px;
    }

    .metric-card {
        padding: 14px;
        border-radius: 12px;
    }

    .metric-name {
        font-size: 0.95rem;
    }

    .metric-values {
        gap: 10px;
    }

    .metric-number {
        font-size: 0.95rem;
    }

    .metric-improvement {
        padding: 5px 10px;
        font-size: 0.85rem;
    }
}

/* Desktop - hide mobile metrics by default */
.mobile-metrics {
    display: none;
}

/* Leagues and Teams Section */
.leagues-teams-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: 1fr;
    gap: 30px;
    margin: 60px 0;
    align-items: stretch;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.primary-card {
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.02) 100%);
}

.service-card.primary-card::before {
    opacity: 1;
}


.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: #6b7280;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-features li {
    padding: 5px 0;
    color: #374151;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}



/* Team CTA Section */
.team-cta-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.team-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.team-cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.team-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-cta-btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.team-cta-btn.primary {
    background: #10b981;
    color: white;
}

.team-cta-btn.primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.team-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.team-cta-btn.secondary:hover {
    background: white;
    color: #1f2937;
}

/* Mobile Styles for Leagues and Teams */
@media (max-width: 768px) {
    .leagues-teams-section {
        padding: 60px 15px;
    }

    .team-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        margin: 40px 0;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-features li {
        padding: 4px 0;
        font-size: 0.85rem;
    }


    .team-cta-section {
        padding: 30px 16px;
    }

    .team-cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .team-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .team-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .team-cta-btn {
        padding: 12px 20px;
        min-width: auto;
        font-size: 0.9rem;
    }
}
/* Fix para video carousel - FORZAR VISIBILIDAD */
.video-carousel-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    overflow: visible !important;
}

.video-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transition: opacity 0.5s ease !important;
}

.video-slide:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.video-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10 !important;
    pointer-events: auto !important;
}
/* Ajuste especial para la foto de análisis con IA */
.photo-card:nth-child(4) .training-photo {
    object-position: center top;
}