
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #3f3f3f;
  color: #f0f0f0;
}

.header {
  background: #1a1a1a;
  position: relative;
 padding: 22px 36px; 
}

.logo {
  height: 180px !important;   /* Desktop grande e destacado */
  width: auto !important;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.4));
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.contatos a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  font-size: 14px;
}

.menu {
  margin-top: 10px;
  text-align: right;
}

.menu a {
  color: #f0f0f0;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.hero {
  background: linear-gradient(to bottom, #000000aa, #ff9900cc), url('../img/hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  background-position: right center;
  text-align: left;
}

.hero-texto {
  max-width: 600px;
  background: rgba(0,0,0,0.6);
  padding: 30px;
  color: #fff;
  margin-left: 40px; /* ADICIONADO */
  border-radius: 6px; /* OPCIONAL para suavizar */
}

.hero-texto h1 {
  font-size: 36px;
  color: #ff9900; /* Cor laranja padrão */
}


.hero-texto p {
  margin: 10px 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  color: white;
  border: 1px solid white;
  text-decoration: none;
}

.sobre .container {
  display: flex;
  justify-content: space-between;
  padding: 60px 20px;
  background: #444;
}

.sobre .texto {
  flex: 1;
  padding-right: 40px;
  margin-top: 20px; /* Espaço entre o texto e o botão */
  display: inline-block;
}

.sobre h2 {
  color: #ff9900;
  margin-bottom: 10px;
}

.sobre .imagem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre .imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
  display: block;
}


.servicos {
  padding: 60px 20px;
  text-align: center;
}

.servicos h2 {
  color: #ff9900;
}

.formulario h2 {
  color: #ff9900;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #2e2e2e;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  color: white;
  width: 350px;
}

.card img {
  width: 100%;
  border-radius: 4px;
}

.card span {
  display: block;
  margin-top: 10px;
}

.pronunciamento-clientes {
  padding: 60px 20px;
  text-align: center;
}

.pronunciamento-clientes h2 {
  color: #ff9900;
}

.pronunciamentos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.pronunciamento {
  background: #2e2e2e;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  color: white;
  width: 350px;
}

.pronunciamento img {
  width: 100%;
  border-radius: 4px;
}

.pronunciamento span {
  display: block;
  margin-top: 10px;
}

.contato {
  display: flex;
  padding: 60px 20px;
  background: #444;
}

.formulario {
  flex: 1;
  padding-right: 30px;
}

.formulario form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.formulario input,
.formulario textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
}

.formulario button {
  background: #00bfff;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.mapa {
  flex: 1;
}

.mapa iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.mapa .info {
  margin-top: 10px;
  font-size: 14px;
}
.info-servico {
  display: none;
  margin-top: 20px;
}

.info-servico h3 {
  color: #ff9900;
  font-weight: bold;
}
.rodape {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  font-size: 10px !important;
  padding: 20px;
}

.rodape * {
  font-size: 10px !important;
}

.rodape a {
  color: #ff9900;
  text-decoration: none;
}

.rodape a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.espaco-topo {
  margin-top: 15px;
}

.btn-saiba-mais {
  background-color: #f6b545;
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-saiba-mais:hover {
  background-color: #d89e32;
  transform: scale(1.05);
  color: #111;
}

/* Ajusta imagem hero */
.hero img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Botão personalizado do tema */
.btn-saiba-mais {
  background-color: #f6b545;
  color: #000;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-saiba-mais:hover {
  background-color: #d89e32;
  transform: scale(1.05);
  color: #111;
}

/* Centralizador */
.site-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #3f3f3f;
  box-shadow: 0 0 20px #000;
  padding: 20px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 15px #000;
  border-radius: 10px;
}
.servicos-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1200px;
}

