body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9fafb;
  color: #333;
}
header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px; /* espaço entre logo e texto */
  padding: 50px 20px 30px;
  background: #fff;
  flex-wrap: wrap; /* responsivo: se não couber, quebra */
  text-align: left; /* garante alinhamento do texto */
}

.image-header {
  width: 150px;
  flex-shrink: 0; /* evita a logo encolher demais */
}

.header-text {
  max-width: 600px;
}

.header-text h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.search-bar {
  display: flex;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 5px 10px;
}

.search-bar button {
  background: #facc15;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.search-bar button:hover {
  background: #eab308;
}

.main-btn {
  margin-top: 20px;
  background: #facc15;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.main-btn:hover {
  background: #eab308;
}

section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

/* Categorias */
.categorias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.categorias button {
  background: aliceblue;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.categorias button:hover {
  background: #fef9c3;
}

/* Empresas em destaque */
.empresas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.btn-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #facc15;
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.btn-link:hover {
  background: #eab308;
}
.card-content {
  padding: 15px;
}

.stars {
  color: #facc15;
  font-size: 1.2rem;
}

.card button {
  margin-top: 10px;
  width: 100%;
  background: #facc15;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #eab308;
}

/* Benefícios */
.beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.beneficio {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.beneficio span {
  font-size: 2rem;
}

.beneficio h3 {
  margin: 15px 0 10px;
}
footer {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  text-decoration: none;
}

footer .footer-links {
  margin-bottom: 10px;
}

footer .footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

footer .footer-links a:hover {
  color: #facc15;
}

.footer-logo {
  width: 80px;
  border-radius: 12px;
  vertical-align: middle;
}

/* innerpages */
.empresa-detalhes {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.empresa-detalhes h2 {
  margin-bottom: 10px;
  color: #333;
}

.empresa-detalhes .descricao {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.empresa-detalhes .info h3 {
  margin-top: 20px;
  color: #222;
}

.empresa-detalhes ul {
  padding-left: 20px;
  list-style: disc;
}

.contatos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

.btn-contato {
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}

.btn-contato.whatsapp {
  background: #25d366;
}
.btn-contato.whatsapp:hover {
  background: #1ebe57;
}

.btn-contato.email {
  background: #f59e0b;
}
.btn-contato.email:hover {
  background: #d97706;
}

.btn-contato.instagram {
  background: #e1306c;
}
.btn-contato.instagram:hover {
  background: #c13584;
}

.btn-contato.youtube {
  background: #ff0000;
}
.btn-contato.youtube:hover {
  background: #cc0000;
}

.btn-contato.site {
  background: #6096ba;
}
.btn-contato.site:hover {
  background: #a3cef1;
}

.btn-contato.facebook {
  background: #be95c4;
}
.btn-contato.facebook:hover {
  background: #9f86c0;
}

.logo-footer {
  width: 80px;
  border-radius: 8px;
}

.btn-mapa {
  display: inline-block;
  margin: 10px 0 20px;
  padding: 10px 15px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn-mapa:hover {
  background: #1e40af;
}

.mapa {
  margin: 20px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* Ajuste para imagens dentro da página da empresa */
.empresa-detalhes img {
  width: 250px; /* largura fixa */
  height: auto; /* mantém proporção */
  border-radius: 12px; /* cantos arredondados */
  margin: 10px; /* espaçamento entre elas */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* sombra leve */
  object-fit: cover; /* corta excesso mantendo a proporção */
}

/* Galeria de imagens */
.empresa-detalhes .galeria {
  display: flex;
  flex-wrap: wrap; /* quebra para a linha de baixo se faltar espaço */
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.logo-redonda {
  width: 150px; /* tamanho da logo */
  height: 150px; /* força a altura igual para ficar redonda */
  object-fit: cover; /* mantém proporção e corta o excesso */
  border-radius: 50%; /* deixa a imagem redonda */
  border: 3px solid #facc15; /* opcional: borda amarela para destacar */
  margin: 15px 0;
}
/* Header das páginas internas */
header.header-interno {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  flex-wrap: wrap;
}

header.header-interno h1 {
  font-size: 1.5rem;
  margin: 0 20px;
  flex: 1;
  text-align: center;
}

header.header-interno img.image-header {
  width: 120px;
}

header.header-interno .logo-redonda {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 15px;
}

/* Botões apenas nas internas */
header.header-interno .header-buttons {
  display: flex;
  gap: 10px;
}

header.header-interno .header-buttons a {
  background: #facc15;
  color: #333;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.9rem;
}

header.header-interno .header-buttons a:hover {
  background: #eab308;
}
.contato-section {
  text-align: center;
  margin: 30px 0;
}

.contato-botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.btn-contato {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #facc15;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.3s;
}

.btn-contato img {
  width: 24px;
  height: 24px;
}

.btn-contato:hover {
  background: #eab308;
}
.logo-empresa {
  width: 2.5rem;
  height: auto;
  border-radius: 0.625rem;
  display: block;
  margin: 0 auto 1rem;
}
/* ========================
   FORMULÁRIO DE CONTATO
======================== */
.form-contato {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background: #fafaff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.form-contato h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

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

.contato-form label {
  font-weight: bold;
  color: #404040;
}

.contato-form input,
.contato-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: border 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #090b3c;
  outline: none;
}

.contato-form button {
  padding: 1rem;
  background-color: #facc15;
  color: #333;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contato-form button:hover {
  background-color: #eab308;
}

/* ========================
   PÁGINA DE OBRIGADO
======================== */
.obrigado-section {
  max-width: 600px;
  margin: 5rem auto;
  padding: 2rem;
  text-align: center;
  background: #f0f4ff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.obrigado-section h2 {
  color: #090b3c;
  margin-bottom: 1rem;
}

.obrigado-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #404040;
}

/* cookies */
.cookies-msg {
  width: 80%;
  background-color: #eee;
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%);
  border-radius: 1.5rem;
  display: none;
}

.cookies-msg.removed {
  display: block;
}

.cookies-msg .cookies-txt {
  display: flex;
  align-items: center;
  text-align: justify;
  padding: 20px;
}

.cookies-msg .acceptCookies {
  margin-left: 3rem;
}

.cookies-msg .acceptCookies button {
  background-color: #facc15;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.cookies-msg .acceptCookies button:hover {
  transform: scale(0.9);
}
