/* ================= VARIÁVEIS ================= */
:root {
  --amarelo-principal: #f2c94c;
  --amarelo-claro: #ffe27a;
  --amarelo-escuro: #d4a017;

  --branco: #ffffff;
  --cinza-claro: #cfcfcf;

  --preto: #0d0d0d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--preto);
  font-family: "Poppins", sans-serif;
  color: var(--branco);
}
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

h2 {
  font-size: 2.3rem;

  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );
  background-clip: text; /* padrão */
  -webkit-background-clip: text; /* Chrome / Safari */
  -webkit-text-fill-color: transparent;
}
/* ================= NOTIFICAÇÃO SOCIAL ================= */
.notificacao-orcamento {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;

  background: linear-gradient(135deg, #f2c94c, #d4a017);

  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999; /* MUITO acima do header */
  transform: translateY(-100%);
  transition: transform 0.4s ease;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.notificacao-orcamento.ativo {
  transform: translateY(0);
}

.area-atendimento {
  font-size: 0.9rem;
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(242, 201, 76, 0.25);

  background: linear-gradient(
    135deg,
    rgba(242, 201, 76, 0.12),
    rgba(0, 0, 0, 0.6)
  );

  color: #fff;
  letter-spacing: 0.5px;
}

/* ================= HEADER ================= */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  border-bottom: 1px solid rgba(242, 201, 76, 0.25);
  z-index: 990;
}
header nav {
  display: flex;
  align-items: center;
}
.logo img {
  max-width: 120px;
}

.menu {
  display: flex;
  gap: 25px;
}

.link-dourado {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;

  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  transition: all 0.3s ease;
}

.link-dourado:hover {
  text-shadow: 0 0 8px rgba(242, 201, 76, 0.6);
}

.link-dourado.destaque {
  font-weight: 700;
}
/* ================= HEADER BASE ================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 50px;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(242, 201, 76, 0.25);
}

.logo img {
  max-width: 120px;
}

/* ================= MENU DESKTOP ================= */
.menu {
  display: flex;
  gap: 25px;
}

/* ================= BOTÃO HAMBURGUER ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--amarelo-principal);
  transition: 0.3s;
}

/* ================= OVERLAY ================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 900;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;

    background: #0d0d0d;
    flex-direction: column;
    align-items: flex-end;
    padding: 100px 30px;
    gap: 30px;

    transition: right 0.4s ease;
    z-index: 1000;
  }

  .menu a {
    font-size: 1rem;
  }

  /* MENU ABERTO */
  .menu.active {
    right: 0;
  }

  .menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ================= HERO ================= */
.atendimento-local {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid #d4a017;
  border-right: 4px solid #ffe27a;
  color: #f1f1f1;
  font-size: 14px;
  border-radius: 6px;
  max-width: fit-content;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 0 50px;

  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.95)
    ),
    url("./assets/images/banner.png") center/cover no-repeat;
}

.hero-content {
  max-width: 700px;
}
.hero-content h1 {
  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );
  background-clip: text; /* padrão */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 3.2rem;
}
/* ================= TÍTULO DOURADO ================= */
.titulo-dourado {
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;

  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  text-shadow: 1px 1px 0 #b38a00, 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.titulo-dourado-animado {
  background-size: 300% 300%;
  animation: goldMove 6s ease infinite;
}

/* ================= TEXTO HERO ================= */
.hero-subtitle {
  margin: 20px 0 35px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cinza-claro);
}

/* ================= BOTÕES ================= */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-dourado {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: #000;

  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );

  box-shadow: 0 8px 20px rgba(242, 201, 76, 0.35);
  transition: all 0.3s ease;
}

.btn-dourado:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(242, 201, 76, 0.6);
}

.btn-outline {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  color: var(--amarelo-principal);
  border: 1px solid var(--amarelo-principal);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(242, 201, 76, 0.1);
}

/* ================= ANIMAÇÃO ================= */
@keyframes goldMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ================= CONTATO ================= */
.contato {
  padding: 100px 50px;
  background: linear-gradient(to bottom, #0d0d0d, #111);
  display: flex;
  justify-content: center;
}

.contato-box {
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(242, 201, 76, 0.25);
  backdrop-filter: blur(6px);
}

.contato-box h2 {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 30px;
  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );
  background-clip: text; /* padrão */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.campo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.campo label {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--amarelo-principal);
}

.campo input,
.campo textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.95rem;
}

.campo input::placeholder,
.campo textarea::placeholder {
  color: #aaa;
}

.campo input:focus,
.campo textarea:focus {
  outline: none;
  border-color: var(--amarelo-principal);
}

button.btn-dourado {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}
.campo select {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.campo input.error,
.campo textarea.error,
.campo select.error {
  border-color: #ff4d4d;
}

.feedback {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--amarelo-principal);
}

.container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.servicos {
  padding: 100px 50px;
}

.container-servicos {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  justify-content: center;
}
.container-servicos .btn-dourado {
  max-width: fit-content;
  margin: 0 auto;
}

