/* ==============================
   RESET E CONFIGURAÇÕES GERAIS
============================== */
body {
  font-family: 'Poppins', sans-serif;
}
h1,
h2,
h3,
nav a {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: black;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================
   CABEÇALHO
============================== */
header {
  font-family: 'Oswald', serif;
  background: #000;
  color: #d4af37;
  box-shadow: 0 4px 0 #d4af37;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  overflow: visible;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  padding: 0 20px;
}

/* Logo — regra única e unificada */
.logo {
  height: 100px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 101;
  transition: transform 0.5s;
}

.logo:hover {
  transform: translateY(-50%) scale(1.1);
}

nav {
  margin-left: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: whitesmoke;
}

/* ==============================
   BANNER PRINCIPAL
============================== */
.banner {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
}

.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 6s ease;
}

.banner-slide.active{
  opacity: 1;
  transform: scale(1.08);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35)
  );
}

.banner-conteudo {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
}

.banner-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.texto-curvado {
  position: absolute;
  bottom: -95px;
  width: 680px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.texto-curvado text {
  font-size: 42px;
  font-weight: 700;
  fill: #d4af37;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.banner-linha {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.banner-texto {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  color: #000;
}

.banner p {
  font-size: 2rem;
  margin-bottom: 20px;
}

.banner-btn {
  position: static;
  white-space: nowrap;
  padding: 16px 34px;
  border-radius: 10px;
  background: #d4af37;
  color: #1a1a1a;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn {
  background-color: #d4af37;
  color: #ffffff;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #b8941f;
}

/* ==============================
   SERVIÇOS
============================== */
.servicos {
  padding: 90px 0;
  background-color: #f7f7f7;
}

.servicos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.servicos h2 {
  text-align: center;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 46px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  position: relative;
}

.servicos h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 999px;
  margin: 12px auto 0;
  opacity: 0.95;
}

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

/* Card de serviço — bloco único e unificado */
.servico-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 14px 40px rgba(0, 0, 0, 0.10);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
    border-color: 0.22s ease;
  display: flex;
  flex-direction: column;
}

/* Hover — transforms combinados em uma linha */
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  border-color: rgba(212, 175, 55, 0.35);
}

.servico-card .img-wrapper {
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.servico-card .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: contrast(1.02) saturate(1.02);
}

.servico-card:hover .img-wrapper img {
  transform: scale(1.06);
}

.servico-card:hover img {
  transform: scale(1.06);
}

.card-content {
  padding: 20px 20px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content p {
  flex: 1;
  margin: 0 0 16px 0;
}

.card-content h3 {
  font-size: 1.22rem;
  margin: 0 0 12px 0;
  color: #222;
  letter-spacing: 0.2px;
}

.card-content h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 999px;
  margin: 5px auto 0;
  opacity: 0.95;
}

.servico-card h3 {
  font-size: 1.22rem;
  margin: 0;
  color: #222;
  letter-spacing: 0.2px;
}

.servico-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.preco {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 16px;
  align-self: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 12px 16px;
  border-radius: 999px;
}

.preco::before {
  content: "★";
  color: #d4af37;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.preco .rs{
  font-size: 0.9rem;
  margin-top: 6px;
}

