/* =========================
   Reset & Base
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: Montserrat, sans-serif;
  color: #333;
  line-height: 1.6;
 }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* =========================
   Header & Navegação
========================= */
.header {
  background: #000;
  height: 120px;
  position: relative;
  width: 100%;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza a logo */
  position: relative;
  height: 100%;
}
.logo { height: 100px; width: auto; }

.nav {
  position: absolute;
  right: 20px;
  display: flex;
  gap: 20px;
}
.nav a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav a:hover {
  transform: scale(1.1);
  color: #fff;
}

/* =========================
   Hero
========================= */
.hero {
  background: #222 url('../imagens/capa1.jpg') center/cover no-repeat;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero p { font-size: 1.2rem; margin-bottom: 20px; }

.btn {
  background: #fff;
  color: #111;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid #000;
}
.btn:hover { background: #b8952c; }

/* =========================
   Estrutura das Seções
========================= */
section { padding: 60px 0; }
h2 { text-align: center; margin-bottom: 20px; color: #d4af37; }

/* =========================
   Quem Somos
========================= */
.sobre p {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   Serviços (Carrossel)
========================= */
.carrossel-servicos {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.lista-servicos {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.card {
  min-width: 250px;
  max-width: 250px;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.card h3 {
  font-size: 1rem;
  color: #111;
  margin-bottom: 10px;
}
.card p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}

/* Ícones dos serviços */
.icone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.icone-container i {
  font-size: 45px;
  color: #d4af37; /* dourado */
}

/* Setas do carrossel */
.seta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: transparent;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 15%;
  transition: all 0.3s ease;
}
.carrossel-servicos:hover .seta {
  background: rgba(212,175,55,0.9);
  color: #fff;
}
.seta.esquerda { left: -10px; }
.seta.direita  { right: -10px; }

@media (max-width: 768px) {
  .card { min-width: 90%; max-width: 90%; }
}

/* =========================
   Feedbacks (Galeria + Modal)
========================= */
.elogios { padding: 60px 0; }
.elogios h2 { margin-bottom: 30px; }

.grid-elogios {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.grid-elogios img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: zoom-in;
}

/* Modal de zoom */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.8);
}
.modal-conteudo {
  display: block;
  max-width: 90%;
  max-height: 85vh;
  margin: 60px auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.fechar {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.fechar:hover { color: #d4af37; }

/* =========================
   Contatos
========================= */
.contato-itens p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #333;
}
.contato-link { text-decoration: none; color: inherit; }
.contato-link:hover { color: #d4af37; }

.contato-icon {
  font-size: 24px;
  background: #d4af37;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================
   Formas de Pagamento
========================= */
.pagamento {
  max-width: 1100px;
  margin: 40px auto;
  padding: 40px 0;
  text-align: center;
}
.pagamento h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.icons-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #555;
}
.icons-container > div { text-align: center; }
.icons-container i { font-size: 30px; margin-bottom: 6px; display: inline-block; }

/* =========================
   WhatsApp Flutuante
========================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #d4af37;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #c79b2d;
}

/* =========================
   Footer
========================= */
.footer { background: #111; color: #fff; text-align: center; padding: 20px; }
.footer a { color: #d4af37; text-decoration: none; }

/* =========================
   MENU HAMBURGUER
========================= */

/* BOTÃO */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #d4af37;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 45px;       /* posiciona na altura certa */
  z-index: 2000;   /* garante que fica na frente */
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    display: flex; /* IMPORTANTE */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 1500;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 20px;
    margin: 15px 0;
  }
}

/* SEÇÃO */
.mvv-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

/* CONTAINER */
.mvv-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-align: center;
}

/* BOX */
.mvv-box {
  flex: 1;
  padding: 20px;
}

/* ÍCONES */
.mvv-box i {
  font-size: 60px;
  color: #d4af37;
  margin-bottom: 15px;
}

/* TÍTULO */
.mvv-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* TEXTO */
.mvv-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* LISTA */
.mvv-box ul {
  text-align: left;
  padding-left: 20px;
}

.mvv-box li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* LINHA DIVISÓRIA */
.divider {
  width: 2px;
  background: #d4af37;
  margin: 0 10px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .mvv-container {
    flex-direction: column;
  }

  .divider {
    width: 100%;
    height: 2px;
    margin: 20px 0;
  }
}

/* DIFERENCIAIS */
.diferenciais {
  text-align: center;
}

.diferenciais h2 {
  margin-bottom: 20px;
}

/* GRID */
.grid-dif {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 colunas iguais */
  gap: 20px 40px; /* espaço vertical e horizontal */
  max-width: 800px;
  margin: 0 auto; /* centraliza */
}

.grid-dif div {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .grid-dif {
    grid-template-columns: 1fr;
  }
}

.btn {
  background: #fff;
  color: #000;
  border-radius: 30px;
  padding: 14px 30px;
  font-weight: bold;
  transition: 0.3s;
  border: none;
}

.btn:hover {
  transform: scale(1.07);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#sobre,
#servicos,
#elogios,
.diferenciais {
  padding: 100px 20px;
}

h2 {
  font-size: 30px;
  letter-spacing: 1.5px;
  text-align: center;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #d4af37;
  margin: 10px auto 0;
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.grid-elogios img {
  transition: 0.3s ease;
}

.grid-elogios img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.grid-elogios img {
  border: 2px solid transparent;
}

.grid-elogios img:hover {
  border-color: #d4af37;
}

/* CONTAINER */
.feedback-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD BASE */
.feedback-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent; /* importante */
}

/* HOVER PREMIUM */
.feedback-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: #d4af37; /* dourado aparece */
}

/* TEXTO */
.feedback-card .texto {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* NOME */
.feedback-card h4 {
  color: #d4af37;
  font-weight: 600;
}

/* ASPAS (DETALHE PREMIUM) */
.feedback-card::before {
  content: "“";
  font-size: 40px;
  color: #d4af37;
  position: absolute;
  top: 10px;
  left: 15px;
}

/* CONTAINER */
.contato-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* BOX */
.contato-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  border: 2px solid transparent;
}

/* ÍCONE */
.contato-box i {
  font-size: 30px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* TEXTO */
.contato-box p {
  font-size: 14px;
  color: #333;
}

/* HOVER PREMIUM */
.contato-box:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contato-box p {
  font-size: 14px;
  color: #333;
  word-break: break-word; /* quebra o texto */
}

.icons-container i {
  transition: 0.3s;
}

.icons-container i:hover {
  transform: scale(1.2);
  color: #d4af37;
}

.contato-box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contato-box {
  text-decoration: none;
  color: inherit;
}

.contato-box {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {

  .nav a {
    font-size: 22px;
    padding: 10px 0;
  }

}

@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  .btn {
    padding: 14px 25px;
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  .grid-dif {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}

@media (max-width: 768px) {

  .feedback-card {
    width: 90%;
  }

}