* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #1e40af;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 2rem;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  .hero {
    height: 100vh;
    background: url('banners/Bem-vindo\ à\ Warriors\ Fighter!.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

    width: 100%; /* A div ocupa 100% da largura da tela */
    overflow: hidden; /* Esconde qualquer parte da imagem que ultrapasse a div */

  }
  .hero img {
    width: 100%; /* A imagem ocupa 100% da largura da div */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove o espaço em branco abaixo da imagem */
}
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  
  .full-width-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .full-width-image h2 {
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
  }
  
  section {
    padding: 60px 0;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #1e40af;
  }
  
  p {
    margin-bottom: 15px;
    color: #555;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 10px;
  }
  
  .grid-2, .grid-3 {
    display: grid;
    gap: 30px;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .card img {
    border-radius: 10px;
  }
  
  .contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 10px;
    background-color: #1e40af;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .contact-form button:hover {
    background-color: #1e3a8a;
  }
  
  footer {
    background-color: #1e40af;
    color: white;
    text-align: center;
    padding: 40px 20px;
  }
  
  footer p {
    margin: 0;
  }
  
  footer .social-icons {
    margin-top: 20px;
  }
  
  footer .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5rem;
  }
  
  footer .social-icons a:hover {
    color: #ddd;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .grid-2, .grid-3 {
      grid-template-columns: 1fr;
    }
    
    header h1 {
      font-size: 1.5rem;
    }
    
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
    
    .hero h2 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1.2rem;
    }
    
    .full-width-image h2 {
      font-size: 2rem;
    }
  }