/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #A50044;
    --secondary-color: #004D98;
    --accent-color: #EDBB00;
    --dark-color: #0B1F3F;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo .subtitle {
    color: var(--light-color);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-color);
    transition: all 0.3s ease;
}

/* Hero Section with Background Image */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(165, 0, 68, 0.95) 0%, rgba(0, 77, 152, 0.95) 100%),
                url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?q=80&w=1920') center/cover;
    background-attachment: fixed;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(165, 0, 68, 0.15) 0px,
        rgba(165, 0, 68, 0.15) 10px,
        rgba(0, 77, 152, 0.15) 10px,
        rgba(0, 77, 152, 0.15) 20px
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-color);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 4px 20px rgba(165, 0, 68, 0.6), 0 0 40px rgba(237, 187, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: fadeInUp 1.2s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.9;
    animation: fadeInUp 1.4s ease;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 187, 0, 0.4);
    animation: fadeInUp 1.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 187, 0, 0.6);
    background: var(--light-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Title */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Biografía Section */
.biografia {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7fc 100%);
}

.bio-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bio-text-full {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.bio-text-full h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.bio-text-full h3:first-child {
    margin-top: 0;
}

.bio-text-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.bio-text-full strong {
    color: var(--primary-color);
    font-weight: 600;
}

.achievements-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.achievements-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.05rem;
}

.achievements-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
}

/* Estadísticas Section */
.estadisticas {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.estadisticas .section-title {
    color: white;
}

.estadisticas .section-title::after {
    background: var(--accent-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-detail {
    font-size: 0.95rem;
    color: var(--text-light);
}

.stats-detailed {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
}

.stats-detailed h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.club-stats,
.international-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.club-item,
.tournament-stats {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.club-item h4,
.tournament-stats h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stats-list {
    list-style: none;
    padding: 0;
}

.stats-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.stats-list li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.stats-list li strong {
    color: var(--primary-color);
}

.records-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.record-category {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--secondary-color);
}

.record-category h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Conquistas Section */
.conquistas {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 100%);
}

.conquistas-content {
    max-width: 1200px;
    margin: 0 auto;
}

.conquista-section {
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.conquista-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.conquista-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.conquista-item {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.conquista-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.conquista-item h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.conquista-item ul {
    list-style: none;
    padding: 0;
}

.conquista-item li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.conquista-item li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.conquista-item li strong {
    color: var(--primary-color);
}

.national-team-section {
    max-width: 900px;
    margin: 0 auto;
}

.major-awards {
    list-style: none;
    padding: 0;
}

.major-awards li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--gray-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
    font-size: 1.1rem;
}

.awards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.award-category {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--secondary-color);
}

.award-category h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.award-category ul {
    list-style: none;
    padding: 0;
}

.award-category li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.award-category li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.record-item {
    background: var(--gray-color);
    padding: 2rem;
    border-radius: 15px;
    border-top: 3px solid var(--accent-color);
}

.record-item h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.record-item ul {
    list-style: none;
    padding: 0;
}

.record-item li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.record-item li::before {
    content: '🥇';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Legado Section */
.legado {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.legado .section-title {
    color: var(--accent-color);
}

.legado .section-title::after {
    background: var(--accent-color);
}

.legado-content-full {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.legado-content-full h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legado-content-full h3:first-child {
    margin-top: 0;
}

.legado-content-full p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.quote-box {
    background: rgba(237, 187, 0, 0.2);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quote-box cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
    text-align: right;
}

.legacy-numbers {
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
}

.legacy-numbers h3 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.number-item {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.number-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-tribute {
    margin-top: 3rem;
    text-align: center;
    background: rgba(237, 187, 0, 0.2);
    padding: 3rem;
    border-radius: 15px;
}

.final-tribute h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.tribute-text {
    font-size: 1.3rem;
    line-height: 2;
    font-style: italic;
    color: white;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-tribute {
    font-style: italic;
    margin-top: 0.5rem;
    color: rgba(165, 0, 68, 0.9);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(165, 0, 68, 0.2);
    border-radius: 8px;
    display: inline-block;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Responsivo */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 4rem;
    }

    .club-stats,
    .international-stats,
    .records-section,
    .awards-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .bio-text-full {
        padding: 2rem;
    }

    .stats-detailed {
        padding: 2rem;
    }

    .conquista-section {
        padding: 2rem;
    }

    .legado-content-full {
        padding: 2rem;
    }

    .big-number {
        font-size: 3rem;
    }
}

/* Animações suaves ao scroll */
@media (prefers-reduced-motion: no-preference) {
    .stat-card,
    .conquista-item,
    .record-item {
        opacity: 0;
        animation: fadeIn 0.6s ease forwards;
    }

    .stat-card:nth-child(1) { animation-delay: 0.1s; }
    .stat-card:nth-child(2) { animation-delay: 0.2s; }
    .stat-card:nth-child(3) { animation-delay: 0.3s; }
    .stat-card:nth-child(4) { animation-delay: 0.4s; }
    .stat-card:nth-child(5) { animation-delay: 0.5s; }
    .stat-card:nth-child(6) { animation-delay: 0.6s; }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
}

/* Scroll suave */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
