/* FuteMAX - CSS Ultra Moderno para Times */
:root {
    --primary-green: #00ff41;
    --secondary-green: #00cc33;
    --accent-green: #39ff14;
    --neon-green: #00ff00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --shadow-green: rgba(0, 255, 65, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    --gradient-neon: linear-gradient(135deg, var(--neon-green), var(--accent-green));
    --gradient-bg: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    --border-radius: 25px;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Ultra Moderna */
.team-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-bg);
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(0, 255, 65, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(57, 255, 20, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 204, 51, 0.08) 0%, transparent 70%);
    animation: heroBackgroundPulse 10s ease-in-out infinite;
}

@keyframes heroBackgroundPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.team-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 65, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(57, 255, 20, 0.02) 50%, transparent 70%);
    animation: heroPattern 15s linear infinite;
}

@keyframes heroPattern {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.team-hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 1000px;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 100px var(--shadow-green);
    animation: heroContentFloat 8s ease-in-out infinite;
}

@keyframes heroContentFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.team-logo {
    width: 250px;
    height: 250px;
    margin: 0 auto 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    padding: 30px;
    box-shadow: 
        0 0 80px var(--shadow-green),
        0 0 160px rgba(0, 255, 65, 0.3),
        inset 0 0 40px rgba(255, 255, 255, 0.15);
    animation: logoMegaSpin 25s linear infinite, logoMegaPulse 4s ease-in-out infinite alternate;
    transition: var(--transition);
    object-fit: contain;
    position: relative;
}

.team-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: var(--gradient-neon);
    opacity: 0;
    animation: logoRing 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoMegaSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoMegaPulse {
    from { 
        box-shadow: 
            0 0 80px var(--shadow-green),
            0 0 160px rgba(0, 255, 65, 0.3);
        transform: scale(1);
    }
    to { 
        box-shadow: 
            0 0 120px var(--shadow-green),
            0 0 240px rgba(0, 255, 65, 0.5);
        transform: scale(1.05);
    }
}

@keyframes logoRing {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

.team-name {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(0, 255, 65, 0.6);
    letter-spacing: -3px;
    animation: textMegaGlow 5s ease-in-out infinite alternate;
    position: relative;
}

.team-name::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: textShadow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes textMegaGlow {
    from { 
        filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.4));
        transform: scale(1);
    }
    to { 
        filter: drop-shadow(0 0 60px rgba(0, 255, 65, 0.8));
        transform: scale(1.02);
    }
}

@keyframes textShadow {
    0%, 100% { opacity: 0; transform: translate(0, 0); }
    50% { opacity: 0.2; transform: translate(3px, 3px); }
}

.team-league {
    font-size: 2rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 6px;
    position: relative;
    display: inline-block;
    animation: leagueGlow 3s ease-in-out infinite alternate;
}

@keyframes leagueGlow {
    from { text-shadow: 0 0 20px rgba(57, 255, 20, 0.5); }
    to { text-shadow: 0 0 40px rgba(57, 255, 20, 0.8); }
}

.team-league::before,
.team-league::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: leagueLineExpand 3s ease-in-out infinite alternate;
}

.team-league::before { left: -180px; }
.team-league::after { right: -180px; }

@keyframes leagueLineExpand {
    from { width: 100px; opacity: 0.6; }
    to { width: 150px; opacity: 1; }
}

.team-description {
    font-size: 1.6rem;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: descriptionFade 2s ease-in-out infinite alternate;
}

@keyframes descriptionFade {
    from { opacity: 0.8; }
    to { opacity: 1; }
}

/* Quick Stats Ultra Modernas */
.team-stats-quick {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding: 0 20px;
}

.quick-stat {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(0, 255, 65, 0.3);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.quick-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.15), transparent);
    transition: left 0.8s ease;
}

.quick-stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.8s ease;
}

.quick-stat:hover::before {
    left: 100%;
}

.quick-stat:hover::after {
    transform: scaleX(1);
}

.quick-stat:hover {
    transform: translateY(-20px) scale(1.08);
    border-color: var(--primary-green);
    background: var(--card-hover);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 100px var(--shadow-green);
}

.quick-stat i {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.8));
    animation: iconMegaBounce 3s ease-in-out infinite;
}

@keyframes iconMegaBounce {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-8px) rotateY(180deg); }
}

.quick-stat .stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    display: block;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statValuePulse 2s ease-in-out infinite alternate;
}

@keyframes statValuePulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.quick-stat .stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

/* Team Info Section Ultra Moderna */
.team-info {
    padding: 150px 0;
    background: var(--dark-bg);
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    box-shadow: 0 0 30px var(--shadow-green);
}

.section-title {
    text-align: center;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: sectionTitleGlow 4s ease-in-out infinite alternate;
}

