
.banner-topo {
  position: relative;
  background: url('../imagens/barueri-fundo-02.jpg') no-repeat center;
  display: flex;
  padding: 210px 0;
  color: white;
  text-align: center;
}
.banner-topo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* transparência */
  z-index: 1;
}
.busca-box {
  padding: 20px;
  border-radius: 20px;
}
.busca-box select, .busca-box input[type="text"] {
  width: 22%;
  padding: 10px;
  margin: 5px;
  border: none;
  border-radius: 8px;
}
.busca-box .acoes {
  margin-top: 15px;
}
.btn-verde {
  background: green;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
}
.btn-laranja {
  background: orange;
  color: black;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  margin-left: 10px;
  text-decoration: none;
}
.busca-home {
  display: flex;
  justify-content: center;  /* centra horizontalmente */
  align-items: center;      /* alinha verticalmente */
  gap: 20px;                /* espaçamento entre os itens */
  padding: 40px 0;          /* ajuste de padding se quiser */
  background-color: #409545;/* mantém o fundo vermelho */
  border-radius: 18px;      /* opcional: deixa as quinas arredondadas */
  flex-wrap: wrap;          /* quebra linha em telas muito estreitas */
}

/* Se quiser que cada select tenha largura igual: */
/* Define um tamanho fixo para cada select */
.busca-home select {
  min-width: 220px;        /* aumenta a largura mínima */
  padding: 10px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* Ajuste os botões conforme seu estilo atual: */
.btn-pesquisa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                       /* espaço caso queira colocar um ícone */
  background: linear-gradient(45deg, #222222, #414141);
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 
    background 0.3s ease, 
    transform 0.1s ease, 
    box-shadow 0.3s ease;
}

.btn-pesquisa:hover {
  background: linear-gradient(45deg, #222222, #414141);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-pesquisa:active {
  background: linear-gradient(45deg, #1e7e34, #19692c);
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.10);
}
.btn-orcamento {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                                 /* espaço entre ícone e texto */
  background: #25D366;                      /* verde WhatsApp */
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease, box-shadow 0.3s ease;
}

.btn-orcamento:hover {
  background: #1ebe57;                      /* tom mais escuro no hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-orcamento:active {
  background: #128C7E;                      /* tom ainda mais escuro no clique */
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0,0,0,0.10);
}

/* Caso você queira um leve contorno no foco (acessibilidade) */
.btn-orcamento:focus {
  outline: 2px solid rgba(37,211,102,0.6);
  outline-offset: 2px;
}
.btn-pesquisa,
.btn-orcamento {
  white-space: nowrap;
  flex: 0 0 auto;
}
.container.destaques {
  margin-top: 40px;
  margin-bottom: 40px;
}
.banner-barueri {
  position: relative;
  background: url('../imagens/barueri-fundo-02.jpg') no-repeat center;
  height: 80vh; /* ou ajuste conforme necessário */
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10%;
}

.banner-barueri .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* transparência */
  z-index: 1;
}

.banner-barueri .conteudo {
  position: relative;
  z-index: 2; /* Fica acima do overlay */
  max-width: 600px;
  text-align: left;
}

.banner-barueri h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 75px;
  text-decoration: none;
  font-weight: 500;
  color: #ffff;
  transition: 0.3s;
  text-transform: uppercase;
  text-align: end;
  margin: 0 0 10px;
  line-height: 1.2;
}

.banner-barueri p {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: "Roboto", Sans-serif;
  text-align: end;
}

.banner-barueri .botao-verde {
  background: #4CAF50;
  padding: 10px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  text-align: end;
}

.banner-barueri .botao-verde:hover {
  background: #43a047;
}