.servicos-header {
  text-align: center;
  margin-bottom: 60px;
}
.servicos-header h2 {
  text-transform: uppercase;
  font-size: 2.6rem;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffe27a, #f2c94c, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* padrão */
}
.servicos-header p {
  color: var(--cinza-medio);
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 1.1rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.servico-card {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid rgba(242, 201, 76, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.1)
  );
  z-index: 1;
}

.servico-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border-color: var(--Amarelo-principal);
}
.servico-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 1;
}
.servico-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px 30px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;

  color: #fff;
}

.servico-card.destaque {
  border: 2px solid var(--Amarelo-principal);
}

.servico-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.texto-secao {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cfcfcf;
}
.texto-secao strong {
  color: var(--amarelo-principal);
}
.servico-card h3 {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffe27a, #f2c94c, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* padrão */
}

.servico-card p {
  color: var(--cinza-profundo);
  font-size: 1rem;
  margin-bottom: 20px;
}

.servico-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.servico-card ul li {
  color: var(--branco-principal);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* BOTÃO */
.btn-servico {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe27a, #f2c94c, #d4a017);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-servico:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(242, 201, 76, 0.5);
}

.servicos-ofertados {
  padding: 100px 50px;
}

.servicos-ofertados .container {
  max-width: 1200px;
  margin: auto;
  flex-direction: column;
}

.servicos-descricao {
  max-width: 800px;
  margin: 25px auto 60px;
  text-align: center;
  color: #cfcfcf;
  line-height: 1.6;
}

.ofertas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD */
.servicos-card {
  position: relative;
  min-height: 320px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid rgba(242, 201, 76, 0.35);
}

.servico-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.15)
  );
  z-index: 1;
}

.servico-content {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 25px;
}

.servico-content h3 {
  color: var(--amarelo-principal);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.servico-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #eee;
}

/* HOVER */
.oferta-card:hover {
  transform: translateY(-6px);
  transition: 0.4s ease;
}

.galeria {
  padding: 100px 0;
}
.galeria .container {
  display: flex;
  flex-direction: column;
}

.galeria h2,
.servicos-ofertados h2 {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );
  background-clip: text; /* padrão */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.galeria-sub {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--cinza-claro);
}

.galeria-carousel {
  overflow-x: auto;
  cursor: grab;
}

.galeria-carousel::-webkit-scrollbar {
  height: 8px;
}

.galeria-carousel::-webkit-scrollbar-thumb {
  background: #f2c94c;
  border-radius: 10px;
}

.galeria-track {
  display: flex;
  gap: 30px;
  padding-bottom: 10px;
}

.galeria-track img {
  width: 420px;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.galeria-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(242, 201, 76, 0.4);
}

/* ================= OFERTA ================= */
.oferta {
  padding: 100px 50px;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.95)
    ),
    url("./assets/images/oferta-bg.jpg") center/cover no-repeat;
}

.oferta-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.oferta-texto {
  color: #fff;
}

.oferta-tag {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal)
  );

  color: #000;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.oferta-titulo {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.oferta-titulo strong {
  background: linear-gradient(135deg, #fff1a8, #f2c94c, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* padrão */
}

.oferta-descricao {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cinza-claro);
  margin-bottom: 35px;
}

.oferta-btn {
  font-size: 1rem;
  padding: 16px 34px;
}

/* ================= DESTAQUE DESCONTO ================= */
.oferta-destaque {
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(242, 201, 76, 0.35);
  backdrop-filter: blur(10px);
}

