@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Reset básico e fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica World', Montserrat, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth; /* Rolagem suave opcional */
}

body {
    font-family: 'Montserrat', Helvetica, sans-serif;
    background-color: #fff; /* Fundo branco */
    color: #000000; /* Texto preto */
    line-height: 1.6; /* Um pouco mais de espaço entre linhas */
    font-size: 16px; /* Tamanho base */
    overflow-x: hidden; /* Evitar scroll horizontal */
}

/* Container Principal */
.container {
    width: 100%; /* Usar porcentagem para melhor fluidez */
    max-width: 1200px; /* Limite máximo */
    margin: 0 auto;
    padding: 0 15px; /* Padding lateral menor */
}

/* Container Estreito para Seções de Texto */
.narrow-container {
    max-width: 800px; /* Mais estreito para melhor legibilidade */
}

/* Cabeçalho */
header {
    background-color: #000000;
    padding: 15px 0;
    border-bottom: 1px solid #222; /* Linha sutil de separação */
    position: sticky; /* Opcional: Fixar no topo */
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

/* Logo no cabeçalho */
.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.header-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Seções Genéricas */
section {
    padding: 60px 0; /* Mais padding vertical */
    clear: both;
}

section h2 {
    text-align: center;
    font-size: 22px; /* Reduzido para ser consistente com adidaslp */
    font-weight: 700;
    color: #000000; /* Alterado para preto */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px; /* Espaço consistente abaixo do título */
}

h1 {
    font-size: 22px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #333;
}

/* Seção Hero (Somos Furia) */
.hero-section {
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center; /* Changed from flex-start to center */
    background-color: #ffffff; /* Alterado para branco */
    padding: 100px 0 0px; /* Padding interno generoso */
    color: #000000; /* Texto escuro para contraste */
    text-align: start; /* Altered text-align from start to center */
    
}

.hero-section h2 {
    font-size: 42px; /* Ajustado para o tamanho do adidas LP */
    margin-bottom: 20px;
    color: #333; /* Texto escuro para contraste */
    font-weight: 800; /* Aumentado o peso da fonte para ficar mais nítido */
    opacity: 1; /* Garantindo opacidade total */
    letter-spacing: 1px; /* Melhorando o espaçamento entre letras */
    text-align: start; /* Ensure headings are left-aligned */
}

.hero-section p {
    font-size: 16px; /* Ajustado para consistência */
    margin: 0; /* Remove margin auto */
    color: #333; /* Texto escuro para contraste */
    line-height: 1.8;
    font-weight: 500; /* Aumentado o peso da fonte para ficar mais nítido */
    opacity: 1; /* Garantindo opacidade total */
    text-align: start; /* Ensure paragraphs are left-aligned */
}

.hero-section .content-centered p {
    text-align: justify;
    margin-bottom: 20px;
    text-align: start;
}

.hero-section h1 {
    text-align: start;
    width: 100%;
    margin-bottom: 30px;
}

.hero-section p {
    text-align: start; /* Override general p centering if necessary */
    margin: 0 0 15px 0; /* Adjust margin as needed, removing auto horizontal margins */
}

/* Logo FURIA SVG */
.logo-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    max-width: 100%;
}

.main-logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.main-logo-link:hover {
    transform: scale(1.03);
}

.furia-logo {
    max-width: 100%;
    height: auto;
    width: 600px;
    margin: 20px 0;
}

.content-centered {
    text-align: start; /* Change text-align from center to start (left) */
    margin-left: 0; /* Ensure no auto margin on left */
    margin-right: 0; /* Ensure no auto margin on right */
}

/* Seção Modalidades */
#modalidades {
     background-color: #ffffff; /* Alterado para cinza claro como nas seções secundárias do adidas LP */
}

/* Align the heading to the start */
#modalidades h2 {
    text-align: start; /* Align heading to the left */
}

.modalidades-grid {
    display: grid;
    /* Default: let it fit as many as possible with a min size */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; /* Increased gap for better spacing */
    margin-top: 30px;
    /* Optional: Limit the max-width of the grid itself if needed */
    /* max-width: 1000px; */ /* Adjust as needed */
    /* margin-left: 0; */ /* Ensure it aligns left if max-width is used */
    /* margin-right: auto; */
}

