/* Reset e configurações gerais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary-color: rgb(255,160,50);
            --secondary-color: blue;
            --accent-color: #2a9d8f;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gray-color: #6c757d;
        }

        ::-webkit-scrollbar {
        width: 10px;
        height: 20px;
      }
      ::-webkit-scrollbar-track {
        background: #1e293b; 
      }
      ::-webkit-scrollbar-thumb {
        background: rgba(255,130,0,0.9); 
        border-radius: 10px;
      }
      ::-webkit-scrollbar-thumb:hover {
        background: orange; 
      }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f5f7fa;
            color: var(--dark-color);
            overflow-x: hidden;
        }



        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(255, 151, 0, 0.6), rgba(0, 51, 102, 0.7)), url(../midia/esporte/futebol-circulo.jpeg);            
            background-size: cover;
            background-position: center;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            padding: 20px;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--secondary-color);
        }

        .hero-btn:hover {
            background-color: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            font-size: 2rem;
            color: white;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Seções gerais */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary-color);
        }

        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }

        /* Carrossel */
        .carousel-section {
            background-color: white;
        }

        .carousel-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-direction: column;
            color: white;
            text-align: center;
            padding: 40px;
            position: relative;
        }

       /* Carrossel - Gradientes removidos */
.carousel-item-1 {
    background: url(../midia/esporte/IMG-20251127-WA0037.jpg);
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: flex-end;
}

.carousel-item-2 {
    background: url(../midia/esporte/handebol.JPG);
    background-size: cover;
    background-position: center;
}

.carousel-item-3 {
    background: url(../midia/esporte/volei.jpg);
    background-size: 120%;
    background-position: 0px 800px;
}

.carousel-item-4 {
    background: url(../midia/esporte/basquete.JPG);
    background-size: cover;
    background-position: bottom;
    display: flex; 
    justify-content: flex-end;
}

/* Texto com sombra para melhor legibilidade */
.carousel-item h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0px 0px 10px rgba(0, 0, 0, 0.5),
        0px 0px 20px rgba(0, 0, 0, 0.4);
    font-weight: bold;
    color: white;
}

.carousel-item p {
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0px 0px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    color: white;
}

.carousel-item > * {
    position: relative;
    z-index: 2;
}

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

        .carousel-btn.prev {
            left: 20px;
        }

        .carousel-btn.next {
            right: 20px;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
        }

        /* Seção Modalidades */
        .modalidades-section {
            background-color: #f8f9fa;
        }

        .modalidades-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .modalidade-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .modalidade-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .modalidade-img {
            height: 200px;
            overflow: hidden;
        }

        .modalidade-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .modalidade-card:hover .modalidade-img img {
            transform: scale(1.05);
        }

        .modalidade-content {
            padding: 25px;
        }

        .modalidade-content h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .modalidade-content p {
            color: var(--gray-color);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .modalidade-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        /* Seção Benefícios */
        .beneficios-section {
            background-color: white;
        }

        .beneficios-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }

        .beneficio-item {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            text-align: center;
            padding: 30px 20px;
            border-radius: 20px;
            background-color: #f8f9fa;
            transition: all 0.3s ease;
        }

        .beneficio-item:hover {
            background-color: rgba(255, 165, 0, 1);
            color: white;
            transform: translateY(-5px);
        }

        .beneficio-item:hover .beneficio-icon {
            color: white;
        }

        .beneficio-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .beneficio-item h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* Footer */
        footer {
            background-color: black;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: white;
        }

        .footer-links h4, .footer-contact h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after, .footer-contact h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        .footer-contact a {
            text-decoration: none;
            color: white;
        }
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .carousel-item {
                height: 400px;
                padding: 20px;
            }
            
            .carousel-item h3 {
                font-size: 1.8rem;
            }
            .carousel-item-3 {
                background-position-y: 600px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .carousel-item {
                height: 350px;
            }
        }