@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}

body {
  font-family: 'Bebas Neue', sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}
.site-topo {
  background: #021e3d;
  padding: 15px 0;
  color: white;
}
.site-topo .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-topo nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}
.site-topo nav a:hover {
  text-decoration: underline;
}
.site-rodape {
  background: #021e3d;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.resultado-card {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.resultado-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}
.btn {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  color: white;
  background-color: #c00;
  font-weight: bold;
  cursor: pointer;
}
.btn:hover {
  background-color: #900;
}
/* === Toggle de visualização === */
.toggle-view {
  text-align: center;
  margin: 20px auto;
}
.toggle-view button {
  background: #f1f1f1;
  border: 1px solid #dadada;
  color: #333;
  padding: 8px 16px;
  border-radius: 4px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}
.toggle-view button.active {
  background: #e31e24;
  border-color: #e31e24;
  color: #fff;
}

/* === Grade de cards (blocos) === */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

/* === Card === */
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Imagem */
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  background: #f0f0f0;
}
.card-img-placeholder {
  width: 100%;
  height: 180px;
  background: #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
}

/* Conteúdo */
.card-content { display: flex; flex-direction: column; gap: 8px; }
.card-titulo {
  font-weight: bold;
  font-size: 16px;
}
.card-sub,
.card-endereco {
  font-size: 14px;
  color: #444;
}
.card-detalhes {
  font-size: 14px;
  font-weight: bold;
  color: #b30000;
  text-decoration: none;
}

/* Botões */
.botao-carrinho {
  background-color: #b30000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.botao-carrinho:hover {
  background-color: #900000;
}
/* Botão remover do orçamento */
.botao-remover {
  background-color: #888;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  max-width: 320px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.botao-remover:hover {
  background-color: #555;
}
/* === Modo lista === */
.grid-cards.lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grid-cards.lista .card {
  flex-direction: row;
  align-items: flex-start;
}
.grid-cards.lista .card-img,
.grid-cards.lista .card-img-placeholder {
  width: 250px;
  height: 160px;
  flex-shrink: 0;
}
.grid-cards.lista .card-content {
  padding-left: 16px;
}
h2{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 55px;
  text-decoration: none;
  font-weight: 500;
  color: #222222;
  transition: 0.3s;
  text-transform: uppercase;
  text-align: center;
}
.chamada-home{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 55px;
  text-decoration: none;
  font-weight: 500;
  color: #FFFF;
  transition: 0.3s;
  text-transform: uppercase;
  text-align: end;
  margin: 0;
}
.texto{
  text-align: center;
  font-family: "Roboto", Sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #54595F;  
}
select {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;      /* regular */
  font-size: 16px;       /* ajuste conforme sua preferência */
  color: #333;           /* cor do texto */
}