.modalidade-item {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack circle and button vertically */
    align-items: center; /* Center items horizontally */
}

.modalidade-item:hover {
    transform: translateY(-5px);
}

.modalidade-circulo {
    width: 150px; /* Define width for the circle */
    height: 150px; /* Define height for the circle */
    border-radius: 50%; /* Make it a circle */
    background-color: #ffffff; /* Example background color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Space between circle and button */
    border: 2px solid #000; /* Optional: Add a border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow to circle */
    transition: background-color 0.3s, border-color 0.3s;
    background-size: cover; /* Scale the image to cover the element */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image tiling */
    position: relative; /* Needed for potential overlay */
    overflow: hidden; /* Ensure content doesn't spill */
}

/* Optional: Add a semi-transparent overlay for better text readability */
.modalidade-circulo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust darkness (0.3 = 30% black) */
    border-radius: 50%;
    z-index: 1; /* Place overlay above background image */
}

.modalidade-item:hover .modalidade-circulo {
    border-color: #555; /* Example: Darken border on hover */
}

.modalidade-item h3 {
    margin-bottom: 0;
    font-size: 16px; /* Adjust as needed */
    text-transform: uppercase;
    color: #fff; /* Change text color to white for contrast */
    padding: 0 10px; /* Add padding if text is too wide */
    line-height: 1.2; /* Adjust line height */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Add text shadow for better readability */
    position: relative; /* Ensure text is above overlay */
    z-index: 2; /* Place text above overlay */
}

/* Styling for the SAIBA MAIS buttons in modalidades section */
.modalidade-item button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modalidade-item button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modalidade-item button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Seções de Texto (História, Cronologia) */
.text-section {
    background-color: #fff; /* Alterado para fundo branco como nas seções principais */
}

.text-section p {
    color: #333; /* Cor de texto principal consistente com adidas LP */
    margin-bottom: 20px;
    font-size: 16px;
}

/* Cronologia Específica */


/* Timeline animation */
.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.timeline-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-left {
    transform: translateX(-50px) translateY(0);
}

.timeline-right {
    transform: translateX(50px) translateY(0);
}

.timeline-left.timeline-visible,
.timeline-right.timeline-visible {
    transform: translateX(0) translateY(0);
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000; /* Alterado para preto */
    margin-bottom: 15px;
    text-transform: none; /* Anos sem uppercase */
}

/* Rodapé */
footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 1px solid #222; /* Linha sutil */
    font-size: 0.9em;
}

