* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-top: 120px;
    background: #f4f4f4;
}

/* Estilos para a seção de início */
.nav-left {
    display: none;
}

.top-bar {
    background: #830000;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    background: #125c00;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar {
    transition: 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    min-width: 180px;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px;
    color: #333;
}

.dropdown-menu li a:hover {
    background: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.seta {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .seta {
    transform: rotate(180deg);
}

.dropdown-menu a {
    text-decoration: none;
    color: #000;
}

.logo img {
    max-height: 90px;
    width: auto;
    display: block;
}

.logo img:hover {
    opacity: 0.8;
    transition: 0.4s;
}

.logo img:active {
    opacity: 0.5;
}

.menu {
    list-style: none;
    display: flex;
    gap: 40px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.menu>li {
    position: relative;
    cursor: pointer;
}

.menu>li>a:hover {
    color: #ffcc00;
    transition: 0.3s;
}

.menu>li>a {
    text-decoration: none;
    color: white;
}

div.icons img {
    height: 30px;
    cursor: pointer;
    display: none;
}

.floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

.floating-social img {
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

/* efeito hover */
.floating-social img:hover {
    transform: scale(1.12);
}

.caixa {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    padding: 20px;
}

.caixa2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 70px;
    padding: 20px;
}

.caixa3 {
    display: flex;
    justify-content: center;
}

#ultima {
    margin-bottom: 100px;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

h1 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 42px;
    color: #000000;
    padding: 20px;
    margin-bottom: 50px;
}

.valores {
    background: #ffffff;
    border-left: 5px solid #b30000;
    padding: 20px;
    margin: auto;
    margin-top: 30px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.intro h2 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    color: #555;
    padding: 20px;
    margin-bottom: 50px;
}

h3 {
    margin-bottom: 70px;
    color: rgb(184, 184, 181);
    text-align: center;
    height: 20px;
}

h2 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    color: #000000;
    padding: 20px;
    margin-bottom: 50px;
}

.fenerbas {
    color: green;
}

.amizade {
    color: #010ca0;
}

.imagem1 {
    border-radius: 50px;
    transition: transform 0.3s ease;
    width: 400px;
}

.imagem1:hover {
    transform: scale(1.1);
}

.footer {
    background: #830000;
    color: white;
    font-family: Arial, sans-serif;
}

.footer-top {
    background: #830000;
    text-align: center;
    padding: 15px 0 5px;
    padding-top: 0;
    position: relative;
}

.footer-logo {
    height: 110px;
    position: relative;
    top: -55px;
}

.sponsors-slider {
    overflow: hidden;
    background: linear-gradient(#830000 1%, #f4f4f4 99%, #830000 100%);
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.sponsors-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLoop 18s linear infinite;
}

.sponsors-track img {
    height: 75px;
    opacity: 0.9;
    transition: 0.3s;
    flex-shrink: 0;
}

.sponsors-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.sponsors-slider:hover .sponsors-track {
    animation-play-state: paused;
}

@keyframes scrollLoop {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-menu .col {
    display: flex;
    flex-direction: column;
}

.footer-menu h3 {
    margin-bottom: 10px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    margin: 4px 0;
    font-size: 14px;
    opacity: 0.9;
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 13px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.voltar-topo {
    text-decoration: none;
    color: white !important;
    font-size: 14px;
    transition: opacity 0.3s;
    cursor: pointer;
}

.voltar-topo:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.footer-link {
    display: table;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 8px 0;
    position: relative;
    padding-left: 18px;
    width: auto;
}

.footer-link::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: white;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: calc(100% - 18px);
}

/*responsividade */

@media (min-width: 1400px) {

    .caixa>div:nth-child(3) {
        flex: 0 0 100%;
        display: flex;
        justify-content: space-around;
    }

    .caixa,
    .caixa2 {
        display: flex;
        gap: 20px;
        justify-content: space-around;
        padding: 20px;
    }

    .caixa3 {
        display: flex;
        justify-content: center;
        gap: 50px;
        margin-bottom: 50px;
    }

    .caixa3 .imagem1 {
        margin-top: 40px;
    }
}

@media (max-width: 1340px) {
    .caixa {
        display: flex;
        justify-content: space-around;
        padding: 20px;
    }

    .caixa3,
    .caixa2 {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .jogadoresh2,
    .comissaoh2,
    .patrocinioh2 {
        margin-bottom: 50px;
    }

    .imagem1 {
        width: 350px;
    }

}

@media (max-width: 1024px) {
    .menu {
        display: none;
    }

    .nav-left {
        display: block;
        color: white;
        font-size: 26px;
        cursor: pointer;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .icons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo img {
        max-height: 70px;
    }

    .navbar {
        background: #125c00;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        position: fixed;
        top: 30px;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 50%;
        background: #125c00;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        display: none;
        border-radius: 0 0 30px 30px;
    }

    .menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
        gap: 5px;
    }

    .menu.show {
        display: flex;
    }
}


@media (max-width: 800px) {

    .caixa,
    .caixa2,
    .caixa3 {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 0;
        margin-top: 20px;
    }

    .jogadoresh2,
    .comissaoh2,
    .patrocinioh2 {
        margin-bottom: 50px;
    }

    .imagem1 {
        width: 300px;
    }

    .caixa3 {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .floating-social {
        gap: 5px;
    }

    .floating-social img {
        width: 35px;
        height: 35px;
    }

    .footer-menu {
        flex-direction: column;
        text-align: left;
        gap: 25px;
    }

    .footer-menu h3 {
        text-align: left;
        color: white;
    }

    .footer-link:hover::after {
        width: 20%;
    }

    .footer-logo {
        height: 90px;
        position: relative;
        top: -55px;
    }

    .sponsors-track img {
        height: 55px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}