.oferta-destaque .desconto {
  font-size: 3.5rem;
  font-weight: 900;

  background: linear-gradient(135deg, #fff1a8, #f2c94c, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* padrão */
}

.oferta-destaque small {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  color: var(--cinza-claro);
}
/* ================= AVALIAÇÕES ================= */
.avaliacoes {
  padding: 100px 50px;
  background: #0d0d0d;
}

.avaliacoes-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.avaliacoes-subtitle {
  margin: 15px auto 50px;
  max-width: 700px;
  color: #cfcfcf;
  font-size: 1.05rem;
}

/* GRID */
.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.avaliacao-card {
  background: #111;
  border-radius: 14px;
  padding: 25px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.avaliacao-card:hover {
  transform: translateY(-4px);
}

/* TOPO */
.avaliacao-topo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avaliacao-topo strong {
  font-size: 0.95rem;
}

.avaliacao-topo span {
  display: block;
  font-size: 0.75rem;
  color: #aaa;
}

/* ESTRELAS */
.estrelas {
  color: var(--amarelo-principal);
  font-size: 1.1rem;
  margin: 8px 0 12px;
}

/* TEXTO */
.avaliacao-texto {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 30px;
  border-radius: 50px;

  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;

  color: #fff;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);

  border: 1px solid rgba(242, 201, 76, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);

  transition: all 0.3s ease;
}

.btn-google-reviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(242, 201, 76, 0.4);
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}
.google-icon {
  width: 20px;
  height: 20px;
}
.diferenciais {
  padding: 100px 50px;
  background: linear-gradient(to bottom, #0d0d0d, #111);
}

.diferenciais .container {
  max-width: 1200px;
  margin: auto;
  flex-direction: column;
}
.diferenciais .container h2 {
  text-align: center;
}
.diferenciais-texto {
  max-width: 700px;
  margin: 20px auto 60px;
  text-align: center;
  color: #cfcfcf;
  line-height: 1.6;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.diferencial-card {
  padding: 30px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(242, 201, 76, 0.25);
  transition: all 0.3s ease;
}

.diferencial-card h3 {
  color: var(--amarelo-principal);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.diferencial-card p {
  color: #cfcfcf;
  font-size: 0.95rem;
}

.diferencial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(242, 201, 76, 0.15);
}
/* ================= FAQ ================= */
.faq {
  padding: 80px 20px;
  background: #0b0b0b;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  flex-direction: column;
}

.faq .titulo-gradiente {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
}

.faq-pergunta {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 18px 20px;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-pergunta:hover {
  background: rgba(242, 201, 76, 0.08);
}

.faq-pergunta .icon {
  font-size: 1.5rem;
  color: var(--amarelo-principal);
  transition: transform 0.3s ease;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-item.active .faq-resposta {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-resposta p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

/* ================= CONTATO FINAL ================= */
.contato-final {
  padding: 100px 50px;
  background: linear-gradient(to bottom, #0d0d0d, #111);
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.95)
    ),
    url("./assets/images/banner.png") center/cover no-repeat;
}

.contato-final .centro {
  text-align: center;
}

.contato-subtitulo {
  text-align: center;
  max-width: 720px;
  margin: 20px auto 60px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* GRID */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* MAPA */
.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  border: 1px solid rgba(242, 201, 76, 0.3);
}

/* FORM */
.contato-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(242, 201, 76, 0.3);
  border-radius: 18px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

/* ================= REDES SOCIAIS ================= */
.redes-sociais {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.rede {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(242, 201, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amarelo-principal);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.rede span {
  position: absolute;
  left: 65px;
  white-space: nowrap;
  background: #111;
  border: 1px solid rgba(242, 201, 76, 0.4);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1;
}

.rede:hover {
  background: var(--amarelo-principal);
  color: #000;
}

.rede:hover span {
  opacity: 1;
  transform: translateX(0);
}
/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(to bottom, #0b0b0b, #000);
  padding: 80px 50px 20px;
  border-top: 1px solid rgba(242, 201, 76, 0.25);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );
  background-clip: text; /* padrão */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfcfcf;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #cfcfcf;
  font-size: 0.95rem;
}

.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--amarelo-principal);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #9e9e9e;
}
.footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(242, 201, 76, 0.25);
  padding-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: var(--amarelo-principal);
  font-size: 1.1rem;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--amarelo-principal);
}

/* BOTÃO WHATS */
.btn-footer-whats {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
  background: linear-gradient(
    135deg,
    var(--amarelo-claro),
    var(--amarelo-principal),
    var(--amarelo-escuro)
  );
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-footer-whats:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 201, 76, 0.4);
}

/* RODAPÉ FINAL */
.footer-bottom {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #aaa;
}

.footer-politicas {
  margin-top: 10px;
}

.footer-politicas a {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: none;
  margin: 0 5px;
}

.footer-politicas a:hover {
  color: var(--amarelo-principal);
}
@media screen and (max-width: 1020px) {
  .logo img {
    max-width: 68px;
  }
  .header nav .btn-dourado {
    text-transform: uppercase;
    text-align: left;
  }
  .hero {
    padding: 15px;
  }
  h1,
  h2,
  h3 {
    line-height: 1;
    text-transform: uppercase;
  }
  .hero .container {
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 120px;
  }
  .hero .container h1 {
    font-size: 2.4rem;
  }
  .servicos {
    padding: 15px;
  }
  .servicos .container-servicos {
    padding: 0;
  }
  .servicos-ofertados {
    padding: 15px;
  }
  .servicos-ofertados .container {
    padding: 0;
  }
  .galeria {
    padding: 15px;
  }
  .galeria .container {
    padding: 0;
  }
  .oferta {
    padding: 15px;
  }
  .oferta-container {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .avaliacoes {
    padding: 15px;
  }
  .avaliacoes-container {
    padding: 0;
    flex-direction: column;
    gap: 1.3rem;
    display: flex;
  }
  .diferenciais {
    padding: 15px;
  }
  .diferenciais .container {
    padding: 0;
  }
  .contato-final {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contato-grid {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .footer {
    padding: 15px;
  }
  .footer-container {
    padding: 0;
  }
}
#social-proof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(
    90deg,
    #e6e9eb 0%,
    #c5c8cc 20%,
    #a7aaae 40%,
    #7d8084 60%,
    #c5c8cc 80%,
    #e6e9eb 100%
  );
  color: #222;
  padding: 14px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 15px;
  font-weight: 500;
  max-width: fit-content;
  display: none;
  z-index: 9999;
  animation: slideIn 0.5s ease;
}

#social-proof strong {
  color: #0a7cff;
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