/* Ajustes Responsivos Básicos */
@media (max-width: 768px) {
    section h2 {
        font-size: 2em;
        margin-bottom: 40px;
        text-align: start;
    }

    .hero-section h2 {
        font-size: 3em;
        text-align: start;
    }

    .hero-section p {
        font-size: 1em;
        text-align: start;
    }

    .modalidades-grid {
        /* Adjust columns for medium screens if needed, e.g., 2 or 3 columns */
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Slightly smaller min size */
        gap: 20px;
    }

    section {
        padding: 40px 0;
    }

    h2 {
        font-size: 24px;
    }

    .social-icons {
        padding: 15px 0;
    }

    .partnership-content {
        gap: 20px;
    }

    .header .desktop-banner {
        display: none;
    }
    
    .header .mobile-banner {
        display: block;
    }

    .social-icons-container {
        gap: 20px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .partnership-image img {
        max-width: 100%;
    }
}

/* Media query for larger screens to enforce exactly 4 columns */
/* Using 1024px as the breakpoint for "large" screens */
@media (min-width: 1024px) {
    .modalidades-grid {
        /* Explicitly set 4 columns */
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
     .hero-section h2 {
        font-size: 2.5em;
    }

    section h2 {
        font-size: 1.8em;
    }

     .modalidades-grid {
        grid-template-columns: repeat(2, 1fr); /* Two columns on very small screens */
        gap: 15px;
    }

     .modalidade-item h3 {
        font-size: 1.3em;
     }

     .modalidade-item button {
        padding: 10px 20px;
        font-size: 0.8em;
     }

    .product-card {
        width: 100%;
    }
    
    .product-image-container {
        height: 400px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
    
    .whatsapp-tooltip {
        width: 200px;
        bottom: 60px;
        font-size: 12px;
        right: -10px;
    }

    .sidemenu {
        width: 250px;
    }
    
    .sidemenu-nav a {
        font-size: 13px;
    }
    
    .sidemenu-nav a svg {
        width: 16px;
        height: 16px;
    }
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    justify-content: center;
    margin-top: 7px;
    align-items: center;
}

.navbar-logo a {
    display: block;
}

.navbar-logo img {
    height: 32px;
    width: auto;
}

/* Sidemenu Styles */
.sidemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
}

.sidemenu.active {
    transform: translateX(0);
}

.sidemenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1015;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.sidemenu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidemenu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidemenu-close {
    cursor: pointer;
    font-size: 24px;
    color: #999;
    transition: color 0.3s;
}

.sidemenu-close:hover {
    color: #333;
}

.sidemenu-content {
    padding: 20px;
}

.sidemenu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidemenu-nav li {
    margin-bottom: 15px;
}

.sidemenu-nav a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

.sidemenu-nav a:hover {
    color: #000;
}

.sidemenu-nav a.highlight {
    color: #000;
    font-weight: 600;
}

.sidemenu-nav a svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.sidemenu-toggle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1010;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

/* Header Section */
.header {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #000;
    margin-top: 76px; /* Added to account for fixed navbar */
}

.header img {
    width: 100%;
    display: block;
}

.header .desktop-banner {
    display: block;
}

.header .mobile-banner {
    display: none;
}

.banner-title {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.banner-title h1 {
    display: inline-block;
    font-size: 42px;
    font-weight: 800;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 30px;
    margin: 0;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .banner-title h1 {
        font-size: 30px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .banner-title h1 {
        font-size: 24px;
        padding: 10px 15px;
    }
}

/* Social Icons Section */
.social-icons {
    background-color: #000000;
    padding: 28px 0;
    text-align: center;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
    background-color: #000;
}

.social-icon:hover svg {
    fill: #fff;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: #000;
    transition: fill 0.3s;
}

/* Partnership Section */
.partnership-section {
    background-color: #010101;
    color: #fff;
}

.partnership-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.partnership-text {
    flex: 1;
    min-width: 300px;
}

.partnership-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.partnership-image img {
    max-width: 100%;
    height: auto;
    transition: max-width 0.3s ease;
}

/* Products Section */
.products-section {
    background-color: #F2F2F2;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product-card {
    background-color: #fff;
    width: 300px;
    transition: transform 0.3s;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid rgb(22 24 35 / 12%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #000;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 20px 15px;
    text-align: left;
    background-color: #fff;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price-before {
    color: #666;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price {
    color: #000;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
}

/* Social Media Section */
.social-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.social-feeds {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.social-feed {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    height: 400px;
    background-color: #fff;
    border: 1px solid rgb(22 24 35 / 12%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sponsors Section */
.sponsors-section {
    background-color: #F3F4F6;
    padding: 40px 0;
    text-align: center;
}

.sponsors-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sponsors-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.sponsor-item {
    background-color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item:hover {
    transform: translateY(-5px);
}

.sponsor-item img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sponsor-item svg {
    max-height: 47px;
    max-width: 100%;
}

/* Footer Section */
.footer {
    background-color: #fff;
    color: #333;
    padding: 40px 0 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.footer-menu, .footer-social {
    flex: 0 0 auto;
    min-width: 180px;
    max-width: 200px;
}

.menu-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.footer-menu ul, .footer-social ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

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

.footer-menu a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #000;
}

.social-inner ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
}

.social-inner a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-text {
    font-size: 12px;
    color: #999;
    text-align: center;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Tooltip styles for WhatsApp button */
.whatsapp-tooltip {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 14px;
    line-height: 1.4;
    z-index: 99;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 25px;
    margin-left: -5px;
    border-width: 8px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Popup Overlay Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #000;
}

.popup-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-icon svg {
    width: 30px;
    height: 30px;
    fill: #00b300;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.popup-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.popup-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup-button:hover {
    background-color: #333;
}

/* Estilos específicos para a página Quem Somos */
.text-section {
    padding: 80px 0;
    background-color: #ffffff; /* Alterado para branco como nas seções principais */
}

.content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-centered p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333; /* Cor de texto principal consistente */
}

/* Estilos para a seção de modalidades */
.modalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust minmax if needed */
    gap: 40px; /* Increased gap for better spacing */
    margin-top: 30px;
}

.modalidade-item {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    text-align: center;
    box-shadow: none;
    transition: transform 0.3s;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack circle and button vertically */
    align-items: center; /* Center items horizontally */
}

.modalidade-item:hover {
    transform: translateY(-5px);
}

.modalidade-circulo {
    width: 150px; /* Define width for the circle */
    height: 150px; /* Define height for the circle */
    border-radius: 50%; /* Make it a circle */
    background-color: #ffffff; /* Example background color */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Space between circle and button */
    border: 2px solid #000; /* Optional: Add a border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow to circle */
    transition: background-color 0.3s, border-color 0.3s;
    background-size: cover; /* Scale the image to cover the element */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent image tiling */
    position: relative; /* Needed for potential overlay */
    overflow: hidden; /* Ensure content doesn't spill */
}

/* Optional: Add a semi-transparent overlay for better text readability */
.modalidade-circulo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust darkness (0.3 = 30% black) */
    border-radius: 50%;
    z-index: 1; /* Place overlay above background image */
}

.modalidade-item:hover .modalidade-circulo {
    border-color: #555; /* Example: Darken border on hover */
}

.modalidade-item h3 {
    margin-bottom: 0;
    font-size: 16px; /* Adjust as needed */
    text-transform: uppercase;
    color: #fff; /* Change text color to white for contrast */
    padding: 0 10px; /* Add padding if text is too wide */
    line-height: 1.2; /* Adjust line height */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Add text shadow for better readability */
    position: relative; /* Ensure text is above overlay */
    z-index: 2; /* Place text above overlay */
}

/* Specific background images for each circle */
.circulo-cs {
    background-image: url('https://cdn2.steamgriddb.com/icon/fe772ff1261b820e437821342b445539/32/256x256.png'); /* Replace with your image path */
}

.circulo-valorant {
    background-image: url('https://images.steamusercontent.com/ugc/1289667502762077035/0BBD690EF2F84B522A6E1D34EBE5F1513685C089/?imw=637&imh=358&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=true'); /* Replace with your image path */
}

.circulo-kings {
    background-image: url('https://brandemia.org/contenido/subidas/2022/11/kings-league_logo-summa-1200x670.png'); /* Replace with your image path */
}

.circulo-lol {
    background-image: url('https://portaldiaspora.com.br/wp-content/uploads/2024/06/League-of-Legends.jpeg'); /* Replace with your image path */
}

.circulo-rl {
    background-image: url('https://img.icons8.com/fluent/512/rocket-league.png'); /* Replace with your image path */
}

.circulo-r6 {
    background-image: url('https://img.icons8.com/?size=192&id=iExfEgcZKka2&format=png'); /* Replace with your image path */
}

.circulo-apex {
    background-image: url('https://logodownload.org/wp-content/uploads/2019/02/apex-legends-logo-1.png'); /* Replace with your image path */
}

.circulo-redram {
    background-image: url('https://media.glassdoor.com/sqll/2655123/porsche-gt3-cup-challenge-brasil-squarelogo-1630670226728.png'); /* Replace with your image path */
}

/* Estilos para modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #000;
}

/* Sponsors Section */
.sponsors-section {
    background-color: #F3F4F6; /* Mantido o cinza claro consistente */
    padding: 40px 0;
    text-align: center;
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Social Section */
.social-section {
    background-color: #fff;
}

/* Remove conflito de cores duplicadas para text-section */
.text-section {
    background-color: #fff !important;
}

.image-placeholder,
.timeline {
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

/* New styles for alternating Historia layout */
#historia {
    background-color: #F2F2F2; /* Ensure background is white */
}

#historia h2 {
    text-align: start;
}

/* Style for the introductory paragraph */
.historia-intro {
    margin-bottom: 60px; /* Space below the intro paragraph */
    /* Optional: Use narrow-container style for better readability */
    /* max-width: 800px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.historia-intro p {
    color: #333;
    line-height: 1.8;
    /* Optional: Center the text if using max-width */
    /* text-align: center; */
}

.historia-item {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: center;
    gap: 40px; /* Space between text and image */
    margin-bottom: 60px; /* Space between items */
}

.historia-text-block,
.historia-image-block {
    flex: 1; /* Each takes up half the space */
    min-width: 300px; /* Minimum width before wrapping */
}

.historia-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Optional styling */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Optional styling */
}

.historia-text-block p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0; /* Remove default bottom margin if only one p per block */
}

/* Order for right-aligned image */
.historia-item-right .historia-image-block {
    order: 1; /* Image comes first visually */
}

.historia-item-right .historia-text-block {
    order: 2; /* Text comes second visually */
}

/* Order for left-aligned image (default) */
.historia-item-left .historia-text-block {
    order: 1; /* Text comes first visually */
}

.historia-item-left .historia-image-block {
    order: 2; /* Image comes second visually */
}

/* Responsive adjustments for Historia */
@media (max-width: 768px) {
    .historia-item {
        gap: 20px;
        margin-bottom: 40px;
    }

    /* Stack text and image vertically on smaller screens */
    .historia-item-left .historia-text-block,
    .historia-item-left .historia-image-block,
    .historia-item-right .historia-text-block,
    .historia-item-right .historia-image-block {
        order: initial; /* Reset order */
        flex-basis: 100%; /* Make each take full width */
    }
    
    .historia-intro {
        margin-bottom: 40px; /* Adjust space for smaller screens */
    }
    
    .historia-item-left .historia-text-block {
        order: 1;
    }
    
    .historia-item-left .historia-image-block {
        order: 2;
    }
    
    .historia-item-right .historia-text-block {
        order: 1; /* Ensure text comes first when stacked */
    }
    
    .historia-item-right .historia-image-block {
        order: 2;
    }
    
    .historia-image-block {
        margin-top: 20px; /* Add space above image when stacked */
    }
    
    .historia-text-block,
    .historia-image-block {
        min-width: unset;
    }
}
/* Timeline Section - FURIA Branding - Adjusted for right-aligned timeline */
#timeline {
    padding: 80px 0;
    background-color: #ffffff;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    /* ...existing code... */
}

/* Added connecting line for timeline */
.timeline-container::before {
    content: "";
    position: absolute;
    top: 100px;
    bottom: 270px;
    left: -97px;
    width: 4px;
    background-color: #000;
    z-index: 0;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 115%;
    box-sizing: border-box;
    margin-bottom: 30px;
}

/* Align timeline heading to start, like in the história section */
#timeline h2 {
    text-align: start;
}

/* All items are right-aligned, so we adjust the layout */
.timeline-left, 
.timeline-right {
    left: 0%;
}

.timeline-content {
    padding: 25px;
    background-color: #F2F2F2;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 60px;
}

/* Create rectangular year markers */
.timeline-content h3 {
    position: relative;
    left: -222px;
    top: 10px;
    background-color: #000;
    color: #ffffff;
    padding: 8px 12px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    min-width: 50px;
    width: 20%;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 100; /* Aumentado para um valor muito alto */
    transform: translateX(-50%);
    isolation: isolate; /* Cria um novo contexto de empilhamento */
}


.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Remove the arrow pointers since they don't align well with the new design */
.timeline-left .timeline-content::after,
.timeline-right .timeline-content::after {
    display: none;
}

/* Responsive timeline - For mobile, stack items vertically */
@media (max-width: 768px) {
    .timeline-container::after {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }
    
    .timeline-left, 
    .timeline-right {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 30px;
    }
    
    .timeline-content h3 {
        left: -40px;
        font-size: 14px;
        padding: 6px 10px;
        min-width: 40px;
    }
    
    /* Adjust connecting line for mobile */
    .timeline-container::before {
        left: 30px;
    }
}