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

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

.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-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;
}

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

.hero {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.slides {
    position: relative;
    width: 100%;
    padding-top: 48%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 244, 244);
    text-align: center;
    background: rgba(255, 221, 221, 0.35);
    padding: 30px;
    border-radius: 8px;
    z-index: 3;
    overflow: hidden;
    animation: fadeUp 1.5s ease forwards;
}

.hero-text::before {
    content: "";
    position: absolute;
    width: 220%;
    height: 220%;
    top: -60%;
    left: -60%;

    background: conic-gradient(rgba(0, 150, 0, 0.15),
            rgba(255, 0, 0, 0.15),
            rgba(255, 215, 0, 0.15),
            rgba(0, 150, 0, 0.15));
    opacity: 4;
    animation: girar 5s linear infinite;
    z-index: -1;
}

@keyframes girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate(-50%, -20%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

.mascara {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sobre {
    background: #f4f4f4;
    padding: 60px 20px;
}

.sobre-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-texto {
    flex: 1;
    text-align: left;
}

.sobre-texto h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.sobre-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.sobre-texto ul {
    margin: 20px 0;
    padding-left: 20px;
}

.sobre-texto li {
    margin-bottom: 8px;
}

.btn-historia {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 28px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-historia:hover {
    background: #d60000;
}

.sobre-img img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
}

.titulos {
    text-align: center;
    padding: 70px 20px;
}

.titulos h2 {
    color: #000000;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.subtitulo {
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.titulos-container {
    max-width: 700px;
    margin: auto;
}

.titulo-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.titulo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.titulo-card::after {
    content: "→";
    margin-left: auto;
    font-size: 20px;
    opacity: 0;
    transition: 0.3s;
}

.titulo-card:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

.icone {
    font-size: 36px;
}

.titulo-card h3 {
    color: #000000;
    margin-bottom: 5px;
    text-align: left;
}

.titulo-card p {
    color: #666;
    font-size: 15px;
    text-align: left;
}

/* Estilos para camisa */
.jersey {
    padding: 60px 20px;
    background-color: #f4f4f4;
}

.jersey-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.jersey-content img {
    max-width: 300px;
    border-radius: 20px;
}

.jersey-text {
    max-width: 400px;
    text-align: left;
}

.btn-jersey {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-jersey:hover {
    background: #222;
}

/* Estilos para a seção de Instagram */
.instagram {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.instagram h2 {
    margin-bottom: 30px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.insta-grid blockquote {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Estilos para o footer */
.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);
}

@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%);
    }

    .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;
    }

    .icons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .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;
    }

    .jersey-text {
        text-align: center;
    }

    .jersey-content {
        flex-direction: column;
    }

    .sponsor-logos img {
        height: 60px;
        filter: none;
        opacity: 0.8;
        transition: 0.3s;
    }
}

@media (max-width: 768px) {

    .slides {
        padding-top: 120%;
    }

    .slide {
        background-size: cover;
    }

    .hero-text {
        width: 85%;
        padding: 20px;

    }

    .hero-text h1 {
        font-size: 28px;
    }

    .titulo-card {
        flex-direction: column;
        text-align: center;
    }

    .floating-social {
        gap: 5px;
    }

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

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

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

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

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

    html {
        scroll-behavior: smooth;
    }

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

@media (max-width: 1062px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 717px) {
    .insta-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }
}