
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', Arial, sans-serif;
    }

    body {
      scroll-behavior: smooth;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      color: black;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      z-index: 1000;
      box-shadow: 0 2px 15px rgba(0,0,0,0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    header.scrolled {
      padding: 10px 30px;
      background-color: rgba(255, 255, 255, 0.98);
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 50px;
      transition: height 0.3s ease;
    }
    
    header.scrolled .logo img {
      height: 40px;
    }
    
    /* Logo responsive */
    @media screen and (max-width: 768px) {
      .logo img {
        height: 40px;
      }
      
      header {
        padding: 12px 15px;
      }
      
      header.scrolled {
        padding: 8px 15px;
      }
    }

    .menu {
      display: flex;
      align-items: center;
    }

    .menu a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.5px;
      padding: 8px 5px;
      position: relative;
      transition: color 0.3s ease;
    }

    .menu a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background-color: #c00;
      bottom: 0;
      left: 0;
      transition: width 0.3s ease;
    }

    .menu a:hover {
      color: #c00;
    }
    
    .menu a:hover:after {
      width: 100%;
    }

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-toggle {
      margin-left: 20px;
      font-weight: 600;
      color: #333;
      text-decoration: none;
      cursor: pointer;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.5px;
      padding: 8px 5px;
      position: relative;
      transition: color 0.3s ease;
    }
    
    .dropdown-toggle:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background-color: #c00;
      bottom: 0;
      left: 0;
      transition: width 0.3s ease;
    }

    .dropdown-toggle:hover {
      color: #c00;
    }
    
    .dropdown-toggle:hover:after {
      width: 100%;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 180px;
      box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
      z-index: 1;
      top: 125%;
      left: 0;
      border-radius: 8px;
      padding: 8px 0;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .dropdown-content:before {
      content: '';
      position: absolute;
      top: -8px;
      left: 20px;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid white;
    }

    .dropdown-content a {
      color: #333;
      padding: 12px 20px;
      text-decoration: none;
      display: block;
      margin: 0;
      text-transform: none;
      font-weight: 500;
      letter-spacing: normal;
      transition: background-color 0.3s ease;
      position: relative;
    }
    
    .dropdown-content a:after {
      display: none;
    }

    .dropdown-content a:hover {
      background-color: #f5f5f5;
      color: #c00;
    }

    .dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;

      transform: translateY(5px);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;

      color: #333;
      transition: color 0.3s ease;
    }
    
    .mobile-toggle:hover {
      color: #c00;
    }

    section {
      padding: 80px 20px;
    }

    #inicio {
      background: url('imgs/foto.jpg') no-repeat center center/cover;
      height: 100vh;
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      text-shadow: 2px 2px 8px #000;
      margin-top: 70px;
    }

    #inicio h1 {
      font-size: 43px;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 10px;
    }

    #esportes {
      background-color: #f9f9f9;
      text-align: center;
    }

    .atividades-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto 0;
      padding: 0 15px;
    }

    .atividade {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .atividade:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .atividade-img {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .atividade-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .atividade:hover .atividade-img img {
      transform: scale(1.1);
    }

    .atividade h3 {
      color: #333;
      padding: 15px 15px 5px;
      font-size: 20px;
    }
    
    .atividade p {
      color: #666;
      padding: 0 15px 20px;
      font-size: 14px;
    }

    #vermais {
      margin-top: 40px;
      display: inline-block;
      background-color: #c00;
      color: white;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    #vermais:hover {
      background-color: #a00;
      transform: translateY(-3px);
    }
    
    @media screen and (max-width: 768px) {
      .atividades-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
      }
      
      .atividade-img {
        height: 180px;
      }
    }

    #contato {
      background-color: #f5f5f5;
      padding: 60px 20px;
    }

    #contato h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 32px;
      color: #333;
    }

    .contato-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      gap: 30px;
    }

    .info-contato {
      flex: 1;
      min-width: 300px;
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .info-contato h3 {
      color: #c00;
      margin-bottom: 20px;
      font-size: 24px;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .info-contato p {
      margin-bottom: 15px;
      font-size: 16px;
      line-height: 1.5;
    }

    .info-contato .label {
      font-weight: bold;
      color: #333;
    }

    .info-contato a {
      color: #c00;
      text-decoration: none;
    }

    .info-contato a:hover {
      text-decoration: underline;
    }

    .mapa {
      flex: 1;
      min-width: 300px;
      height: 400px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .mapa iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .horarios {
      margin-top: 20px;
    }

    .horarios h4 {
      margin-bottom: 10px;
      color: #444;
    }

    .horarios-table {
      width: 100%;
      border-collapse: collapse;
    }

    .horarios-table td {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
    }

    .horarios-table td:first-child {
      font-weight: bold;
      width: 40%;
    }

    .contato-form {
      flex: 1;
      min-width: 300px;
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .contato-form h3 {
      color: #c00;
      margin-bottom: 20px;
      font-size: 24px;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .contato-form input,
    .contato-form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 16px;
    }

    .contato-form textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contato-form button {
      background-color: #c00;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .contato-form button:hover {
      background-color: #a00;
    }

     .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #eee;
  border-radius: 50%;
  text-decoration: none;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: #c00;
}

.social-links a img {
  width: 24px;
  height: 24px;
  display: block;
}

    footer {
      background-color: black;
      color: white;
      text-align: center;
      padding: 15px;
    }

    /* Responsivo */
    @media screen and (max-width: 768px) {
      .menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 10px 0 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
      }
      
      .menu.active {
        display: flex;
      }
      
      .menu a {
        margin: 10px 20px;
        padding: 10px 0;
        width: calc(100% - 40px);
        text-align: center;
        font-size: 16px;
      }
      
      .menu a:after {
        bottom: 5px;
        left: 20%;
        width: 60%;
      }
      
      .dropdown {
        width: 100%;
      }
      
      .dropdown-toggle {
        margin: 10px 20px;
        padding: 10px 0;
        width: calc(100% - 40px);
        display: block;
        text-align: center;
        font-size: 16px;
      }
      
      .dropdown-toggle:after {
        bottom: 5px;
        left: 20%;
        width: 60%;
      }
      
      .dropdown-content {
        position: static;
        box-shadow: none;
        width: 100%;
        transform: none;
        background-color: #f8f8f8;
        padding: 0;
        margin-top: 10px;
        border-radius: 0;
      }
      
      .dropdown-content:before {
        display: none;
      }
      
      .dropdown-content a {
        padding: 12px 30px;
        text-align: center;
      }
      
      /* Garantir que os menus dropdown se fechem corretamente */
      .dropdown .dropdown-content {
        display: none;
        opacity: 0;
        transform: none;
        transition: opacity 0.3s ease;
      }
      
      /* Garantir que apenas os dropdowns ativos mostrem conteúdo */
      .dropdown.active .dropdown-content {
        display: block;
        opacity: 1;
        margin-top: 5px;
      }
      
      /* Destacar visualmente os dropdowns que estão ativos */
      .dropdown.active .dropdown-toggle {
        color: #c00;
        background-color: rgba(204, 0, 0, 0.05);
        border-radius: 4px;
      }
      
      /* Melhorar o feedback visual ao tocar nos itens */
      .dropdown-toggle:active,
      .menu a:active {
        background-color: rgba(0, 0, 0, 0.05);
      }
      
      .mobile-toggle {
        display: block;
      }
      
      .contato-container {
        flex-direction: column;
      }
      
      .mapa {
        height: 300px;
      }
      
      #inicio {
        margin-top: 70px;
      }
    }



/* Estilos para a seção de horários */
    .horarios-funcionamento {
      background-color: #fff5f5;
      padding: 60px 20px;
      text-align: center;
    }
    
    .horarios-funcionamento h2 {
      margin-bottom: 40px;
      font-size: 32px;
      color: #333;
      text-transform: uppercase;
    }
    
    .horarios-funcionamento h3 {
      font-size: 24px;
      margin-bottom: 15px;
      color: #333;
      background-color: #333;
      color: white;
      padding: 10px;
      max-width: 800px;
      margin: 30px auto 15px;
    }
    
    .tabela-horarios {
      border-collapse: collapse;
      width: 100%;
      max-width: 800px;
      margin: 0 auto 40px;
      background-color: white;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .tabela-horarios td {
      border: 1px solid #ddd;
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
    }
    
    .tabela-horarios tr td:first-child {
      color: #c00;
      width: 50%;
      text-align: center;
      text-transform: uppercase;
    }
    
    .tabela-horarios tr td:last-child {
      color: #c00;
      text-align: center;
    }
    
    .horarios-info {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .endereco, .telefone, .slogan {
      display: flex;
      align-items: center;
      font-size: 16px;
      color: #444;
    }
    
    .patrocinadores {
      margin-top: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
    }
    
    .logo-clube-mini {
      height: 50px;
    }
    
    .logo-patrocinador {
      height: 35px;
    }
    
    @media screen and (max-width: 768px) {
      .tabela-horarios td {
        padding: 10px;
        font-size: 16px;
      }
      
      .horarios-info {
        flex-direction: column;
        gap: 10px;
      }
    }
