/* Reset e Estilos Globais */
:root {
    --primary-color: #1a6fc9;
    --secondary-color: #0d4b8a;
    --accent-color: #f8b739;
    --text-color: #333;
    --text-light: #777;
    --bg-light: #f9f9f9;
    --white: #fff;
    --black: #000;
    --transition: all 0.3s ease;
}

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

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-color);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.whatsapp-float.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-left: 100px;
    transition: var(--transition);
    border-radius: 50%;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.navbar ul li a:hover::after,
.navbar ul li a.active::after {
    width: 100%;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: var(--primary-color);
}

.social-header {
    display: flex;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    margin-left: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}



.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* Hero Section */

.hero {
    background-image: url('assets/galeria7.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 700px;
    position: relative;
    margin-top: 90px;
}

.hero-slider {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
}

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

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.hero-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.slider-controls button:hover {
    background: var(--primary-color);
}

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

/* Sobre */
.sobre-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.sobre-stats {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.sobre-img {
    flex: 1;
}

.img-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sobre-img img {
    transition: transform 0.5s ease;
    width: 100%;
}

.sobre-img:hover img {
    transform: scale(1.05);
}

/* Equipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.membro {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.membro:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.membro-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.membro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.membro:hover .membro-img img {
    transform: scale(1.1);
}

.membro-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background: rgba(26, 111, 201, 0.8);
    padding: 15px;
    transition: var(--transition);
}

.membro:hover .membro-social {
    bottom: 0;
}

.membro-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: var(--transition);
}

.membro-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.membro-info {
    padding: 20px;
    text-align: center;
}

.membro-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.membro-info span {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.membro-info p {
    color: var(--text-light);
    font-size: 14px;
}

/* Produtos */
.produtos-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 25px;
    background: var(--bg-light);
    color: var(--text-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background: #e0e0e0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

.produto-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.produto-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.produto-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-item:hover .produto-img img {
    transform: scale(1.1);
}

.produto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 111, 201, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.produto-item:hover .produto-overlay {
    opacity: 1;
}

.produto-btn {
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.produto-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.produto-info {
    padding: 20px;
}

.produto-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.produto-preco {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.produto-acoes {
    display: flex;
    gap: 10px;
}

.btn-comprar {
    flex: 1;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-comprar:hover {
    background: var(--secondary-color);
}

.btn-detalhes {
    flex: 1;
    padding: 10px;
    background: var(--bg-light);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-detalhes:hover {
    background: #e0e0e0;
}

/* Campeonatos */
.campeonatos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.campeonato-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.campeonato-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.campeonato-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.campeonato-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.campeonato-item:hover .campeonato-img img {
    transform: scale(1.1);
}

.campeonato-data {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    line-height: 1.2;
}

.campeonato-data span:first-child {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.campeonato-info {
    padding: 20px;
}

.campeonato-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.campeonato-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}


/* Campeonatos segunda opcao */
.campeonatos-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.campeonatos-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #1a6fc9;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    position: absolute;
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #1a6fc9;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    top: 20px;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -150px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -150px;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    top: 30px;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a6fc9;
}

.timeline-content p {
    color: #555;
    margin-bottom: 5px;
}



/* Galeria */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 111, 201, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}



/* Contato */
.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-text p {
    color: var(--text-light);
}

.contato-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(26, 111, 201, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Rodapé */
.footer {
    background: #222;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

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

.footer-col ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #333;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-family: "Montserrat", sans-serif;
}

.newsletter-form button {
    width: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* ====== FOOTER ====== segunda oopcao */ 

footer {
    background: #0a0a0a;
    color: #f5f5f5;
    padding: 50px 20px 30px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Logo */
  
  .logo-container {
    margin-bottom: 25px;
  }
  
  .logo-container img {
    max-width: 150px;
    height: auto;
    width: 150px;   /* largura fixa */
    height: 150px;  /* altura fixa igual à largura */
    border-radius: 50%;
    object-fit: cover; /* garante que a imagem preencha o círculo sem distorcer */
    display: block;    /* remove espaçamento em linha */
    margin: 0 auto;    /* opcional, centralizar */
  }
  
  
  /* Contato */
  
  .contact-info {
    margin-bottom: 20px;
  }
  
  .address a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .address a:hover {
    color: #fff;
    text-decoration: underline;
  }
  
  /* Redes sociais */
  .social-media {
    margin: 30px 0;
  }
  
  .social-media h2 {
    font-size: 16px;
    color: #d4af37;
    margin-bottom: 15px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-icons a:hover {
    color: #d4af37;
    transform: translateY(-3px);
  }
  
  /* Divider */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #555, transparent);
    margin: 30px auto;
    width: 80%;
    border: none;
  }
  
  /* Textos */
  .copyright {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-top: 10px;
  }
  
  .developer {
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
  }
  
  .developer a {
    color: #d4af37;
    text-decoration: none;
  }
  
  .developer a:hover {
    text-decoration: underline;
  }
  
  /* ====== RESPONSIVO ====== */
  @media (max-width: 600px) {
    .social-icons {
      gap: 15px;
    }
  
    .address a {
      font-size: 13px;
    }
  
    .social-icons a {
      font-size: 20px;
    }
  }
/* ====== FOOTER ====== segunda oopcao */ 














/* Animações */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-top {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-left.show,
.animate-right.show,
.animate-top.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.lightbox-img:hover {
    transform: scale(1.05);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}



/* Responsivo */
@media (max-width: 992px) {
    .sobre-content {
        flex-direction: column;
    }

    .sobre-img {
        margin-top: 30px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        transition: var(--transition);
        z-index: 999;
        padding: 40px 20px;
        overflow-y: auto;
    }

    .navbar.active {
        left: 0;
    }

    .navbar ul {
        flex-direction: column;
    }

    .navbar ul li {
        margin: 15px 0;
    }

    .social-header {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .sobre-stats {
        flex-direction: column;
        gap: 20px;
    }

    .campeonatos-grid {
        grid-template-columns: 1fr;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}