.preco .valor{
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.preco .centavos{
  font-size: 0.9rem;
  margin-top: 4px;
}

.preco .mes{
  font-size: 0.9rem;
  align-self: flex-end;
  margin-left: 6px;
}

.btn-servico {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;
  background: #111;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;

  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn-servico::after {
  content: "→";
  color: #d4af37;
  font-weight: 900;
  transition: transform 0.18s ease;
}

.btn-servico:hover {
  background: #d4af37;
  color: #111;
  transform: translateY(-1px);
}

.btn-servico:hover::after {
  color: #111;
  transform: translateX(2px);
}


.precos{
  margin-top:50px;
}

.precos-titulo{
  text-align:center;
  font-size:1.8rem;
  margin-bottom:30px;
}

/* TABELA DE PREÇOS */
.precos{
  margin-top: 60px;
  width: 100%;
}

.precos-titulo {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.precos-titulo::after {
content: '';
display: block;
width: 50px;
height: 3px;
background-color: #d4af37;
margin: 8px auto 30px;
border-radius: 2px;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.preco-item {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: transform 0.18s ease,
  box-shadow 0.18s ease
  border-color 0.18s ease;
}

.preco-item:hover {
  font-weight: 700;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.2;
}

.preco-item strong {
  color: #d4af37;
  font-weight: 900;
  font-size: 1rem;
  white-space: nowrap;
}

/* ==============================
   SOBRE
============================== */
.sobre {
  padding: 100px 0;
  background: #fff;
}

.sobre h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-align: center;
  color: #111;
}
.sobre h2::after {
  content: "";
  display: block;
  width: 86px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 999px;
  margin: 12px auto 0;
  opacity: 0.95;
}

.sobre-conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.sobre-texto p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.1rem;
}

.sobre-texto strong {
  color: #d4af37;
}

.sobre-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* ==============================
   EQUIPE — ALINHAMENTO HORIZONTAL
============================== */
.equipe h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
  color: #111;
}

.equipe-simples {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}

.membro {
  text-align: center;
  width: 220px;
  transition: 0.3s;
}

.membro:hover {
  transform: translateY(-8px);
}

.membro img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #d4af37;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.membro:hover img {
  transform: scale(1.05);
}

.membro h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #111;
}

.membro span {
  font-size: 0.95rem;
  color: #777;
}

/* ==============================
   GALERIA
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #f7f7f7;
  font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ── SECTION ─────────────────────────────── */
.galeria {
  padding: 80px 0;
  background-color: #f7f7f7;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TÍTULO ──────────────────────────────── */
.galeria h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #111;
  font-weight: 800;
  letter-spacing: -1px;
}
.galeria h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 999px;
  margin: 5px auto 0;
  opacity: 0.95;
}

/* ── CARROSSEL ───────────────────────────── */
.carrossel-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.carrossel-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  position: relative;
}

.carrossel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── SLIDE ───────────────────────────────── */
.carrossel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16 / 7;
  background-color: #111;
  overflow: hidden;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.carrossel-slide.ativo img {
  transform: scale(1);
}

/* ── OVERLAY ─────────────────────────────── */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.58) 100%),
    linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}

/* ── CONTEÚDO CENTRAL ────────────────────── */
.slide-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #d4af37;
}

.brand-sub {
  margin: 0;
  letter-spacing: 0.38em;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
}

.carrossel-slide.ativo .brand-sub {
  opacity: 0.9;
  transform: translateY(0);
}

