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

        /* Header Fixed */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: all 0.4s ease;
        }

        .header.scrolled {
            background: rgba(0, 19, 61, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
        }

        /* Hero Section */
        .hero-section {
            width: 100vw;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 200px 64px 48px;
            background: 
                linear-gradient(360deg, #00133D 0%, rgba(1, 33, 100, 0.45) 37.96%, rgba(1, 36, 109, 0.82) 46.46%, rgba(1, 39, 117, 0.74) 56.32%, rgba(1, 44, 131, 0.3) 74.94%), 
                radial-gradient(61.99% 50% at 50% 50%, rgba(0, 9, 255, 0) 0%, rgba(0, 9, 255, 0.2) 100%), 
                url('https://poker.grupomomento.com.br/wp-content/themes/teste/imagens/backgroundpoke.jpg');
            background-blend-mode: normal, normal, luminosity;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            margin: 0;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: -100px;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            width: 100%;
            max-width: 1312px;
            z-index: 1;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 800;
            font-size: 80px;
            line-height: 120%;
            text-transform: uppercase;
            color: #FFFFFF;
            text-shadow: 0px 4px 24px #002060, 0px 4px 12px rgba(0, 0, 0, 0.2);
            text-align: center;
            margin: 0;
        }

        .hero-number {
            color: #D70E09;
        }

        .hero-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 28px;
            line-height: 29px;
            color: #F2F2F2;
            text-shadow: 0px 4px 24px #002060, 0px 4px 12px rgba(0, 0, 0, 0.2);
            text-align: center;
            margin: 0;
        }

        .btn-hero {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 0px 36px;
            gap: 6px;
            height: 60px;
            background: #D70E09;
            box-shadow: 0px 8px 28px rgba(215, 14, 9, 0.6), inset 0px 4px 4px rgba(255, 0, 0, 0.3);
            border-radius: 28px;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 120%;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #FFFFFF;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0px 12px 32px rgba(215, 14, 9, 0.7), inset 0px 4px 4px rgba(255, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-section {
                padding: 100px 40px 40px;
                min-height: 600px;
            }

            .hero-title {
                font-size: 60px;
            }

            .hero-subtitle {
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 20px 40px;
                min-height: 500px;
                border-radius: 12px;
            }

            .hero-title {
                font-size: 40px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .btn-hero {
                height: 50px;
                font-size: 14px;
                padding: 0px 28px;
            }
        }

        /* Features Section */
        .features-section {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: stretch;
            gap: 24px;
            padding: 80px 64px;
            max-width: 1440px;
            margin: 0 auto;
        }

        .feature-card {
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 40px;
            gap: 20px;
            width: 364px;
            height: 458px;
            background: radial-gradient(98.57% 98.57% at 102.07% 1.43%, rgba(36, 160, 237, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
            backdrop-filter: blur(27px);
            -webkit-backdrop-filter: blur(27px);
            border-radius: 12px;
            border: 1px solid rgba(36, 160, 237, 0.15);
            flex: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px);
        }

        .feature-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            border-color: rgba(215, 14, 9, 0.4);
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0px 20px 40px rgba(215, 14, 9, 0.3);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .feature-title {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 800;
            font-size: 36px;
            line-height: 44px;
            text-transform: uppercase;
            color: #D70E09;
            margin: 0;
            flex: none;
        }

        .feature-number {
            color: #D70E09;
        }

        .feature-text {
            font-family: 'Montserrat', sans-serif;
            font-style: normal;
            font-weight: 400;
            font-size: 18px;
            line-height: 150%;
            display: flex;
            align-items: center;
            color: #FFFFFF;
            margin: 0;
            width: 284px;
            flex: none;
            align-self: stretch;
        }

        @media (max-width: 1024px) {
            .features-section {
                flex-direction: column;
                align-items: center;
                gap: 20px;
                padding: 60px 20px;
            }

            .feature-card {
                width: 100%;
                max-width: 364px;
            }
        }

        @media (max-width: 768px) {
            .feature-card {
                padding: 32px 24px;
                height: auto;
            }

            .feature-icon {
                width: 70px;
                height: 70px;
            }

            .feature-title {
                font-size: 28px;
                line-height: 36px;
            }

            .feature-text {
                font-size: 16px;
                width: 100%;
            }
        }

        /* Empowerment Section */
        .empowerment-section {
            width: 100%;
            background: linear-gradient(180deg, #00133D 0%, #001845 100%);
            padding: 70px 64px;
            position: relative;
            overflow: hidden;
        }

        .empowerment-container {
            max-width: 950px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px;
            position: relative;
            z-index: 2;
        }

        .empowerment-photos-left,
        .empowerment-photos-right {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 1;
        }

        .empowerment-photos-left {
            left: 50px;
        }

        .empowerment-photos-right {
            right: 50px;
        }

        .empowerment-photo {
            width: 115px;
            height: 150px;
            border-radius: 12px;
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
        }

        .empowerment-photo:first-child {
            transform: rotate(-8deg);
        }

        .empowerment-photo:last-child {
            transform: rotate(8deg);
        }

        .empowerment-photos-right .empowerment-photo:first-child {
            transform: rotate(8deg);
        }

        .empowerment-photos-right .empowerment-photo:last-child {
            transform: rotate(-8deg);
        }

        .empowerment-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .empowerment-title {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 600;
            font-size: 36px;
            line-height: 130%;
            text-align: center;
            color: #FFFFFF;
            margin: 0;
            max-width: 750px;
        }

        .empowerment-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 700;
            font-size: 18px;
            line-height: 150%;
            text-align: center;
            color: #FFFFFF;
            margin: 0;
        }

        .btn-empowerment {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 0px 36px;
            gap: 6px;
            height: 60px;
            background: #D70E09;
            box-shadow: 0px 8px 28px rgba(215, 14, 9, 0.6), inset 0px 4px 4px rgba(255, 0, 0, 0.3);
            border-radius: 28px;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 120%;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #FFFFFF;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-empowerment:hover {
            transform: translateY(-3px);
            box-shadow: 0px 12px 32px rgba(215, 14, 9, 0.7), inset 0px 4px 4px rgba(255, 0, 0, 0.3);
        }

        @media (max-width: 1200px) {
            .empowerment-photos-left {
                left: 30px;
            }

            .empowerment-photos-right {
                right: 30px;
            }

            .empowerment-photo {
                width: 110px;
                height: 150px;
            }
        }

        @media (max-width: 1024px) {
            .empowerment-section {
                padding: 60px 40px;
            }

            .empowerment-photos-left,
            .empowerment-photos-right {
                position: static;
                transform: none;
                flex-direction: row;
                justify-content: center;
                width: 100%;
            }

            .empowerment-container {
                gap: 32px;
            }

            .empowerment-photo {
                width: 100px;
                height: 130px;
            }

            .empowerment-title {
                font-size: 28px;
            }

            .empowerment-subtitle {
                font-size: 16px;
            }
        }

        @media (max-width: 768px) {
            .empowerment-section {
                padding: 50px 20px;
            }

            .empowerment-container {
                gap: 24px;
            }

            .empowerment-photos-left,
            .empowerment-photos-right {
                gap: 12px;
            }

            .empowerment-photo {
                width: 80px;
                height: 110px;
            }

            .empowerment-title {
                font-size: 24px;
                line-height: 140%;
            }

            .empowerment-subtitle {
                font-size: 14px;
            }

            .btn-empowerment {
                height: 50px;
                font-size: 14px;
                padding: 0px 28px;
            }
        }

        @media (max-width: 480px) {
            .empowerment-photo {
                width: 70px;
                height: 95px;
            }

            .empowerment-photos-left,
            .empowerment-photos-right {
                gap: 8px;
            }

            .empowerment-title {
                font-size: 20px;
            }

            .empowerment-subtitle {
                font-size: 13px;
            }
        }

        /* Stats Section */
        .stats-section {
            width: 100vw;
            background: linear-gradient(180deg, #00133D 0%, #001845 100%);
            padding: 80px 64px;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            margin-top: -40px;
        }

        .stats-container {
            max-width: 1312px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            align-items: center;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 800;
            font-size: 56px;
            line-height: 120%;
            text-transform: uppercase;
            color: #FFFFFF;
            margin: 0;
            position: relative;
            background: #D70E09;
            padding: 10px 24px;
            border-radius: 8px;
            box-shadow: 0px 4px 12px rgba(215, 14, 9, 0.4);
        }

        .stat-label {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 120%;
            color: #FFFFFF;
            margin: 0;
        }

        @media (max-width: 1024px) {
            .stats-section {
                padding: 60px 40px;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .stat-number {
                font-size: 48px;
                padding: 8px 20px;
            }

            .stat-label {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 50px 20px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stat-number {
                font-size: 40px;
                padding: 8px 18px;
            }

            .stat-label {
                font-size: 14px;
            }
        }

        /* Tournaments Section - Where We Send You */
        .tournaments-section {
            width: 100vw;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
            padding: 100px 64px;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow: hidden;
            transform: skewY(-1.5deg);
            margin-top: 80px;
            margin-bottom: -50px;
            padding-top: 150px;
            padding-bottom: 150px;
        }

        .tournaments-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, rgba(0, 24, 69, 0.8), transparent);
        }

        .tournaments-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top, rgba(0, 19, 61, 0.8), transparent);
        }

        .tournaments-content {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
            transform: skewY(1.5deg);
        }

        .tournaments-left {
            display: flex;
            flex-direction: column;
            gap: 32px;
            padding-right: 40px;
        }

        .tournaments-title {
            font-family: 'Montserrat', sans-serif;
            font-style: normal;
            font-weight: 700;
            font-size: 56px;
            line-height: 110%;
            color: #FFFFFF;
            margin: 0;
        }

        .tournaments-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 20px;
            line-height: 150%;
            color: #E8E8E8;
            margin: 0;
        }

        .btn-tournament {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            padding: 0px 36px;
            gap: 6px;
            height: 60px;
            width: fit-content;
            background: #D70E09;
            box-shadow: 0px 8px 28px rgba(215, 14, 9, 0.6), inset 0px 4px 4px rgba(255, 0, 0, 0.3);
            border-radius: 28px;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 16px;
            line-height: 120%;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #FFFFFF;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-tournament:hover {
            transform: translateY(-3px);
            box-shadow: 0px 12px 32px rgba(215, 14, 9, 0.7), inset 0px 4px 4px rgba(255, 0, 0, 0.3);
        }

        .tournaments-right {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .tournament-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .tournament-card:hover {
            transform: translateY(-8px);
            border-color: rgba(215, 14, 9, 0.5);
            box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.3);
        }

        .tournament-card-image {
            width: 100%;
            height: 160px;
            overflow: visible;
            position: relative;
        }

        .tournament-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tournament-card:hover .tournament-card-image img {
            transform: scale(1.1);
        }

        .tournament-icon {
            position: absolute;
            bottom: -30px;
            left: 20px;
            width: 80px;
            height: 80px;
            background: #000000;
            border-radius: 50%;
            border: 4px solid #1e3c72;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.4);
            z-index: 10;
            transition: all 0.3s ease;
            padding: 8px;
        }

        .tournament-card:hover .tournament-icon {
            transform: scale(1.1);
            border-color: #D70E09;
        }

        .tournament-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .tournament-icon.ept-icon {
            background: #FFFFFF;
        }

        .tournament-card-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .tournament-card-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 130%;
            color: #FFFFFF;
            margin: 0;
        }

        .tournament-card-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 150%;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        @media (max-width: 1200px) {
            .tournaments-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .tournaments-left {
                padding-right: 0;
                text-align: center;
                align-items: center;
            }

            .tournaments-title {
                font-size: 48px;
            }
        }

        @media (max-width: 768px) {
            .tournaments-section {
                padding: 80px 20px;
            }

            .tournaments-title {
                font-size: 36px;
            }

            .tournaments-subtitle {
                font-size: 18px;
            }

            .tournaments-right {
                grid-template-columns: 1fr;
            }

            .btn-tournament {
                width: 100%;
                height: 50px;
                font-size: 14px;
            }

            .tournament-card-image {
                height: 140px;
            }
        }

        /* What Makes Us Unique Section */
        .unique-section {
            width: 100%;
            background: linear-gradient(180deg, #00133D 0%, #001845 100%);
            padding: 100px 64px;
            position: relative;
            margin-top: 100px;
        }

        .unique-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .unique-header {
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px 64px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .unique-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 42px;
            line-height: 120%;
            color: #FFFFFF;
            margin: 0;
        }

        .unique-description {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 160%;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .unique-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .unique-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px 32px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            text-align: center;
            transition: all 0.4s ease;
        }

        .unique-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(215, 14, 9, 0.4);
            transform: translateY(-8px);
            box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.3);
        }

        .unique-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(215, 14, 9, 0.15);
            border: 2px solid #D70E09;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .unique-card:hover .unique-icon {
            background: #D70E09;
            transform: scale(1.1);
        }

        .unique-icon i {
            font-size: 32px;
            color: #D70E09;
            transition: all 0.3s ease;
        }

        .unique-card:hover .unique-icon i {
            color: #FFFFFF;
        }

        .unique-card-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            line-height: 140%;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: #FFFFFF;
            margin: 0;
        }

        .unique-card-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 160%;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        @media (max-width: 1024px) {
            .unique-section {
                padding: 80px 40px;
            }

            .unique-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .unique-title {
                font-size: 36px;
            }

            .unique-description {
                font-size: 15px;
            }
        }

        @media (max-width: 768px) {
            .unique-section {
                padding: 60px 20px;
            }

            .unique-container {
                gap: 40px;
            }

            .unique-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .unique-title {
                font-size: 28px;
            }

            .unique-description {
                font-size: 14px;
            }

            .unique-card {
                padding: 32px 24px;
            }

            .unique-icon {
                width: 60px;
                height: 60px;
            }

            .unique-icon i {
                font-size: 28px;
            }
        }

        /* Featured Players Section */
        .featured-players-section {
            width: 100vw;
            background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
            padding: 100px 64px;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow: hidden;
        }

        .featured-players-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .featured-players-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 42px;
            line-height: 120%;
            text-align: center;
            color: #000000;
            margin: 0 0 60px 0;
        }

        .players-carousel {
            position: relative;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .carousel-wrapper {
            overflow: hidden;
            flex: 1;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        .player-card {
            min-width: calc((100% - 60px) / 4);
            aspect-ratio: 3/4;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

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

        .player-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .player-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 19, 61, 0.95), transparent);
            padding: 24px 20px;
            transform: translateY(0);
            transition: all 0.3s ease;
        }

        .player-name {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 18px;
            line-height: 130%;
            color: #FFFFFF;
            margin: 0 0 8px 0;
        }

        .player-quote {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 13px;
            line-height: 150%;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-style: italic;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #00133D;
            border: none;
            color: #FFFFFF;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .carousel-btn:hover {
            background: #D70E09;
            transform: scale(1.1);
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        @media (max-width: 1200px) {
            .player-card {
                min-width: calc((100% - 40px) / 3);
            }
        }

        @media (max-width: 768px) {
            .featured-players-section {
                padding: 80px 20px;
            }

            .featured-players-title {
                font-size: 32px;
                margin-bottom: 40px;
            }

            .player-card {
                min-width: calc((100% - 20px) / 2);
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .player-card {
                min-width: 100%;
            }

            .featured-players-title {
                font-size: 28px;
            }
        }

        /* FAQ Section */
        .faq-section {
            width: 100vw;
            background: linear-gradient(180deg, #00133D 0%, #001F5C 100%);
            padding: 100px 64px;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-title {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 800;
            font-size: 48px;
            line-height: 120%;
            text-align: center;
            color: #FFFFFF;
            margin: 0 0 60px 0;
            text-shadow: 0px 4px 24px rgba(215, 14, 9, 0.3);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 28px;
            cursor: pointer;
            gap: 20px;
        }

        .faq-question span {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 150%;
            color: #FFFFFF;
            flex: 1;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 4px;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .faq-item:hover .faq-toggle {
            border-color: rgba(255, 255, 255, 0.5);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 28px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 28px 24px 28px;
        }

        .faq-answer p {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 160%;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .faq-item.active .faq-toggle {
            background: rgba(215, 14, 9, 0.2);
            border-color: #D70E09;
            transform: rotate(45deg);
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 80px 20px;
            }

            .faq-title {
                font-size: 36px;
                margin-bottom: 40px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question span {
                font-size: 15px;
            }

            .faq-toggle {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .faq-item.active .faq-answer {
                padding: 0 20px 20px 20px;
            }
        }

        @media (max-width: 480px) {
            .faq-title {
                font-size: 28px;
            }

            .faq-question span {
                font-size: 14px;
            }

            .faq-answer p {
                font-size: 13px;
            }
        }

        /* Final CTA Section */
        .final-cta-section {
            width: 100vw;
            background: linear-gradient(135deg, #001845 0%, #00133D 50%, #001F5C 100%);
            padding: 100px 64px;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            overflow: hidden;
        }

        .final-cta-container {
            max-width: 1312px;
            margin: 0 auto;
        }

        .final-cta-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 80px;
        }

        .final-cta-text {
            flex: 1;
            max-width: 550px;
        }

        .final-cta-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 24px;
            color: #FFFFFF;
            margin-bottom: 24px;
        }

        .logo-red {
            color: #D70E09;
        }

        .final-cta-title {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 800;
            font-size: 64px;
            line-height: 110%;
            color: #FFFFFF;
            margin: 0 0 24px 0;
            text-shadow: 0px 4px 24px rgba(215, 14, 9, 0.3);
        }

        .cta-highlight {
            color: #D70E09;
        }

        .final-cta-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 18px;
            line-height: 150%;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 40px 0;
            max-width: 450px;
        }

        .btn-final-cta {
            padding: 18px 48px;
            background: #D70E09;
            border-radius: 50px;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            color: #FFFFFF;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0px 8px 24px rgba(215, 14, 9, 0.4);
        }

        .btn-final-cta:hover {
            background: #FF0F09;
            transform: translateY(-2px);
            box-shadow: 0px 12px 32px rgba(215, 14, 9, 0.6);
        }

        .final-cta-avatars {
            flex: 1;
            position: relative;
            height: 500px;
        }

        .avatar-circle {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #FFFFFF;
            box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .avatar-circle:hover {
            transform: scale(1.1);
            border-color: #D70E09;
            z-index: 200;
        }

        .avatar-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-1 {
            top: 38%;
            left: 5%;
            width: 90px;
            height: 90px;
        }

        .avatar-2 {
            top: 25%;
            left: 22%;
            width: 80px;
            height: 80px;
        }

        .avatar-3 {
            top: 30%;
            left: 42%;
            width: 85px;
            height: 85px;
        }

        .avatar-4 {
            top: 52%;
            left: 32%;
            width: 95px;
            height: 95px;
        }

        .avatar-5 {
            top: 42%;
            right: 15%;
            width: 100px;
            height: 100px;
        }

        .avatar-6 {
            top: 8%;
            right: 5%;
            width: 105px;
            height: 105px;
        }

        .avatar-7 {
            bottom: 18%;
            left: 55%;
            width: 90px;
            height: 90px;
        }

        .avatar-8 {
            bottom: 8%;
            right: 8%;
            width: 110px;
            height: 110px;
        }

        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(41, 98, 255, 0.3);
            z-index: 1;
        }

        .deco-1 {
            width: 200px;
            height: 200px;
            top: 8%;
            left: 8%;
            background: rgba(41, 98, 255, 0.25);
        }

        .deco-2 {
            width: 150px;
            height: 150px;
            top: 5%;
            left: 35%;
            background: rgba(41, 98, 255, 0.2);
        }

        .deco-3 {
            width: 180px;
            height: 180px;
            bottom: 25%;
            left: 10%;
            background: rgba(41, 98, 255, 0.18);
        }

        .deco-4 {
            width: 240px;
            height: 240px;
            bottom: 20%;
            left: 38%;
            background: rgba(41, 98, 255, 0.15);
        }

        .deco-5 {
            width: 220px;
            height: 220px;
            top: 60%;
            right: 8%;
            background: rgba(41, 98, 255, 0.2);
        }

        @media (max-width: 1024px) {
            .final-cta-section {
                padding: 80px 40px;
            }

            .final-cta-content {
                gap: 60px;
            }

            .final-cta-title {
                font-size: 52px;
            }

            .final-cta-avatars {
                height: 400px;
            }

            .avatar-circle {
                width: 80px;
                height: 80px;
            }

            .avatar-1, .avatar-4, .avatar-6, .avatar-7 {
                width: 75px;
                height: 75px;
            }

            .avatar-2 {
                width: 65px;
                height: 65px;
            }

            .avatar-8 {
                width: 85px;
                height: 85px;
            }
        }

        @media (max-width: 768px) {
            .final-cta-section {
                padding: 60px 20px;
            }

            .final-cta-content {
                flex-direction: column;
                gap: 35px;
            }

            .final-cta-text {
                text-align: center;
                max-width: 100%;
            }

            .final-cta-title {
                font-size: 38px;
            }

            .final-cta-subtitle {
                max-width: 100%;
                font-size: 15px;
            }

            .final-cta-avatars {
                width: 100%;
                height: 160px;
                max-width: 100%;
                margin: 0 auto;
                position: relative;
            }

            .avatar-circle {
                border-width: 2.5px;
            }

            /* Linha superior - 3 avatares */
            .avatar-3 {
                top: 8%;
                left: 8%;
                width: 50px;
                height: 50px;
            }

            .avatar-7 {
                top: 8%;
                left: 38%;
                transform: translateX(-50%);
                width: 52px;
                height: 52px;
            }

            .avatar-6 {
                top: 8%;
                right: 8%;
                width: 50px;
                height: 50px;
            }

            /* Linha do meio - 2 avatares */
            .avatar-2 {
                top: 50%;
                left: 25%;
                transform: translateY(-50%);
                width: 48px;
                height: 48px;
            }

            .avatar-5 {
                top: 50%;
                right: 25%;
                transform: translateY(-50%);
                width: 52px;
                height: 52px;
            }

            /* Linha inferior - 3 avatares */
            .avatar-1 {
                bottom: 8%;
                left: 8%;
                width: 48px;
                height: 48px;
            }

            .avatar-4 {
                bottom: 45%;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 50px;
            }

            .avatar-8 {
                bottom: 8%;
                right: 8%;
                width: 52px;
                height: 52px;
            }

            .decoration-circle {
                opacity: 0.3;
            }

            .deco-1 {
                width: 90px;
                height: 90px;
                top: 5%;
                left: 5%;
            }

            .deco-2 {
                width: 70px;
                height: 70px;
                top: 2%;
                right: 12%;
            }

            .deco-3 {
                width: 100px;
                height: 100px;
                bottom: 5%;
                left: 3%;
            }

            .deco-4 {
                width: 85px;
                height: 85px;
                top: 48%;
                left: 48%;
                transform: translate(-50%, -50%);
            }

            .deco-5 {
                width: 95px;
                height: 95px;
                bottom: 5%;
                right: 5%;
            }

            /* Esconder círculos extras no mobile */
            .final-cta-avatars > .decoration-circle:not([class*="deco-"]) {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .final-cta-section {
                padding: 50px 20px;
            }

            .final-cta-content {
                gap: 30px;
            }

            .final-cta-title {
                font-size: 32px;
                line-height: 115%;
            }

            .final-cta-logo {
                font-size: 18px;
                margin-bottom: 16px;
            }

            .final-cta-subtitle {
                font-size: 14px;
                margin-bottom: 28px;
                line-height: 155%;
            }

            .btn-final-cta {
                padding: 15px 32px;
                font-size: 13px;
                width: 100%;
                max-width: 260px;
            }

            .final-cta-avatars {
                height: 150px;
            }

            .avatar-circle {
                border-width: 2px;
            }

            /* Linha superior - 3 avatares */
            .avatar-3 {
                top: 5%;
                left: 6%;
                width: 45px;
                height: 45px;
            }

            .avatar-7 {
                top: 35%;
                left: 38%;
                transform: translateX(-50%);
                width: 48px;
                height: 48px;
            }

            .avatar-6 {
                top: 5%;
                right: 6%;
                width: 45px;
                height: 45px;
            }

            /* Linha do meio - 2 avatares */
            .avatar-2 {
                top: 48%;
                left: 22%;
                transform: translateY(-50%);
                width: 44px;
                height: 44px;
            }

            .avatar-5 {
                top: 48%;
                right: 22%;
                transform: translateY(-50%);
                width: 47px;
                height: 47px;
            }

            /* Linha inferior - 3 avatares */
            .avatar-1 {
                bottom: 5%;
                left: 6%;
                width: 44px;
                height: 44px;
                z-index: 110;
            }

            .avatar-4 {
                bottom: 5%;
                left: 50%;
                width: 46px;
                height: 46px;
            }

            .avatar-8 {
                bottom: 5%;
                right: 4%;
                width: 48px;
                height: 48px;
            }

            .decoration-circle {
                opacity: 0.25;
            }

            .deco-1 {
                width: 75px;
                height: 75px;
            }

            .deco-2 {
                width: 60px;
                height: 60px;
            }

            .deco-3 {
                width: 85px;
                height: 85px;
            }

            .deco-4 {
                width: 70px;
                height: 70px;
            }

            .deco-5 {
                width: 80px;
                height: 80px;
            }
        }

        /* Champions Section */
        .champions-section {
            width: 100vw;
            background: #F5F5F5;
            padding: 80px 64px;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

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

        .champions-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 36px;
            line-height: 130%;
            text-align: center;
            color: #000000;
            margin: 0 0 48px 0;
        }

        .champions-title .highlight {
            background: #D70E09;
            color: #FFFFFF;
            padding: 2px 12px;
            border-radius: 4px;
            font-style: italic;
        }

        .champions-top-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .champions-box {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .champions-box.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .champions-box:hover {
            transform: translateY(-8px);
            box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
        }

        .champions-box-image {
            background: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.95);
        }

        .champions-box-image.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        .champions-box-image:hover {
            transform: scale(1.05);
            box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
        }

        .champions-box-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .champions-box-image:hover img {
            transform: scale(1.1);
        }

        .champions-box-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px;
            line-height: 140%;
            text-transform: uppercase;
            color: #00133D;
            margin: 0;
        }

        .champions-box-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-style: italic;
            font-weight: 600;
            font-size: 18px;
            line-height: 140%;
            color: #000000;
            margin: 0;
        }

        .champions-box-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 160%;
            color: #333333;
            margin: 0;
        }

        .champions-bottom-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .champions-bottom-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
            height: 280px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: scale(0.95);
        }

        .champions-bottom-image.animate-in {
            opacity: 1;
            transform: scale(1);
        }

        .champions-bottom-image:hover {
            transform: scale(1.05);
            box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
        }

        .champions-bottom-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .champions-bottom-image:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 1024px) {
            .champions-section {
                padding: 60px 40px;
            }

            .champions-title {
                font-size: 30px;
                margin-bottom: 40px;
            }

            .champions-top-row,
            .champions-bottom-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .champions-bottom-image {
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            .champions-section {
                padding: 50px 20px;
            }

            .champions-title {
                font-size: 24px;
                margin-bottom: 32px;
            }

            .champions-box {
                padding: 24px;
            }

            .champions-box-subtitle {
                font-size: 16px;
            }

            .champions-bottom-image {
                height: 200px;
            }
        }