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

body {
  font-family: system-ui, sans-serif;
  background-color: #ffffff;
  color: #fff;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
}

/* ====================== HEADER ====================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 3vw;
  margin-top: -12rem;
}

header img {
  width: 250px;
  max-width: 60vw;
  margin-left: -5rem;
}

/* Navbar */
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  font-family: Poppins, sans-serif;
  transition: 0.3s ease-in-out;
}

nav a:hover {
  color: #df5b16;
}

/* Sign-in Button */
.btn-signing {
  background-color: #df5b16;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-top: -0.5rem;
  align-items: center;
  text-decoration: none;
}


.btn-signing:hover {
  background-color: white;
  color: #df5b16;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Header */
.sobre-header {
  background: linear-gradient(to right, #000, #1a1a1a);
  padding: 4rem 2rem;
  text-align: center;
}

.sobre-header {
  background-image: url('img-sobre.webp');
  width: 100%;
}

.sobre-header h1 {
  font-size: 2.8rem;
  color: #df5b16;
  margin-top: -4rem;

}

.sobre-header p {
  font-size: 1.2rem;
  color: #ffffff;
}

/* Missão, Visão, Valores */
.sobre-mvv .blocos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: center;
}

.bloco {
  flex: 1;
  min-width: 250px;
  max-width: 32%;
  padding: 70px;
  background-color: #2b2b2b;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(147, 147, 147, 0.2), 
              0 6px 20px rgba(147, 147, 147, 0.2);
}

.bloco p {
  color: #ffffff;
  margin-bottom: 1rem;
}

.bloco h2 {
  color: #df5b16;
  margin-bottom: 1rem;
}

.bloco ul {
  list-style-type: disc;
  padding-left: 0;
  color: #ffffff;
}

.bloco:hover {
  transform: translateY(-5px);
}

/* História */
.sobre-historia {
  padding: 4rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.sobre-historia h2 {
  color: #df5b16;
  margin-bottom: 1rem;
}

.sobre-historia p {
  color: #575757;
  font-size: 1.1rem;
}

/* Diferenciais */
.sobre-diferenciais {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.sobre-diferenciais h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #df5b16;
}

.sobre-diferenciais ul {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.sobre-diferenciais ul li {
  background-color: #292929;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

/* CTA Final */
.sobre-cta {
  background-color: #df5b16;
  text-align: center;
  padding: 3rem 2rem;
  color: white;
}

.sobre-cta h2 {
  margin-bottom: 1rem;
}

.btn-cta {
  margin-top: 1rem;
  background-color: white;
  color: #df5b16;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #f5f5f5;
}

/* ====================== RESPONSIVIDADE ====================== */
@media (max-width: 768px) {
  /* Mostra o ícone do menu */
  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: -0.5rem;
    z-index: 1000;
    margin-top: -71px;
  }

  /* Esconde o menu por padrão */
  nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    border-radius: 8px;
  }

  /* Mostra o menu quando ativo */
  nav.active {
    display: flex;
  }

  /* Header em coluna no mobile */
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: relative;
    margin-top: -6rem;
  }

  /* Logo menor */
  header img {
    width: 200px;
    margin-left: -5rem;
    margin-top: -4rem;
  }

  /* Botões e textos mais compactos */
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-signing {
    display: none ;


  .content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .description {
    font-size: 1rem;
  }

  /* Seções de “sobre” */
  .sobre-mvv .blocos {
    flex-direction: column;
  }

  .sobre-header h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .sobre-header p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul li {
    margin-bottom: 0.75rem;
  }

  .servicos h2 {
    font-size: 2rem;
  }

  .servicos .intro {
    font-size: 1rem;
  }

  .servico-card {
    flex: 0 0 100%;
  }
  .servico-card img {
    height: 15rem;
  }
}
}
