* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ======= BODY ======= */
  body {
    padding-top: 50px; /* Ajustado para compensar o menu fixo */
  }
  
  /* ======= MENU FIXO COM LARGURA TOTAL ======= */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f1f3f4; /* Azul escuro */
    padding: 15px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(133, 221, 38, 0.623);
  }
  
  /* ======= LOGO ======= */
  .logo {
    height: 50px;
  }
  
  /* ======= MENU LINKS ======= */
  .menu ul {
    display: flex;
    list-style: none;
    padding-left: 20px;
  }
  
  .menu ul li {
    margin: 0 15px;
  }
  
  .menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
  }
  
  /* ======= SCROLLED MENU ======= */
  .scrolled {
    background: #0c9b214a !important;
  }
  
  .scrolled ul li a {
    color: #ffffff !important;
  }
  
  html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  
  /* ======= HEADER ======= */
  header {
    background: #fff;
    padding: 10px 20px;
  }
  
  /* ======= CORREÇÃO NO NAV ======= */
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* ======= MENU MELHORADO ======= */
  .menu {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 10px 0;
  }
  
  .menu li a {
    text-decoration: none;
    color: #262c2a;
  }
  
  .instagram {
    margin-top: 10px;
  }
  
  /* ======= SLIDER ======= */
  .slider {
    position: relative;
    overflow: hidden;
    height: 450px; /* Altura padrão */
    border: 2px solid rgba(133, 221, 38, 0.623);
  }
  
  .slides {
    display: flex;
    width: 400%; /* 4 imagens */
    height: 100%;
    animation: slide 40s infinite;
  }
  
  .slides img {
    width: 25%;
    height: auto;
    object-fit: cover;
  }
  
  @keyframes slide {
    0%, 100% {
      transform: translateX(0);
    }
    25% {
      transform: translateX(-25%);
    }
    50% {
      transform: translateX(-50%);
    }
    75% {
      transform: translateX(-75%);
    }
  }
  
  /* ======= SEÇÃO PRINCIPAL ======= */
  .principal {
    padding: 20px;
  }
  
  .hero {
    display: flex;
    flex-direction: column; /* Mantendo a organização responsiva */
    gap: 1rem;
  }
  
  .hero-conteudo {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
  }
  
  .destaque {
    font-size: 25px;
    font-weight: 500;
  }
  
  .hero-imagens-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .hero-imagens-container figure {
    flex: 1 1 calc(33.333% - 10px);
  }
  
  .hero-imagens-container img {
    width: 100%;
    border-radius: 5px;
  }
  
  /* ======= VÍDEO ======= */
  .video-container {
    max-width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: center;
  }
  
  video {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(133, 221, 38, 0.623);
  }
  
  /* ======= RODAPÉ ======= */
  footer {
    background-color: #d2dcbb;
    color: #5779378d;
    text-align: center;
    padding: 20px;
    border: 2px solid rgba(133, 221, 38, 0.623);
  }
  
  /* ======= MEDIA QUERIES ======= */
  @media (max-width: 768px) {
    .menu {
      flex-direction: column;
      align-items: center;
      padding: 15px;
    }
  
    .menu ul {
      flex-direction: column;
      align-items: center;
      padding: 0;
    }
  
    .menu ul li {
      margin: 5px 0;
    }
  
    .menu ul li a {
      text-align: center;
      display: block;
    }
  }
  
  @media (max-width: 480px) {
    body {
      font-size: 20px;
    }
  
    .slider {
      height: 180px;
    }
  
    .menu {
      padding: 10px;
    }
  
    .menu ul {
      margin-top: 5px;
    }
  
    .logo {
      height: 35px;
    }
  
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }
  }
  