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

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

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

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

/* Navbar */
nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -4rem;
}

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;
}

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

/* 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: 1rem;
}

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


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

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

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

.contato-topo {
  background: linear-gradient(to right, #000, #1a1a1a);
  text-align: center;
  padding: 3rem 1rem;
}

.contato-topo h1 {
  font-size: 2.8rem;
  color: #df5b16;
}

.contato-topo p {
  color: #ccc;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.formulario {
  background-color: #1a1a1a;
  padding: 4rem 2rem;
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full {
  width: 100%;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #df5b16;
}

input,
select,
textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  color: #000;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.btn-enviar {
  align-self: flex-start;
  background-color: #df5b16;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #fff;
  color: #df5b16;
}

/* Responsivo */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .btn-enviar {
    align-self: center;
  }

  .contato-topo h1 {
    font-size: 2rem;
  }

  .contato-topo p {
    font-size: 1rem;
  }
}

/*Footer */
.footer {
  background-color: #0a0a0a;
  color: #fff;
  font-size: 0.95rem;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
  padding: 2rem;
  text-align: center;
}

.footer-col h4 {
  color: #df5b16;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom a {
  color: #df5b16;
  text-decoration: none;
}

/* Ícones */
.footer-col i {
  margin-right: 0.5rem;
  color: #df5b16;
}

/* ===== REDES SOCIAIS (BOTÕES) ===== */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #df5b16;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  transform: translateY(-4px);
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .footer-social {
    flex-direction: row;
    justify-content: center;
  }
  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    margin-top: -3rem;
    right: -35px;
    z-index: 1000;
  }

.menu-open #contacto {
  display: none !important;
}

   nav {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 7rem;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
    border-radius: 8px;
  }
  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: -7rem;
    margin-top: -3rem;
  }

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



.contato-form button {
  align-self: center;
  background-color: #df5b16;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contato-form button:hover {
  background-color: #b9460d;
  transform: scale(1.05);
}