.card-servico {
  position: relative;
  flex: 1 1 calc(33.33% - 20px);
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card-servico img {
  width: 100%;
  height: auto;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 👈 tudo desce pro final */
  padding: 20px;
  transition: background 0.3s ease;
}

.card-servico .titulo-servico {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  width: 100%;
  margin-bottom: 20px; /* 👈 distância entre título e botão */
}


.titulo {
  color: #ff9900;
  font-weight: bold;
}

.card-servico .btn-saiba-mais {
  margin-top: 10px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card-servico:hover .btn-saiba-mais {
  opacity: 1;
  transform: translateY(0);
}

.bloco-info-servico {
  align-items: flex-start;
  background-color: #2e2e2e;
  border: 1px solid #f6b545;
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.bloco-info-servico img.icone {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  flex-shrink: 0;
}

.bloco-info-servico .texto {
  flex: 1;
}

.bloco-info-servico .texto h3 {
  color: #ff9900;
  margin-bottom: 6px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: relative;
  margin-top: 20px; /* 👈 AQUI resolve o problema */
}


.btn-whatsapp img {
  width: 20px;
  height: 20px;
}

.btn-whatsapp:hover::after {
  content: 'Fale conosco, não perca tempo!';
  position: absolute;
  bottom: -30px;
  left: 0;
  font-size: 12px;
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Formulário oculto */
.form-container {
  display: none;
  background-color: #2e2e2e;
  border: 2px solid #25D366;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
  max-width: 400px;
  box-shadow: 0 0 20px #000;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-container input {
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.form-container .botoes {
  display: flex;
  justify-content: space-between;
}

.form-container button {
  padding: 10px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.form-container button[type="submit"] {
  background-color: #25D366;
  color: white;
}

.form-container button[type="button"] {
  background-color: #666;
  color: white;
}

/* Animação para o formulário */
.animar-formulario {
  animation: aparecerForm 0.6s ease;
}

@keyframes aparecerForm {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.linha-laranja {
  width: 60px;
  height: 3px;
  background-color: #ff9900;
  margin: 10px 0 20px 0;
  border-radius: 3px;
}

.texto-sobre {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #dddddd;
  font-size: 16px;
  max-width: 95%;
}

personalizacao {
  padding: 60px 20px;
  background-color: #2e2e2e;
}

.personalizacao .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.personalizacao .imagem {
  flex: 1;
  text-align: center;
}

.personalizacao .imagem img {
  max-width: 80%;
  max-height: 380px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

.personalizacao .texto {
  flex: 1;
  color: #fff;
  max-width: 600px;
}

.personalizacao .texto h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.personalizacao .texto .laranja {
  color: #ff9900;
}

.personalizacao .texto .subtitulo {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ccc;
}

.personalizacao .linha-laranja {
  width: 50px;
  height: 4px;
  background-color: #f6b545;
  margin-bottom: 20px;
}

.personalizacao .texto p {
  line-height: 1.6;
}
  
.social-icons-topo {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.social-icons-topo a {
  color: #f6b545;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons-topo a:hover {
  color: #ffffff;
}




/* ==================== MOBILE RESPONSIVO ==================== */
@media screen and (max-width: 768px) {
  .header-top,
  .menu,
  .sobre .container,
  .personalizacao .container,
  .contato {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-texto {
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }

  .hero-texto h1,
  .hero-texto p,
  .sobre .texto,
  .personalizacao .texto,
  .formulario,
  .rodape,
  .servicos h2,
  .servicos p,
  .card,
  .card-servico .titulo-servico,
  .pronunciamento-clientes h2,
  .pronunciamento-clientes p,
  .texto-sobre,
  .texto-personalizacao {
    text-align: justify;
  }

  .hero {
    padding: 50px 10px;
    background-position: center;
  }
  
@media (max-width: 992px) {
  .logo { height: 60px !important; }
}

/* telas pequenas (celular) */
@media (max-width: 576px) {
  .logo { height: 48px !important; }
}

/* garante que a barra acomode a logo sem esmagar */
.header-top { min-height: 72px; gap: 20px; }

  .cards,
  .pronunciamentos,
  .servicos-container {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .card-servico,
  .pronunciamento {
    width: 100% !important;
    max-width: 95%;
  }

  .btn,
  .btn-saiba-mais,
  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }

  .formulario input,
  .formulario textarea,
  .formulario button {
    font-size: 16px;
  }

  .form-container {
    max-width: 95%;
  }


  .social-icons-topo {
    position: static;
    justify-content: center;
    margin-bottom: 10px;
  }

  .menu {
    text-align: center;
    margin-top: 20px;
  }

  .menu a {
    display: block;
    margin: 10px 0;
  }
}
