
    * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #fff;
      color: white;
      animation: fadeIn 1s ease-in;
    }
 @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
   header {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background-color: transparent;
      transition: all 0.3s ease;
      z-index: 10;
    }

    header.fixo {
      position: fixed;
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      color: black;
    }

    header.fixo nav a {
      color: black;
      background-color: white;
    }

    header.fixo .cta-button {
      background-color: #00f0c8;
      color: black;
    }

    .logo {
      font-size: 28px;
      font-weight: 700;
      color: inherit;
    }

    .logo span {
      color: #00f0c8;
    }


    nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    nav a:hover::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #00f0c8;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #1a1a1a;
      min-width: 200px;
      top: 100%;
      left: 0;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
      border-radius: 8px;
      padding: 10px 0;
      z-index: 1000;
    }

    .dropdown-content a {
      display: block;
      padding: 12px 20px;
      text-decoration: none;
      color: white;
    }

    .dropdown-content a:hover {
      background-color: #00f0c8;
      color: black;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .cta-button {
      background-color: #00f0c8;
      color: black;
      padding: 10px 16px;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }
      .cta-button i {
      font-size: 16px;
    }


   

    .hero h1 {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto;
    }

    .conteudo {
      max-width: 1000px;
      margin: 60px auto;
      padding: 0 20px;
      line-height: 1.8;
      color: #000;
    }

    .conteudo h2 {
      color: #00d6a2;
      font-size: 28px;
      margin-bottom: 20px;
    }

    .servicos {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .servico {
      flex: 1 1 300px;
      background-color: #f9f9f9;
      padding: 20px;
      border-left: 5px solid #00d6a2;
      border-radius: 8px;
    }
    .servico h3 {
      margin-top: 0;
      color: #00a67c;
    }

    .cta {
      text-align: center;
      margin: 60px 20px;
    }

    .cta a {
      background-color: #00f0c8;
      color: black;
      padding: 14px 30px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 30px;
      transition: background 0.3s;
    }

    .cta a:hover {
      background-color: #00c0a0;
    }

    .footer {
      background: #0f0f0f;
      color: #fff;
      padding: 40px 20px 20px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-col h4 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #00d6a2;
    }

    .footer-col p,
    .footer-col a {
      color: #ddd;
      font-size: 14px;
      text-decoration: none;
      margin-bottom: 8px;
      display: block;
    }

    .footer-col a:hover {
      color: #00d6a2;
    }

    .social-links a img {
      width: 28px;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }

    .social-links a:hover img {
      transform: scale(1.1);
    }

    .footer-bottom {
      border-top: 1px solid #333;
      text-align: center;
      padding-top: 20px;
      font-size: 12px;
      color: #aaa;
    }
    .menu-toggle {
  display: block;
  position: relative;
  right: 30px;
  top: 10px;
  z-index: 11;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px; /* aumenta a área clicável */
}
    .menu-toggle i {
  color: white;
  font-size: 24px;
}

/* Efeito hover suave */
.menu-toggle:hover i {
  opacity: 0.8;
  transition: opacity 0.3s;
}
header.fixo .menu-toggle i {
  color: black;
}
    .menu-toggle {
  display: none; /* Oculta por padrão */
}
.social-links {
  display: flex;              /* Organiza os ícones em linha */
  justify-content: center;    /* Centraliza horizontalmente */
  gap: 10px;                  /* Espaço entre os ícones */
  margin-top: 10px;           /* Espaço entre o h4 e os ícones */
}

@media (max-width: 768px) {

  .menu-toggle {
    position: absolute;
    right: 30px;
    top: 10px;
    display: block;
    z-index: 11;
    background: none;
    border: none;
    cursor: pointer;
    display: block;
  
  }

  header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: black;
     width: 100%;
     
  }

   nav {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
    z-index: 10;
  }

  nav.active {
    display: flex;
  }


   header.fixo nav {
    background-color: white;
  }

  header.fixo nav a {
    color: black;
  }

  .hero {
    flex-direction: column;
    padding: 80px 20px 40px 20px;
    height: auto;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .conheca-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .servicos {
    flex-direction: column;
    align-items: center;
  }

  .servico {
    width: 90%;
  }

  @media (max-width: 600px) {
  footer {
    flex-direction: column;
    text-align: center;
  }

  footer .footer-col {
    margin: 15px 0;
  }
}
}
