@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');


  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Albert Sans', sans-serif;
    }
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

    /* Estado inicial escondido */
    .hidden {
      opacity: 0;
      transform: translateY(60px);
      filter: blur(8px);
      transition: all 0.8s ease-out;
    }

    /* Quando aparecer */
    .show {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }

header {
      margin: 10px;
      background: #111;
      border-radius: 10px;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
    }

        .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
    }

        header img {
      display: flex;
      align-items: center;
      width: 120px;
    }

    header nav {
      display: flex;
      align-items: center;
    }

    header nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #fff;
      font-size: 0.8rem;
    }

        header nav a:hover {
      color: #3F5644;
    }

    /* Estilo do dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #222;
      border-radius: 6px;
      display: none;
      flex-direction: column;
      min-width: 180px;
      padding: 0.5rem 0;
      z-index: 1000;
    }

    .dropdown-menu a {
      padding: 0.5rem 1rem;
      color: #fff;
      text-decoration: none;
      font-size: 0.8rem;
      display: block;
    }

    .dropdown-menu a:hover {
      color: #3F5644;
    }

    /* Mostrar no hover (desktop) */
    .dropdown:hover .dropdown-menu {
      display: flex;
    }

    /* Mostrar via JS (mobile) */
    .dropdown-menu.show {
      display: flex;
    }

    .btn-header {
      background: #3F5644;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      color: #fff;
      font-size: 0.8rem;
      text-decoration: none;
    }

    .btn-header:hover {
      background: #fff;
      color: #3F5644;
    }

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.whatsapp-float img {
  width: 35px;
}

.whatsapp-message {
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.2);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO */
.hero-sobre {
  margin: 10px;
  border-radius: 10px;
  position: relative;
  padding: 22.5rem 2rem;
  background: url("assets/img/bg-sobre.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about {
  background-image: url("../img/banner-sobrenos.png");
  background-size: cover; /* para ocupar todo o espaço */
  background-position: center; /* centraliza */
  background-repeat: no-repeat; /* não repete */
}

.hero-sobre .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
}

/* CONTAINERS */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* HISTÓRIA */
.historia h2, .valores h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: black;
}
.historia p {
  margin-bottom: 15px;
  text-align: justify;
  font-size: 25px;
  color: black;
}

/* VALORES */
.grid-valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  cursor: pointer;
}
.valor {
  background: #3f5644;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.grid-valores :hover {
  background: #3F5644;
}

.valor p {
  color: #fff;
}

.valor h3 {
  color: #FFF;
}

.valor h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* IMAGEM DESTACADA */
.imagem-sobre {
  text-align: center;
}
.imagem-sobre img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
}

/* FOOTER */
.footer {
  margin: 10px;
  background-color: #1e1a1a; /* cor de fundo escuro */
  padding: 80px;
  border-radius: 20px;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo */
.footer-logo img {
  height: 40px;
}

/* Linha separadora */
.footer-line {
  flex: 1;
  height: 1px;
  background-color: #3F5644;
  margin: 0 20px;
  min-width: 100px;
}

/* Botão */
.btn-orcamento {
  background-color: #3F5644;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-orcamento:hover {
  background-color: #fff;
  color:#3f5644;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  transition: 0.3s;
}

.footer-social a i {
  font-size: 18px;
  color: #3F5644;
  transition: 0.3s;
}

.footer-social a:hover i {
  color: #fff;
}


.footer-social a:hover {
  background: #3F5644;
}

.footer-social img {
  width: 18px;
  height: 18px;
  filter: invert(30%) sepia(20%) saturate(500%) hue-rotate(20deg);
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .menu-toggle {
  display: block;
  align-items: center; /* deixa o botão no canto direito */
}

    header img {
      width: 30%;
    }

/* Esconde o nav e o botão orçamento inicialmente */
header nav {
  display: none;
  flex-direction: column;
  align-items: center; /* centraliza os links */
  width: 100%;
  margin-top: 1rem;
  background: #111;
  border-radius: 8px;
  padding: 1rem;
}

header nav a {
  margin: 0.7rem 0;
  text-align: center;
  width: 100%;
}



/* Esconde o botão de orçamento quando o menu está fechado */
header .btn-orcamento {
  display: none;
}

/* Quando o menu abre */
header nav.show {
  display: flex;
}

header nav.show + .btn-orcamento {
  display: block;
  margin: 1rem auto 0;
  text-align: center;
}

  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-line {
    display: none; /* escondemos a linha em telas menores */
  }

  .footer-btn {
    margin: 10px 0;
  }

  .footer-social {
    justify-content: center;
  }
}
