/*
Theme Name: Hello Child
Template: hello-elementor
*/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.empresas-home {
  padding: 60px 20px;
  background: #f8f8f8;
}
.container-empresas {
  max-width: 1200px;
  margin: 0 auto;
}
.titulo-empresas {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
}
.grid-empresas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.card-empresa {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.card-empresa:hover {
  transform: translateY(-5px);
}
.img-empresa {
  background-size: cover;
  background-position: center;
  height: 180px;
}
.conteudo-empresa {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.conteudo-empresa h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #B48E0D;
}
.conteudo-empresa p {
  flex: 1;
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}
.botao-ver {
  background: #B48E0D;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.botao-ver:hover {
  background: #000;
  color:#fff !important;
}