@keyframes sectionTitleGlow {
    from { filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.4)); }
    to { filter: drop-shadow(0 0 60px rgba(0, 255, 65, 0.8)); }
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 100px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.info-card {
    background: var(--card-bg);
    padding: 80px 50px;
    border-radius: 30px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.8s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    transition: all 0.8s ease;
    border-radius: 50%;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover::after {
    width: 500px;
    height: 500px;
}

.info-card:hover {
    transform: translateY(-25px) scale(1.05);
    border-color: var(--primary-green);
    background: var(--card-hover);
    box-shadow: 
        0 50px 120px rgba(0, 0, 0, 0.6),
        0 0 120px var(--shadow-green);
}

.info-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 
        0 0 60px var(--shadow-green),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    animation: iconMegaRotate 12s linear infinite;
    position: relative;
    z-index: 2;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: var(--gradient-neon);
    opacity: 0;
    animation: iconHalo 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes iconMegaRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes iconHalo {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.info-icon i {
    font-size: 3rem;
    color: #000;
    font-weight: bold;
}

.info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.info-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* History Section Ultra Moderna */
.team-history {
    padding: 150px 0;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.team-history::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 65, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(57, 255, 20, 0.05) 0%, transparent 50%);
    animation: historyBackground 20s ease-in-out infinite;
}

@keyframes historyBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.history-content {
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
    z-index: 2;
}

.history-text {
    background: var(--card-bg);
    padding: 100px 80px;
    border-radius: 40px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    color: var(--text-secondary);
    line-height: 2.5;
    font-size: 1.4rem;
    position: relative;
    backdrop-filter: blur(30px);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin-bottom: 80px;
    animation: historyTextFloat 10s ease-in-out infinite;
}

@keyframes historyTextFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.history-text::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50px;
    font-size: 10rem;
    color: var(--primary-green);
    opacity: 0.4;
    font-family: Georgia, serif;
    line-height: 1;
    animation: quoteGlow 6s ease-in-out infinite alternate;
}

@keyframes quoteGlow {
    from { text-shadow: 0 0 20px rgba(0, 255, 65, 0.3); }
    to { text-shadow: 0 0 40px rgba(0, 255, 65, 0.6); }
}

.history-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 40px 40px 0;
    box-shadow: 0 0 30px var(--shadow-green);
}

/* Watch Live Section Ultra Moderna */
.watch-live-section {
    padding: 150px 0;
    background: var(--dark-bg);
    position: relative;
    text-align: center;
    overflow: hidden;
}

.watch-live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 65, 0.15) 0%, transparent 70%);
    animation: watchBackground 8s ease-in-out infinite;
}

@keyframes watchBackground {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.watch-live-content {
    position: relative;
    z-index: 2;
}

.watch-live-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: watchTitleGlow 5s ease-in-out infinite alternate;
}

@keyframes watchTitleGlow {
    from { filter: drop-shadow(0 0 30px rgba(0, 255, 65, 0.4)); }
    to { filter: drop-shadow(0 0 80px rgba(0, 255, 65, 0.8)); }
}

.watch-live-description {
    font-size: 1.6rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.watch-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--gradient-primary);
    color: #000;
    padding: 25px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    box-shadow: 
        0 15px 40px rgba(0, 255, 65, 0.5),
        0 0 80px rgba(0, 255, 65, 0.3);
    animation: btnMegaPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes btnMegaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 15px 40px rgba(0, 255, 65, 0.5),
            0 0 80px rgba(0, 255, 65, 0.3);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 
            0 25px 60px rgba(0, 255, 65, 0.7),
            0 0 120px rgba(0, 255, 65, 0.5);
    }
}

.watch-live-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.watch-live-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.watch-live-btn:hover::before {
    left: 100%;
}

.watch-live-btn:hover::after {
    width: 300px;
    height: 300px;
}

.watch-live-btn:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 
        0 30px 80px rgba(0, 255, 65, 0.8),
        0 0 150px rgba(0, 255, 65, 0.6);
}

.watch-live-btn i {
    font-size: 1.8rem;
    animation: iconMegaSpin 3s linear infinite;
}

@keyframes iconMegaSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design Ultra Responsivo */
@media (max-width: 768px) {
    .team-hero-content {
        padding: 50px 30px;
        margin: 20px;
    }
    
    .team-logo {
        width: 180px;
        height: 180px;
    }
    
    .team-stats-quick {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-text {
        padding: 60px 40px;
        font-size: 1.2rem;
    }
    
    .watch-live-btn {
        padding: 20px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .team-league::before,
    .team-league::after {
        display: none;
    }
    
    .quick-stat {
        padding: 40px 30px;
    }
    
    .info-card {
        padding: 60px 40px;
    }
    
    .history-text {
        padding: 40px 30px;
        font-size: 1.1rem;
    }
}

/* Animações Extras */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--shadow-green); }
    50% { box-shadow: 0 0 40px var(--shadow-green); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-neon);
}

/* Seleção de Texto */
::selection {
    background: var(--primary-green);
    color: #000;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}