* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: #f5f2eb;
            color: #1e2b37;
            overflow-x: hidden;
            width: 100%;
            -webkit-tap-highlight-color: transparent;
            padding-top: 100px;
        }

        :root {
            --haiti-navy: #0C2340;
            --haiti-red: #AA2B3E;
            --haiti-gold: #E9C46A;
            --cream: #FBF8F0;
            --charcoal: #2C3E4F;
            --white: #FFFFFF;
            --shadow: rgba(12, 35, 64, 0.25);
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* ===== BARRA ÚNICA FIXA ===== */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--haiti-navy) 0%, #1a304a 60%, var(--haiti-red) 100%);
            border-bottom: 4px solid var(--haiti-gold);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            z-index: 1000;
            padding: 10px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .logo h1 {
            font-family: 'Bangers', cursive;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--haiti-gold);
            text-shadow: 4px 4px 0 var(--haiti-red), 8px 8px 20px black;
            line-height: 1.1;
            white-space: nowrap;
            animation: logoGlow 3s infinite alternate;
        }

        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 5px var(--haiti-gold)); }
            100% { filter: drop-shadow(0 0 20px var(--haiti-gold)); }
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: clamp(5px, 1.5vw, 15px);
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 60px;
            border: 2px solid var(--haiti-gold);
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-list li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: clamp(0.85rem, 2vw, 1.2rem);
            padding: 6px 12px;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: 0.25s;
            white-space: nowrap;
        }

        .nav-list li a i { 
            color: var(--haiti-gold);
            font-size: clamp(0.85rem, 2vw, 1.2rem);
        }

        .nav-list li a:hover { 
            background: var(--haiti-red); 
            transform: translateY(-2px); 
            box-shadow: 0 8px 12px -5px black; 
        }

        .hamburger {
            display: none;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            background: var(--haiti-gold);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 3px solid white;
            z-index: 1002;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            position: relative;
        }

        .hamburger span {
            position: absolute;
            width: 24px;
            height: 4px;
            background: var(--haiti-navy);
            border-radius: 6px;
            transition: 0.4s ease;
        }

        .hamburger span:nth-child(1){
            transform: translateY(-8px);
        }

        .hamburger span:nth-child(2){
            transform: translateY(0);
        }

        .hamburger span:nth-child(3){
            transform: translateY(8px);
        }

        /* animação para X */
        .hamburger.active span:nth-child(1){
            transform: rotate(45deg);
        }

        .hamburger.active span:nth-child(2){
            opacity: 0;
        }

        .hamburger.active span:nth-child(3){
            transform: rotate(-45deg);
        }

        /* OVERLAY para fechar menu ao clicar fora */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(2px);
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ===== HERO ESPETACULAR ===== */
        .hero {
            background: linear-gradient(135deg, var(--haiti-navy) 0%, #1a304a 40%, var(--haiti-red) 100%);
            position: relative;
            overflow: hidden;
            padding: 30px 0 60px 0;
            border-bottom: 8px solid var(--haiti-gold);
            width: 100%;
            margin-top: 0;
        }

        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-bg-elements span {
            position: absolute;
            font-family: 'Bangers', cursive;
            color: rgba(233, 196, 106, 0.08);
            font-size: clamp(6rem, 25vw, 20rem);
            animation: floatHero 20s infinite alternate ease-in-out;
            white-space: nowrap;
        }

        .hero-bg-elements span:nth-child(1) {
            top: -20px;
            right: -20px;
            font-size: 25rem;
            opacity: 0.1;
            animation-duration: 25s;
            transform: rotate(10deg);
        }

        .hero-bg-elements span:nth-child(2) {
            bottom: -50px;
            left: -30px;
            font-size: 30rem;
            opacity: 0.08;
            animation-duration: 30s;
            transform: rotate(-15deg);
            color: var(--haiti-red);
        }

        .hero-bg-elements span:nth-child(3) {
            top: 40%;
            left: 15%;
            font-size: 12rem;
            opacity: 0.12;
            animation-duration: 18s;
            color: var(--haiti-gold);
        }

        .hero-bg-elements span:nth-child(4) {
            bottom: 20%;
            right: 20%;
            font-size: 15rem;
            opacity: 0.08;
            animation-duration: 22s;
            transform: rotate(5deg);
            color: white;
        }

        @keyframes floatHero {
            0% {
                transform: translateY(0) rotate(-5deg) scale(1);
            }
            50% {
                transform: translateY(-40px) rotate(0deg) scale(1.02);
            }
            100% {
                transform: translateY(20px) rotate(5deg) scale(0.98);
            }
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-particles::before,
        .hero-particles::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--haiti-gold) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.15;
            animation: particleMove 15s infinite alternate;
        }

        .hero-particles::before {
            top: 10%;
            left: 10%;
            width: 300px;
            height: 300px;
            animation-duration: 18s;
        }

        .hero-particles::after {
            bottom: 10%;
            right: 10%;
            width: 250px;
            height: 250px;
            animation-duration: 20s;
            background: radial-gradient(circle, var(--haiti-red) 0%, transparent 70%);
        }

        @keyframes particleMove {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: 0.1;
            }
            100% {
                transform: translate(50px, -30px) scale(1.2);
                opacity: 0.2;
            }
        }

        .hero-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            position: relative;
            z-index: 20;
            gap: 30px;
        }

        .hero-text {
            flex: 1 1 400px;
            color: white;
            animation: slideInHero 1.2s ease-out;
        }

        @keyframes slideInHero {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-text h2 {
            font-size: clamp(2.5rem, 7vw, 4.5rem);
            font-family: 'Bangers', cursive;
            color: var(--haiti-gold);
            text-shadow: 5px 5px 0 var(--haiti-red), 10px 10px 20px rgba(0,0,0,0.5);
            line-height: 1.1;
            margin-bottom: 15px;
            animation: titlePulse 3s infinite alternate;
        }

        @keyframes titlePulse {
            0% {
                text-shadow: 5px 5px 0 var(--haiti-red), 10px 10px 20px rgba(0,0,0,0.5);
            }
            100% {
                text-shadow: 7px 7px 0 var(--haiti-red), 15px 15px 30px rgba(0,0,0,0.7);
            }
        }

        .hero-text p {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin: 20px 0;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 60px;
            border: 2px solid var(--haiti-gold);
            display: inline-block;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-text p i {
            color: var(--haiti-gold);
            margin-right: 10px;
        }

        .hero-flag {
            flex: 0 0 auto;
            font-size: clamp(6rem, 18vw, 12rem);
            color: var(--haiti-gold);
            filter: drop-shadow(15px 15px 0 var(--haiti-red));
            animation: flagPulse 4s infinite alternate ease-in-out;
        }

        @keyframes flagPulse {
            0% {
                transform: scale(1) rotate(0deg);
                filter: drop-shadow(15px 15px 0 var(--haiti-red));
            }
            100% {
                transform: scale(1.1) rotate(3deg);
                filter: drop-shadow(20px 20px 0 var(--haiti-red));
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SLIDER (APENAS O CARROSSEL) */
        .slider-container {
            margin-top: 30px;
            position: relative;
            z-index: 10;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 15px 15px 0 var(--haiti-navy);
            border: 5px solid var(--haiti-gold);
            background: var(--white);
            height: clamp(350px, 60vh, 450px);
            width: 100%;
            touch-action: pan-y pinch-zoom;
            animation: slideBorder 3s infinite alternate;
        }

        @keyframes slideBorder {
            0% {
                border-color: var(--haiti-gold);
                box-shadow: 15px 15px 0 var(--haiti-navy);
            }
            100% {
                border-color: var(--haiti-red);
                box-shadow: 18px 18px 0 var(--haiti-navy);
            }
        }

        .slider {
            display: flex;
            transition: transform 0.4s ease-out;
            height: 100%;
            cursor: grab;
        }

        .slider:active {
            cursor: grabbing;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            flex-direction: row;
        }

        .slide-image {
            flex: 1;
            background-size: cover;
            background-position: center;
            background-color: var(--haiti-navy);
            height: 100%;
            position: relative;
        }

        .slide-content {
            flex: 1;
            background: var(--white);
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            overflow-y: auto;
        }

        .slide-content i {
            font-size: clamp(2rem, 5vw, 4rem);
            color: var(--haiti-red);
            margin-bottom: 12px;
        }

        .slide-content h3 {
            font-size: clamp(1.5rem, 4vw, 2.8rem);
            font-family: 'Bangers', cursive;
            color: var(--haiti-navy);
            margin-bottom: 8px;
            line-height: 1.2;
        }

        .slide-content p {
            font-size: clamp(0.95rem, 2vw, 1.2rem);
            color: var(--charcoal);
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .slide-content .date-badge {
            background: var(--haiti-gold);
            padding: 8px 15px;
            border-radius: 40px;
            font-weight: 700;
            display: inline-block;
            width: fit-content;
            font-size: clamp(0.85rem, 1.5vw, 1rem);
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--haiti-gold);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 15;
            color: var(--haiti-navy);
            font-weight: bold;
            box-shadow: 0 5px 0 var(--haiti-red);
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            transition: all 0.2s;
        }
        .slider-btn.prev { left: 15px; }
        .slider-btn.next { right: 15px; }
        .slider-btn:hover { 
            transform: translateY(-50%) scale(1.1); 
            background: var(--haiti-red); 
            color: white;
            box-shadow: 0 7px 0 var(--haiti-gold);
        }

        /* Efeito de loading esqueleto */
        .image-loading {
            position: relative;
            overflow: hidden;
            background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Fallback padrão para imagens (SVG com texto) */
        .img-fallback {
            background-size: cover !important;
            background-position: center !important;
        }

        /* BOTÃO VOLTAR AO TOPO */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--haiti-gold);
            border: 4px solid var(--haiti-red);
            color: var(--haiti-navy);
            font-size: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 6px 0 var(--haiti-navy), 0 10px 20px rgba(0,0,0,0.3);
            transform: scale(0.8);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .back-to-top:hover {
            background: var(--haiti-red);
            color: var(--haiti-gold);
            border-color: var(--haiti-gold);
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 0 var(--haiti-navy);
        }

        /* SEÇÕES */
        section { 
            padding: 50px 0; 
            border-bottom: 3px dashed var(--haiti-gold);
            width: 100%;
            overflow: hidden; /* Impede rolagem horizontal */
        }
        .section-title {
            font-size: clamp(2.2rem, 7vw, 3.5rem);
            font-family: 'Bangers', cursive;
            color: var(--haiti-navy);
            text-shadow: 3px 3px 0 var(--haiti-gold);
            margin-bottom: 30px;
            line-height: 1.2;
            word-break: break-word;
        }
        .section-title i { 
            color: var(--haiti-red); 
            margin-right: 10px;
            font-size: clamp(1.8rem, 5vw, 3rem);
        }

        /* HISTÓRIA */
        .historia-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .historia-imagem {
            flex: 1 1 280px;
            min-height: 250px;
            border-radius: 40px 10px 40px 10px;
            border: 5px solid var(--haiti-gold);
            box-shadow: 10px 10px 0 var(--haiti-navy);
            background-size: cover;
            background-position: center;
            background-color: var(--haiti-navy);
        }
        .historia-texto {
            flex: 2 1 350px;
        }
        .historia-texto h3 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-family: 'Bangers', cursive;
            color: var(--haiti-navy);
            text-shadow: 2px 2px 0 var(--haiti-gold);
            margin-bottom: 15px;
        }
        .historia-texto p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin: 10px 0;
            line-height: 1.5;
        }

        .cards-historia {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 15px;
            margin-top: 25px;
        }
        .card-historia {
            background: var(--white);
            border-radius: 25px 8px 25px 8px;
            border: 3px solid var(--haiti-navy);
            box-shadow: 6px 6px 0 var(--haiti-red);
            padding: 15px 10px;
            text-align: center;
            transition: 0.3s;
        }
        .card-historia:hover { transform: translate(-3px, -3px); box-shadow: 10px 10px 0 var(--haiti-gold); }
        .card-historia i { font-size: 2rem; color: var(--haiti-red); margin-bottom: 8px; }
        .card-historia h4 { font-size: 1.3rem; color: var(--haiti-navy); margin-bottom: 3px; }
        .card-historia p { font-size: 0.9rem; }

        /* PRESIDENTE */
        .presidente-card {
            background: var(--white);
            border-radius: 40px 15px 40px 15px;
            border: 4px solid var(--haiti-navy);
            box-shadow: 12px 12px 0 var(--haiti-red);
            padding: 25px;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
            margin: 30px 0;
        }
        .presidente-foto {
            width: min(200px, 50vw);
            height: min(200px, 50vw);
            border-radius: 50%;
            border: 6px solid var(--haiti-gold);
            box-shadow: 0 8px 0 var(--haiti-navy);
            background-size: cover;
            background-position: center;
            background-color: var(--haiti-navy);
        }
        .presidente-texto { flex: 1; }
        .presidente-texto h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-family: 'Bangers', cursive; color: var(--haiti-navy); margin-bottom: 10px; }
        .presidente-texto p { font-size: clamp(1rem, 2vw, 1.2rem); margin: 10px 0; }
        .presidente-texto i { color: var(--haiti-red); font-size: 1.5rem; margin-right: 8px; }

        @media (max-width: 768px) {
            .presidente-card {
                flex-direction: column;
                text-align: center;
            }

            .presidente-foto {
                margin: 0 auto;
            }
        }

        /* JOGADORES */
        .players-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            width: 100%;
        }

        .player-card {
            background: var(--white);
            border-radius: 30px 8px 30px 8px;
            border: 3px solid var(--haiti-navy);
            box-shadow: 8px 8px 0 var(--haiti-red);
            padding: 15px 10px;
            text-align: center;
            transition: 0.3s;
            width: 100%;
        }

        .player-card:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0 var(--haiti-gold);
        }

        .player-img {
            width: min(120px, 30vw);
            height: min(120px, 30vw);
            border-radius: 50%;
            margin: 0 auto 12px;
            border: 4px solid var(--haiti-gold);
            box-shadow: 0 6px 0 var(--haiti-navy);
            background-size: cover;
            background-position: center;
            background-color: var(--haiti-navy);
        }
        .player-card h4 { font-size: 1.3rem; color: var(--haiti-navy); }
        .player-card p { font-size: 0.9rem; }

        /* GALERIA (NÃO É SLIDER, É GRID) */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin-top: 25px;
            width: 100%;
        }

        .gallery-item {
            border-radius: 30px 8px 30px 8px;
            border: 3px solid var(--haiti-navy);
            box-shadow: 6px 6px 0 var(--haiti-red);
            overflow: hidden;
            transition: 0.2s;
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
            background-color: var(--haiti-navy);
            width: 100%;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 8px 8px 0 var(--haiti-gold);
        }

        .gallery-item .legenda {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(12,35,64,0.9);
            color: white;
            padding: 6px;
            font-weight: 600;
            border-top: 3px solid var(--haiti-gold);
            font-size: 0.85rem;
            z-index: 2;
        }

        /* LUTAS */
        .lutas-block {
            background: linear-gradient(130deg, #0b1e2f, #3e1f2b);
            border-radius: 50px 15px 50px 15px;
            padding: 30px 25px;
            border: 5px solid var(--haiti-gold);
            box-shadow: 15px 15px 0 var(--haiti-navy);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--cream);
            margin-bottom: 30px;
            align-items: center;
        }

        .lutas-block h3 { 
            font-size: clamp(2rem, 5vw, 3.5rem); 
            font-family: 'Bangers', cursive; 
            color: var(--haiti-gold); 
            text-shadow: 3px 3px 0 var(--haiti-red);
            line-height: 1.2;
        }
        .lutas-block p { font-size: clamp(0.95rem, 2vw, 1.2rem); }

        /* FOOTER */
        footer {
            background: linear-gradient(145deg, #0a1422, var(--haiti-navy));
            color: #e0e0e0;
            padding: 50px 0 20px;
            border-top: 8px solid var(--haiti-red);
            width: 100%;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 0;
            width: 100%;
            height: 8px;
            background: repeating-linear-gradient(90deg, var(--haiti-gold) 0px, var(--haiti-gold) 15px, transparent 15px, transparent 30px);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 { 
            color: var(--haiti-gold); 
            font-size: 1.5rem; 
            margin-bottom: 15px; 
            font-family: 'Bangers', cursive;
            text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
        }

        .footer-col p { 
            margin: 10px 0; 
            display: flex; 
            align-items: center; 
            gap: 8px;
            font-size: 0.95rem;
            transition: 0.2s;
            flex-wrap: wrap;
        }

        .footer-col i { 
            color: var(--haiti-red); 
            width: 20px;
            font-size: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .social-icons i { 
            font-size: 1.5rem; 
            color: var(--haiti-gold); 
            transition: 0.3s; 
            cursor: pointer;
        }

        .social-icons i:hover { 
            color: var(--haiti-red); 
            transform: translateY(-5px) scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 2px solid rgba(233, 196, 106, 0.3);
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .footer-flag {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 8px;
        }

        .footer-flag i {
            font-size: 1.8rem;
            filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.3));
        }

        /* RESPONSIVIDADE */
        @media (max-width: 900px) {
            body {
                padding-top: 80px;
            }
            
            .nav-container {
                padding: 5px 15px;
            }
            
            .nav-list {
                position: fixed; 
                top: 0; 
                right: -100%; 
                width: 85%; 
                max-width: 320px;
                height: 100vh;
                background: var(--haiti-navy); 
                flex-direction: column; 
                justify-content: center;
                align-items: center;
                border-left: 6px solid var(--haiti-gold); 
                transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
                z-index: 1001;
                gap: 15px;
                backdrop-filter: none;
                padding: 60px 20px;
                border-radius: 30px 0 0 30px;
                box-shadow: -10px 0 30px rgba(0,0,0,0.5);
                margin: 0;
            }
            
            .nav-list.active { 
                right: 0; 
            }

            .nav-list li a {
                font-size: 1.4rem;
                white-space: normal;
                text-align: center;
                justify-content: center;
                padding: 12px 20px;
                width: 100%;
            }

            .nav-list li a i {
                font-size: 1.4rem;
            }
            
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                gap: 10px;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 700px) {
            .slide {
                flex-direction: column;
            }
            .slide-image, .slide-content {
                flex: none;
                width: 100%;
                height: 50%;
            }
            .slider-container {
                height: 500px;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 600px) {
            .back-to-top {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
            
            .hero-bg-elements span {
                opacity: 0.05;
            }
            
            .hero-text h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .slider-container {
                height: 480px;
                border-radius: 30px;
                box-shadow: 8px 8px 0 var(--haiti-navy);
            }

            .slide-content {
                padding: 20px;
            }

            .slide-content h3 {
                font-size: 1.6rem;
            }

            .slide-content p {
                font-size: 0.9rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 25px;
            }

            .footer-col p {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }
            
            .players-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .cards-historia {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 360px) {
            .players-grid {
                grid-template-columns: 1fr;
            }
            
            .cards-historia {
                grid-template-columns: 1fr;
            }
            
            .hero-text h2 {
                font-size: 2rem;
            }
        }