/* ── LABEL ───────────────────────────────── */
.slide-label {
  position: absolute;
  bottom: 26px;
  left: 30px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

.carrossel-slide.ativo .slide-label {
  opacity: 1;
  transform: translateY(0);
}

.slide-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #d4af37;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

/* ── CONTADOR ────────────────────────────── */
.slide-counter {
  position: absolute;
  bottom: 30px;
  right: 28px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.carrossel-slide.ativo .slide-counter {
  opacity: 1;
}

/* ── PROGRESS BAR ────────────────────────── */
.carrossel-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2.5px;
  background: rgba(255,255,255,0.08);
  z-index: 6;
  pointer-events: none;
}
.carrossel-progress-bar {
  height: 100%;
  background: #d4af37;
  width: 0%;
}

/* ── BOTÕES ──────────────────────────────── */
.carrossel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.carrossel-btn:hover {
  background: #111;
  color: #d4af37;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}
.carrossel-btn:active {
  transform: translateY(-50%) scale(0.97);
}
.carrossel-btn.prev { left: 18px; }
.carrossel-btn.next { right: 18px; }

/* ── INDICADORES ─────────────────────────── */
.carrossel-indicadores {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.indicador {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease, transform 0.18s ease;
}
.indicador:hover { transform: scale(1.2); }
.indicador.ativo {
  background: #111;
  width: 32px;
}

/* ── SUBTÍTULO ───────────────────────────── */
.galeria-subtitle {
  margin-top: 28px;
  font-size: 0.8rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── CURSOR POINTER NO SLIDE ─────────────── */
.carrossel-slide {
  cursor: zoom-in;
}

/* ── ÍCONE DE EXPANDIR ───────────────────── */
.slide-expand-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 5;
  pointer-events: none;
}
.carrossel-slide.ativo:hover .slide-expand-icon {
  opacity: 1;
  transform: scale(1);
}
.carrossel-slide.ativo:hover .slide-expand-icon:hover {
  background: rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

/* ── LIGHTBOX ────────────────────────────── */
.lightbox {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.lightbox.aberto {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  max-width: min(92vw, 1100px);
  width: 100%;
}

/* imagem */
.lightbox-img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}
.lightbox.aberto .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

/* rodapé com nome do serviço */
.lightbox-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 0 4px;
}
.lightbox-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.lightbox-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #d4af37;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}
.lightbox-hint {
  margin-left: auto;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* botão fechar */
.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.lightbox-close:hover { color: #fff; }

/* botões prev / next */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lightbox-nav:hover {
  background: #d4af37;
  color: #111;
  border-color: #d4af37;
}
.lightbox-nav.lb-prev { left: -68px; }
.lightbox-nav.lb-next { right: -68px; }

@media (max-width: 700px) {
  .lightbox-nav.lb-prev { left: -8px; }
  .lightbox-nav.lb-next { right: -8px; }
  .lightbox-close { top: -40px; }
}
/* ==============================
   CONTATO
============================== */
.contato {
  padding: 80px 0;
  background: #f7f7f7;
}

.contato h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #111;
}

.contato h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d4af37;
  border-radius: 999px;
  margin: 5px auto 0;
  opacity: 0.95;
}

.contato-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 36px;
  font-size: 1.05rem;
}

.contato-minimal {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.contato-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  background: #0f0f0f;
  color: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contato-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.contato-item.destaque {
  border: 1px solid rgba(212, 175, 55, 0.38);
}

.contato-texto h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: #d4af37;
}

.contato-texto p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contato-texto p + p {
  margin-top: 6px;
}

.contato-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 700;
}

.contato-link:hover {
  text-decoration: underline;
}

.ico {
  width: 22px;
  height: 22px;
  stroke: #d4af37;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contato-icone .ico {
  width: 26px;
  height: 26px;
}

.ico-link {
  width: 18px;
  height: 18px;
  stroke: rgba(212, 175, 55, 0.95);
}

.btn-whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #d4af37;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-whats:hover {
  background: #b8941f;
}

/* ==============================
   AGENDAMENTO (MAPA + FORM)
============================== */
.agendamento-section {
  padding: 60px 0;
  background: #f7f7f7;
}

.contato-painel {
  display: grid;
  gap: 16px;
}

.mapa {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}

.mapa iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-card h3 {
  margin: 0 0 6px;
  color: #555;
  text-align: center;
}

.form-card p {
  text-align: center;
  margin-bottom: 10px;
}

.contato-form label {
  display: block;
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  outline: none;
  font-family: inherit;
  padding: 10px 12px;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.form-linha {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.btn-form {
  width: 100%;
  margin-top: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.form-hint {
  display: block;
  margin-top: 10px;
  color: #666;
  font-size: 0.85rem;
}
/* ==============================
   RODAPÉ
============================== */
footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 5px 0;
}

/* ==============================
   RESPONSIVO — Mobile e Tablet
============================== */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 10px 0;
  }

  header .container {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .logo {
    position: static;
    height: 70px;
    transform: none;
  }

  .logo:hover {
    transform: scale(1.1);
  }

  nav {
    margin-left: 0;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .card-content {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .sobre-conteudo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-img {
    order: -1;
  }

  /* Equipe empilha no tablet/celular */
  .equipe-simples {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contato-item {
    grid-template-columns: 38px 1fr;
    padding: 16px;
  }
  .contato-icone .ico {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce){
  .banner-slide { transition: none; }
  .banner-slide.active{ transform: none; }
  
}


/*============================
   AVALIAÇÕES GOOGLE
============================== */
.avaliacoes {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.avaliacoes h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.avaliacoes-subtitle {
  color: #555;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.avaliacoes-subtitle strong {
  color: #d4af37;
}

.avaliacoes-widget {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  background: #fafafa;
  padding: 18px;
}

/* se o widget vier em iframe, isso ajuda bastante */
.avaliacoes-widget iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.btn-avaliacoes {
  display: inline-block;
  margin-top: 22px;
}
