    @charset "UTF-8";
    /* ========== VARIÁVEIS E RESET ========== */
    
     :root {
        --wpl-bg-light: #6d554f67;
        --wpl-white: #ffffff;
        scroll-behavior: smooth;
    }
    /* ========== HERO SECTION ========== */
    
    .hero-section {
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: var(--primary-bg);
        padding-top: 80px;
        /* Adicionar espaço no topo */
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .hero-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 69, 0, 0.2), transparent), radial-gradient(1px 1px at 90px 40px, rgba(255, 107, 53, 0.4), transparent);
        background-repeat: repeat;
        background-size: 100px 100px;
        animation: particleMove 20s linear infinite;
    }
    
    .hero-grid {
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(rgba(255, 107, 53, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 107, 53, 0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: 0.3;
        animation: gridPulse 4s ease-in-out infinite;
    }
    /* ========== 3D CUBE ========== */
    
    .hero-3d-cube {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        perspective: 1200px;
        perspective-origin: center center;
        z-index: 1;
        opacity: 0.8;
    }
    
    .cube {
        width: 200px;
        height: 200px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform-style: preserve-3d;
        transform: translate(-50%, -50%) translateZ(-100px);
    }
    
    .side {
        position: absolute;
        width: 200px;
        height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 2px solid rgba(255, 107, 53, 0.4);
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 107, 53, 0.3);
        backdrop-filter: blur(2px);
    }
    
    .front {
        transform: rotateY(0deg) translateZ(100px);
        background-color: rgba(255, 107, 53, 0.05);
    }
    
    .right {
        transform: rotateY(90deg) translateZ(100px);
        background-color: rgba(255, 69, 0, 0.05);
    }
    
    .back {
        transform: rotateY(180deg) translateZ(100px);
        background-color: rgba(255, 140, 0, 0.05);
    }
    
    .left {
        transform: rotateY(-90deg) translateZ(100px);
        background-color: rgba(255, 165, 0, 0.05);
    }
    
    .top {
        transform: rotateX(90deg) translateZ(100px);
        background-color: rgba(255, 107, 53, 0.05);
    }
    
    .bottom {
        transform: rotateX(-90deg) translateZ(100px);
        background-color: rgba(255, 69, 0, 0.05);
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        padding: 0 20px;
    }
    /* Logo principal na hero section */
    
    .hero-logo {
        margin-bottom: 2rem;
        animation: logoFloat 3s ease-in-out infinite;
    }
    
    .hero-logo-img {
        width: 200px;
        height: auto;
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
        transition: all 0.3s ease;
    }
    
    .hero-logo-img:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    }
    
    .hero-title {
        font-size: 4.5rem;
        font-weight: 900;
        margin-bottom: 2rem;
        line-height: 1.1;
    }
    
    .hero-text-line {
        display: block;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out forwards;
    }
    
    .hero-text-line:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .neon-text {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.6s forwards;
        line-height: 1.6;
    }
    
    .hero-buttons {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.9s forwards;
    }
    
    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 18px 36px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 12px;
        transition: var(--transition-smooth);
        position: relative;
        overflow: hidden;
    }
    
    .hero-btn.primary {
        background: var(--gradient-primary);
        color: var(--text-primary);
        box-shadow: var(--shadow-neon);
        border: 2px solid transparent;
    }
    
    .hero-btn.secondary {
        background: transparent;
        color: var(--text-primary);
        border: 2px solid rgba(255, 107, 53, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .hero-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition-smooth);
    }
    
    .hero-btn:hover {
        transform: translateY(-3px);
    }
    
    .hero-btn.primary:hover {
        box-shadow: var(--shadow-neon-strong);
    }
    
    .hero-btn.secondary:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: rgba(255, 107, 53, 0.8);
    }
    
    .hero-btn:hover::before {
        left: 100%;
    }
    
    .hero-scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
    
    .scroll-arrow {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(255, 107, 53, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-orange);
        animation: bounce 2s infinite;
        cursor: pointer;
        transition: var(--transition-smooth);
    }
    /* Quando não está em hover, manter bounce */
    
    .scroll-arrow:not(:hover) {
        animation: bounce 2s infinite;
    }
    
    .scroll-arrow:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: var(--accent-orange);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
        animation: scroll-blink 0.6s ease-in-out infinite;
        transform: scale(1);
    }
    
    .scroll-arrow:hover svg,
    .scroll-arrow:hover .chevron {
        animation: arrow-blink 0.8s ease-in-out infinite;
    }
    /* Animação para a seta dentro do botão */
    
    @keyframes arrow-blink {
        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.1);
        }
    }
    /* Animação simples de piscar para o botão de scroll */
    
    @keyframes scroll-blink {
        0% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
            border-color: rgba(255, 107, 53, 0.8);
        }
        50% {
            opacity: 0.3;
            transform: scale(1.25);
            box-shadow: 0 0 35px rgba(255, 107, 53, 1);
            border-color: rgba(255, 107, 53, 1);
        }
        100% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 15px rgba(255, 107, 53, 0.8);
            border-color: rgba(255, 107, 53, 0.8);
        }
    }
    
    @keyframes blink-pulse {
        0% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), inset 0 0 20px rgba(255, 107, 53, 0.2);
            border-color: rgba(255, 107, 53, 0.8);
        }
        25% {
            opacity: 0.8;
            transform: scale(1.02);
            box-shadow: 0 0 25px rgba(255, 107, 53, 0.9), inset 0 0 25px rgba(255, 107, 53, 0.3);
            border-color: rgba(255, 107, 53, 0.9);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 107, 53, 1), inset 0 0 30px rgba(255, 107, 53, 0.4);
            border-color: rgba(255, 107, 53, 1);
        }
        75% {
            opacity: 0.8;
            transform: scale(1.02);
            box-shadow: 0 0 25px rgba(255, 107, 53, 0.9), inset 0 0 25px rgba(255, 107, 53, 0.3);
            border-color: rgba(255, 107, 53, 0.9);
        }
        100% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), inset 0 0 20px rgba(255, 107, 53, 0.2);
            border-color: rgba(255, 107, 53, 0.8);
        }
    }
    
    @keyframes particleMove {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100px);
        }
    }
    
    @keyframes gridPulse {
        0%,
        100% {
            opacity: 0.2;
        }
        50% {
            opacity: 0.4;
        }
    }
    
    @keyframes logoFloat {
        0%,
        100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
    /* ========== RESPONSIVE DESIGN ========== */
    
    @media (max-width: 1024px) {
        .hero-title {
            font-size: 3.5rem;
        }
        .hero-subtitle {
            font-size: 1.2rem;
        }
        .hero-btn {
            padding: 16px 30px;
            font-size: 1rem;
        }
        .section-title {
            font-size: 2.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-section {
            height: 90vh;
            padding: 60px 1rem 0 1rem;
            /* Ajustar padding para mobile */
        }
        .hero-logo-img {
            width: 150px;
        }
        .hero-title {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        .hero-buttons {
            flex-direction: column;
            gap: 1rem;
        }
        .hero-btn {
            padding: 14px 28px;
            font-size: 0.95rem;
        }
        .section-title {
            font-size: 2.2rem;
        }
        .section-subtitle {
            font-size: 1.1rem;
        }
        .carousel-section {
            padding: 4rem 1rem;
        }
        .carousel-card {
            height: 300px;
        }
        /* 3D Cube Responsive */
        .hero-3d-cube {
            opacity: 0.6;
        }
        .cube {
            width: 150px;
            height: 150px;
        }
        .side {
            width: 150px;
            height: 150px;
            border: 2px solid rgba(255, 107, 53, 0.3);
        }
        .front {
            transform: rotateY(0deg) translateZ(60px);
        }
        .right {
            transform: rotateY(90deg) translateZ(60px);
        }
        .back {
            transform: rotateY(180deg) translateZ(60px);
        }
        .left {
            transform: rotateY(-90deg) translateZ(60px);
        }
        .top {
            transform: rotateX(90deg) translateZ(60px);
        }
        .bottom {
            transform: rotateX(-90deg) translateZ(60px);
        }
        /* Cursor apenas em desktop */
        .cursor,
        .cursor-follower {
            display: none;
        }
        * {
            cursor: auto !important;
        }
    }
    
    @media (max-width: 480px) {
        .hero-logo-img {
            width: 120px;
        }
        .hero-title {
            font-size: 2.2rem;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .hero-btn {
            padding: 12px 24px;
            font-size: 0.9rem;
        }
        .section-title {
            font-size: 1.8rem;
        }
        .section-subtitle {
            font-size: 1rem;
        }
        .carousel-section {
            padding: 3rem 1rem;
        }
        .carousel-card {
            height: 250px;
        }
        /* 3D Cube Mobile Responsive */
        .hero-3d-cube {
            opacity: 0.4;
        }
        .cube {
            width: 120px;
            height: 120px;
        }
        .side {
            width: 120px;
            height: 120px;
            border: 1px solid rgba(255, 107, 53, 0.2);
        }
        .front {
            transform: rotateY(0deg) translateZ(60px);
        }
        .right {
            transform: rotateY(90deg) translateZ(60px);
        }
        .back {
            transform: rotateY(180deg) translateZ(60px);
        }
        .left {
            transform: rotateY(-90deg) translateZ(60px);
        }
        .top {
            transform: rotateX(90deg) translateZ(60px);
        }
        .bottom {
            transform: rotateX(-90deg) translateZ(60px);
        }
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html,
    body {
        font-family: 'Orbitron', sans-serif;
        background-size: none;
        color: #e0e0e0;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    /* ========== CONTAINERS E ELEMENTOS BASE ========== */
    
    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 30px;
        text-align: center;
    }
    
    h1 {
        font-size: 3rem;
        color: #000000;
        margin-bottom: 30px;
        border-bottom: 2px solid #d96608;
        display: inline-block;
        padding-bottom: 10px;
    }
    
    h3 {
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 20px;
    }
    
    .tagline {
        font-size: 1.5rem;
        color: #000000;
        margin-bottom: 40px;
    }
    
    .btn {
        display: inline-block;
        margin: 10px;
        padding: 15px 25px;
        font-size: 1.1rem;
        font-weight: bold;
        color: #ffffff;
        background-color: #d96608;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 0 10px #d96608;
        transition: all 0.3s ease;
    }
    
    .btn:hover {
        background-color: #ff7700;
        color: #000;
    }
    
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .teste {
        max-width: 100%;
        height: auto;
        display: block;
    }
    /* ========== TORNEIOS ========== */
    
    .tournament-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 950px;
        margin: 0 auto;
        padding: 0 30px 60px;
    }
    
    .tournament-card {
        background-color: #0f0f0f;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        padding: 20px;
        box-shadow: 0 0 20px #d96608;
        transition: transform 0.3s ease;
    }
    
    .tournament-card:hover {
        transform: translateY(-5px);
    }
    
    .tournament-card img {
        width: 100%;
        height: auto;
        border-radius: 0.5rem;
        margin-bottom: 15px;
    }
    
    .tournament-card h3 {
        color: #d96608;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .tournament-card p {
        color: #ccc;
        font-size: 1rem;
        line-height: 1.5;
    }
    /* ========== CAROUSEL MODERNO ========== */
    
    .carousel-section {
        padding: 6rem 2rem;
        background: var(--secondary-bg);
        position: relative;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 1rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }
    
    .modern-carousel {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-dark);
        background: var(--secondary-bg);
        padding: 0;
    }
    
    .carousel-card {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 20px;
        margin: 0;
        display: block;
        text-decoration: none;
        color: inherit;
    }
    
    .carousel-link {
        cursor: pointer;
    }
    
    .carousel-link:hover {
        text-decoration: none;
        color: inherit;
    }
    
    .carousel-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: var(--transition-smooth);
        display: block;
        border-radius: 20px;
    }
    
    .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
        padding: 2rem;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        border-radius: 20px;
    }
    
    .carousel-card:hover .carousel-overlay {
        transform: translateX(0);
    }
    
    .carousel-card:hover img {
        transform: scale(1.1);
    }
    
    .carousel-overlay h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
        width: 50%;
        text-align: left;
    }
    
    .carousel-overlay p {
        color: var(--text-secondary);
        font-size: 1rem;
        line-height: 1.5;
        width: 50%;
        text-align: left;
    }
    
    .swiper {
        width: 100%;
        max-width: 1200px;
        height: 400px;
        border-radius: 20px;
        background: var(--secondary-bg);
        overflow: hidden;
        margin: 0 auto;
        box-shadow: var(--shadow-dark);
    }
    
    .swiper-wrapper {
        align-items: center;
    }
    
    .mySwiper {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
    }
    
    .swiper-slide {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        text-align: center;
    }
    
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
    }
    /* ========== BOTÕES DE NAVEGAÇÃO DO SWIPER ========== */
    
    .swiper-button-next,
    .swiper-button-prev {
        color: var(--accent-orange);
        z-index: 100;
        cursor: pointer;
        pointer-events: auto;
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        opacity: 0.7;
        transform: scale(1.1);
    }
    
    .swiper-button-disabled {
        opacity: 1 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }
    
    .mySwiper .swiper-button-next,
    .mySwiper .swiper-button-prev {
        color: var(--accent-orange);
    }
    
    .mySwiper .swiper-button-next::after,
    .mySwiper .swiper-button-prev::after {
        color: var(--accent-orange);
    }
    /* ========== BULLETS DE PAGINAÇÃO ========== */
    
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .mySwiper .swiper-pagination-bullet {
        background: rgba(255, 107, 53, 0.6);
        opacity: 0.7;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        transition: var(--transition-smooth);
        margin: 0 6px;
    }
    
    .mySwiper .swiper-pagination-bullet:hover {
        background: rgba(255, 107, 53, 0.8);
        transform: scale(1.2);
    }
    
    .mySwiper .swiper-pagination-bullet-active {
        background: var(--accent-orange);
        opacity: 1;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    }
    
    @media (max-width: 1024px) {
        .swiper {
            max-width: calc(100% - 2rem);
            margin: 0 1rem;
            border-radius: 16px;
        }
        .modern-carousel {
            max-width: calc(100% - 2rem);
            margin: 0 1rem;
            border-radius: 16px;
        }
        .mySwiper {
            border-radius: 16px;
        }
        .swiper-slide img,
        .carousel-card img {
            border-radius: 16px;
        }
        .carousel-card {
            height: 350px;
        }
    }
    
    @media (max-width: 768px) {
        .swiper {
            height: 300px;
            margin: 0 0.5rem;
            border-radius: 12px;
        }
        .modern-carousel {
            margin: 0 0.5rem;
            border-radius: 12px;
        }
        .mySwiper {
            border-radius: 12px;
        }
        .swiper-slide img,
        .carousel-card img {
            border-radius: 12px;
        }
        .carousel-card {
            height: 280px;
        }
        .carousel-overlay {
            padding: 1.5rem;
            width: 100%;
            border-radius: 16px;
        }
        .carousel-overlay h3 {
            font-size: 1.3rem;
            width: 60%;
        }
        .carousel-overlay p {
            font-size: 0.9rem;
            width: 60%;
        }
    }
    
    @media (max-width: 480px) {
        .carousel-section {
            padding: 3rem 0.5rem;
        }
        .swiper {
            height: 250px;
            margin: 0 0.5rem;
            border-radius: 8px;
        }
        .modern-carousel {
            margin: 0 0.5rem;
            border-radius: 8px;
        }
        .mySwiper {
            border-radius: 8px;
        }
        .swiper-slide img,
        .carousel-card img {
            border-radius: 8px;
        }
        .carousel-card {
            height: 220px;
        }
        .carousel-overlay {
            padding: 1rem;
            width: 100%;
            border-radius: 8px;
        }
        .carousel-overlay h3 {
            font-size: 1.1rem;
            width: 70%;
        }
        .carousel-overlay p {
            font-size: 0.85rem;
            width: 70%;
        }
        .mySwiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            margin: 0 4px;
        }
    }
    /* ========== CTA SECTION ========== */
    
    .cta-section {
        padding: 6rem 2rem;
        background: var(--primary-bg);
        text-align: center;
        position: relative;
    }
    
    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 69, 0, 0.05));
        z-index: 0;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 1.5rem;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        line-height: 1.6;
    }
    
    .cta-buttons {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    /* Responsividade para CTA */
    
    @media (max-width: 768px) {
        .cta-section {
            padding: 4rem 1rem;
        }
        .cta-title {
            font-size: 2.2rem;
        }
        .cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        .cta-buttons {
            flex-direction: column;
            gap: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .cta-section {
            padding: 3rem 1rem;
        }
        .cta-title {
            font-size: 1.8rem;
        }
        .cta-subtitle {
            font-size: 1rem;
        }
    }
    /* ================================
   CARDS DE NOTÍCIAS
=================================== */
    
    .news-carousel {
        padding: 40px 20px;
        background-color: #111;
        color: #fff;
        text-align: center;
    }
    
    .news-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 20px 0;
        scroll-snap-type: x mandatory;
    }
    
    .news-card {
        flex: 0 0 auto;
        width: 300px;
        background-color: #222;
        border-radius: 10px;
        padding: 15px;
        scroll-snap-align: start;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }
    
    .news-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
    }
    
    .card-btn {
        display: inline-block;
        background: var(--gradient-primary);
        color: var(--text-primary);
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 12px;
        text-decoration: none;
        box-shadow: var(--shadow-neon);
        transition: var(--transition-smooth);
        margin-top: 15px;
        position: sticky;
        bottom: 10px;
        z-index: 10;
        margin-top: 1.5rem;
        border: 1px solid rgba(255, 107, 53, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .card-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: var(--transition-smooth);
    }
    
    .card-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-neon-strong);
        border-color: rgba(255, 107, 53, 0.6);
    }
    
    .card-btn:hover::before {
        left: 100%;
    }
    /* Se for dentro de .card-info, garante espaçamento em cima */
    
    .card-info .card-btn {
        margin-top: 1.5rem;
        text-align: center;
    }
    /* ================================
   CARD MODERNO (Uiverse Style)
=================================== */
    
    .card {
        position: relative;
        width: 300px;
        height: 400px;
        background: var(--gradient-dark);
        border: 1px solid rgba(255, 107, 53, 0.2);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        backdrop-filter: blur(10px);
    }
    
    .card svg {
        width: 48px;
        fill: #333;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--shadow-neon-strong);
        border-color: rgba(255, 107, 53, 0.5);
    }
    
    .card__content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        padding: 30px;
        box-sizing: border-box;
        background: rgba(17, 17, 17, 0.95);
        backdrop-filter: blur(15px);
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        border-radius: 16px;
        border: 1px solid rgba(255, 107, 53, 0.3);
    }
    
    .card:hover .card__content {
        opacity: 1;
    }
    
    .card__title {
        margin: 0;
        font-size: 22px;
        color: var(--text-primary);
        font-weight: 700;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
        margin-bottom: 15px;
    }
    
    .card__description {
        margin: 15px 0;
        font-size: 14px;
        color: var(--text-secondary);
        line-height: 1.6;
    }
    /* Scrollbar personalizada - Ultra moderna e limpa */
    
    .card__content::-webkit-scrollbar {
        width: 8px;
    }
    
    .card__content::-webkit-scrollbar-track {
        background: transparent;
        margin: 10px 0;
    }
    
    .card__content::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--accent-orange), #ff8c42);
        border-radius: 20px;
        border: 2px solid rgba(17, 17, 17, 0.95);
        transition: all 0.3s ease;
    }
    
    .card__content::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #ff8c42, var(--accent-orange));
        transform: scaleY(1.1);
    }
    /* Firefox scrollbar */
    
    .card__content {
        scrollbar-width: thin;
        scrollbar-color: var(--accent-orange) transparent;
    }
    /* Smooth scroll behavior */
    
    .card__content {
        scroll-behavior: smooth;
    }
    /* Fade no topo e fundo para indicar scroll */
    
    .card::before,
    .card::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 40px;
        pointer-events: none;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .card::before {
        top: 0;
        background: linear-gradient(to bottom, rgba(17, 17, 17, 0.95), transparent);
    }
    
    .card::after {
        bottom: 0;
        background: linear-gradient(to top, rgba(17, 17, 17, 0.95), transparent);
    }
    
    .card:hover::before,
    .card:hover::after {
        opacity: 1;
    }
    
    .card:hover svg {
        scale: 0;
        transform: rotate(-45deg);
    }
    
    .card-grid {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        padding: 20px 0;
    }
    
    .card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* preenche sem distorcer, cortando o excesso */
        object-position: center;
        /* centra a parte visível da imagem */
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }
    /* ================================
  BODY CONTAINER NEWS 
=================================== */
    /* === Container === */
    
    .container-news {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .text-center {
        text-align: center;
    }
    
    .news-section {
        background: var(--wpl-bg-light);
        padding: 4rem 0;
        border-radius: 20px;
        margin-top: 2rem;
    }
    
    .news-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        color: var(--wpl-white);
    }
    /* ================================
   FOOTER
=================================== */
    
    .footer {
        background-color: #111;
        color: #ccc;
        padding: 20px 0;
        font-size: 14px;
    }
    
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-links,
    .footer-socials {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a,
    .footer-socials a {
        color: #aaa;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s;
    }
    
    .footer-links a:hover,
    .footer-socials a:hover {
        color: #fff;
    }
    /* ================================
   ANIMAÇÃO LOGO
=================================== */
    
    .logo-wrapper {
        perspective: 1000px;
        display: inline-block;
    }
    
    @keyframes spinSlowdown {
        0% {
            transform: rotateY(0deg);
        }
        100% {
            transform: rotateY(360deg);
        }
    }
    
    .logo-spin-slowdown {
        animation: spinSlowdown 1.4s cubic-bezier(0.02, 1, 0.5, 1) forwards;
        display: inline-block;
        transform-style: preserve-3d;
        backface-visibility: visible;
    }
    /* ================================
   MEDIA QUERIES
=================================== */
    
    @media (min-width: 600px) {
        .footer-container {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        .footer-links,
        .footer-socials {
            justify-content: flex-start;
        }
    }
    
    @media (max-width: 480px) {
        .container {
            padding: 20px 10px;
        }
    }
    /* SPONSORS SECTION */
    
    .sponsors-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        position: relative;
        overflow: hidden;
    }
    
    .sponsors-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, transparent 50%, rgba(255, 107, 53, 0.05) 100%);
        pointer-events: none;
    }
    
    .sponsors-container {
        position: relative;
        width: 100%;
        margin: 40px 0;
        padding: 20px 0;
        display: flex;
        justify-content: center;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .sponsors-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        align-items: center;
        justify-items: center;
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .sponsor-item {
        text-align: center;
        width: 100%;
        max-width: 250px;
    }
    
    .sponsor-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #ffffff;
        padding: 20px;
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 120px;
        position: relative;
        overflow: hidden;
    }
    
    .sponsor-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .sponsor-link:hover::before {
        left: 100%;
    }
    
    .sponsor-link:hover {
        transform: translateY(-8px) scale(1.02);
        background: linear-gradient(145deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
        border-color: rgba(255, 107, 53, 0.4);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .sponsor-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0.9) contrast(1.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 2;
    }
    
    .sponsor-link:hover .sponsor-logo {
        filter: brightness(1.3) contrast(1.2) saturate(1.1);
        transform: scale(1.08);
    }
    /* Card especial de contacto */
    
    .contact-card .contact-link {
        background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
        border: 2px solid rgba(255, 107, 53, 0.3);
        flex-direction: column;
        justify-content: center;
        text-align: center;
        position: relative;
    }
    
    .contact-card .contact-link::before {
        background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    }
    
    .contact-card .contact-link:hover {
        background: linear-gradient(145deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
        border-color: rgba(255, 107, 53, 0.6);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 8px;
        animation: bounce-gentle 2s ease-in-out infinite;
    }
    
    .contact-text {
        font-size: 1rem;
        font-weight: 600;
        color: var(--accent-orange);
        margin-bottom: 4px;
    }
    
    .contact-subtitle {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 400;
    }
    
    @keyframes bounce-gentle {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-5px);
        }
    }
    /* Sponsor name removed - only logos now */
    /* Controles removidos - agora é drag/swipe */
    /* Responsive Design for Sponsors - 4 na mesma linha */
    
    @media (max-width: 1024px) {
        .sponsors-container {
            max-width: 900px;
            padding: 15px 0;
        }
        .sponsors-grid {
            gap: 15px;
        }
        .sponsor-link {
            padding: 18px;
            height: 110px;
        }
        .contact-icon {
            font-size: 1.8rem;
        }
        .contact-text {
            font-size: 0.9rem;
        }
        .contact-subtitle {
            font-size: 0.7rem;
        }
    }
    
    @media (max-width: 768px) {
        .sponsors-section {
            padding: 60px 0;
        }
        .sponsors-container {
            max-width: 700px;
            padding: 15px 0;
        }
        .sponsors-grid {
            gap: 10px;
        }
        .sponsor-link {
            padding: 12px;
            height: 90px;
        }
        .contact-icon {
            font-size: 1.3rem;
            margin-bottom: 4px;
        }
        .contact-text {
            font-size: 0.8rem;
        }
        .contact-subtitle {
            font-size: 0.6rem;
        }
    }
    
    @media (max-width: 480px) {
        .sponsors-section {
            padding: 40px 0;
        }
        .sponsors-container {
            max-width: 100%;
            padding: 10px 15px;
        }
        .sponsors-grid {
            gap: 8px;
        }
        .sponsor-link {
            padding: 8px;
            height: 70px;
        }
        .sponsor-logo {
            width: 100%;
            height: 100%;
        }
        .contact-icon {
            font-size: 1.3rem;
            margin-bottom: 4px;
        }
        .contact-text {
            font-size: 0.8rem;
        }
        .contact-subtitle {
            font-size: 0.6rem;
        }
    }
    /* Extra small screens */
    
    @media (max-width: 360px) {
        .sponsors-container {
            max-width: 320px;
        }
        .sponsor-item {
            min-width: 120px;
            max-width: 130px;
            margin: 0 6px;
        }
        .sponsor-link {
            padding: 10px;
            height: 80px;
        }
        .contact-icon {
            font-size: 1.2rem;
            margin-bottom: 3px;
        }
        .contact-text {
            font-size: 0.75rem;
        }
        .contact-subtitle {
            font-size: 0.55rem;
        }
    }
    /* ========== CUBE RESPONSIVE STYLES ========== */
    
    @media (max-width: 768px) {
        .hero-3d-cube {
            opacity: 0.6;
        }
        .cube {
            width: 150px;
            height: 150px;
        }
        .side {
            width: 150px;
            height: 150px;
            border: 2px solid rgba(255, 107, 53, 0.3);
            box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 107, 53, 0.2);
        }
        .front {
            transform: rotateY(0deg) translateZ(75px);
        }
        .right {
            transform: rotateY(90deg) translateZ(75px);
        }
        .back {
            transform: rotateY(180deg) translateZ(75px);
        }
        .left {
            transform: rotateY(-90deg) translateZ(75px);
        }
        .top {
            transform: rotateX(90deg) translateZ(75px);
        }
        .bottom {
            transform: rotateX(-90deg) translateZ(75px);
        }
    }
    
    @media (max-width: 480px) {
        .hero-3d-cube {
            opacity: 0.4;
        }
        .cube {
            width: 120px;
            height: 120px;
        }
        .side {
            width: 120px;
            height: 120px;
            border: 1px solid rgba(255, 107, 53, 0.2);
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 107, 53, 0.15);
        }
        .front {
            transform: rotateY(0deg) translateZ(60px);
        }
        .right {
            transform: rotateY(90deg) translateZ(60px);
        }
        .back {
            transform: rotateY(180deg) translateZ(60px);
        }
        .left {
            transform: rotateY(-90deg) translateZ(60px);
        }
        .top {
            transform: rotateX(90deg) translateZ(60px);
        }
        .bottom {
            transform: rotateX(-90deg) translateZ(60px);
        }
        /* Ajustar hero section para mobile pequeno */
        .hero-section {
            padding: 40px 1rem 0 1rem;
        }
        .hero-title {
            font-size: 2.2rem;
        }
        .hero-subtitle {
            font-size: 1rem;
        }
    }