/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-dark:      #050505;
  --bg-darker:    #000000;
  --bg-card-dark: #111111;
  --bg-cream:     #faf7f2;
  --bg-cream-alt: #f5efe6;
  --bg-white:     #ffffff;

  /* Brand gradient — coração visual da marca */
  --grad:     linear-gradient(135deg, #e8197c, #f97316, #d4a017);
  --grad-90:  linear-gradient(90deg,  #e8197c, #f97316, #d4a017);
  --grad-180: linear-gradient(180deg, #e8197c, #f97316, #d4a017);

  /* Brand colors */
  --gold:       #d4a017;
  --gold-hover: #e6b52a;
  --pink:       #e8197c;
  --orange:     #f97316;

  /* Text */
  --text-light: #ffffff;
  --text-muted: #c8b89a;
  --text-dark:  #1a1a1a;
  --text-mid:   #5a4a35;
  --text-body:  #1a1a1a;

  /* Borders */
  --border-gold:       rgba(212,160,23,0.2);
  --border-gold-hover: rgba(212,160,23,0.6);
  --border-cream:      #e5d9c8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   12px;
  --radius-md:   16px;
  --radius-lg:   20px;
  --radius-pill: 50px;

  --shadow-card:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.13);
  --shadow-glow:       0 0 60px rgba(212,160,23,0.06), 0 4px 24px rgba(0,0,0,0.4);
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

[data-reveal] {
  opacity: 0;
  transition: none;
}
[data-reveal].is-visible {
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-duration: 0.75s;
  animation-delay: var(--reveal-delay, 0s);
}
[data-reveal="up"].is-visible        { animation-name: fadeUp; }
[data-reveal="fade"].is-visible      { animation-name: fadeIn; }
[data-reveal="left"].is-visible      { animation-name: fadeLeft; }
[data-reveal="right"].is-visible     { animation-name: fadeRight; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; animation: none !important; }
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-body);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
hr { border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY GLOBALS
   ============================================================ */
.label-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.label-eyebrow--gold { color: var(--gold); }

.section-h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-h2--light { color: #ffffff; }

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 60px;
}

.text-center .section-subtitle { margin-inline: auto; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  min-height: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn:active { transform: scale(0.97); }

/* Primary — brand gradient */
.btn--gold {
  background: var(--grad);
  color: #ffffff;
  border: none;
  font-weight: 700;
}
.btn--gold:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.02);
}

/* Outline gold */
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: #000000;
}

/* WhatsApp — green gradient with glow */
.btn--whatsapp {
  background: linear-gradient(to bottom, #57f097 0%, #25D366 35%, #128C7E 75%, #075E54 100%);
  color: #ffffff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
}
.btn--whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(37,211,102,0.6), 0 0 0 4px rgba(37,211,102,0.15);
}

/* Botão dourado sólido — serviços */
.btn--gold-solid {
  background: #bc8e44;
  color: #000000;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(188,142,68,0.35);
}
.btn--gold-solid:hover {
  background: #cfa050;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(188,142,68,0.5);
}

/* Outline light (hero secondary) */
.btn--outline-light {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline-light:hover {
  background: var(--gold);
  color: #000000;
}

.btn--sm { padding: 10px 22px; font-size: 14px; min-height: 40px; }
.btn--lg { padding: 18px 40px; font-size: 17px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000000;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 61px;
  width: auto;
  display: block;
}

/* fallback (unused when logo image is present) */
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav__link:hover { color: #ffffff; }
.nav__link:hover::after { width: 100%; }

.nav__link:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 4px;
  border-radius: 3px;
}

.nav__link--cta {
  background:
    linear-gradient(135deg, #a07010 0%, #c8920e 40%, #d4a017 70%, #e8b820 100%) padding-box,
    linear-gradient(315deg, #a07010 0%, #c8920e 40%, #d4a017 70%, #e8b820 100%) border-box;
  border: 2px solid transparent;
  color: #1a0e00 !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(212,160,23,0.35);
  letter-spacing: 0.04em;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  filter: brightness(1.1);
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(212,160,23,0.55);
  color: #1a0e00 !important;
}

.nav__cta-mobile { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  background: url('banner site.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: 10px calc(25% - 15px) 120px 24px;
  text-align: left;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 598px;
  width: 53%;
  transform: scale(1.0);
  transform-origin: top left;
  margin-top: 100px;
}

.hero__logo {
  height: 264px;
  width: auto;
  display: block;
  margin-left: -20px;
  margin-top: -66px;
  margin-bottom: -54px;
}

/* badge with gradient border */
.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  border-radius: var(--radius-pill);
  padding: 6px 20px;
  margin-bottom: 24px;
  border: 1px solid transparent;
  background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), var(--grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

/* gradient text on the italic line */
.hero__title em {
  font-style: italic;
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 17px;
  color: #c8b89a;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 0 48px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}

.hero__scroll {
  display: none;
}

.hero__scroll:hover { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SEÇÃO ESTATÍSTICAS — s-stats
   ============================================================ */
.s-stats {
  background: #bc8e44;
  padding: 72px 32px;
  display: flex;
  justify-content: center;
}

.stats-inner {
  width: 78%;
  max-width: 920px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
  letter-spacing: -1px;
}

.stat-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-sep {
  width: 48px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
  margin: 0 auto 0;
}

.stat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 130px;
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   SEÇÃO DÚVIDA / PROBLEMA — s-duvida
   ============================================================ */
.s-duvida {
  background: #faf7f2;
  padding: 100px 24px;
}

.duvida-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.duvida-img-col {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.2);
}

.duvida-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.duvida-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: #d4a017;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.duvida-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.duvida-para {
  font-size: 16px;
  color: #5a4a35;
  line-height: 1.85;
  margin-bottom: 14px;
}

.duvida-gancho {
  font-size: 16px;
  color: #3d2e1a;
  font-weight: 600;
  margin-bottom: 20px;
}

.q-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 3px solid #d4a017;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.q-aspas {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #d4a017;
  line-height: 1;
  flex-shrink: 0;
}

.q-texto {
  font-size: 15px;
  color: #3d2e1a;
  line-height: 1.6;
}

.conclusao-box {
  background: #050505;
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 14px;
  padding: 32px 28px;
  margin-top: 24px;
  text-align: center;
}

.conclusao-box .linha-1 {
  font-size: 15px;
  color: #f0e8d8;
  line-height: 1.8;
  margin-bottom: 10px;
}

.conclusao-box .linha-2 {
  font-size: 15px;
  color: #d4a017;
  font-weight: 600;
  line-height: 1.8;
}

/* ============================================================
   SEÇÃO ESPECIALISTA
   ============================================================ */
.especialista {
  background: linear-gradient(160deg, #0a0a0a 0%, #050505 100%);
  padding: 100px 0;
}

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

/* gradient glowing border via background trick */
.especialista__foto {
  border-radius: 18px;
  background: var(--grad);
  padding: 3px;
  overflow: hidden;
}

.especialista__foto-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 15px;
}

.especialista__h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.especialista__conteudo p {
  font-size: 16px;
  color: #c8b89a;
  line-height: 1.9;
  margin-bottom: 16px;
}

.especialista__conteudo p strong { color: #ffffff; }

.especialista__conteudo .btn { margin-top: 8px; }

/* ============================================================
   SEÇÃO AUTORIDADE
   ============================================================ */
.autoridade {
  background-color: #f5efe6;
  padding: 100px 0;
}

.autoridade .section-h2 { text-align: center; }
.autoridade .section-subtitle { text-align: center; }

.autoridade__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* gradient top border via ::before */
.autoridade__card {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.autoridade__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-90);
}

.autoridade__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.autoridade__card svg { color: var(--gold); }

/* gradient text on the big number */
.autoridade__card-valor {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.autoridade__card-label {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   SEÇÃO SERVIÇOS FOCO
   ============================================================ */
.servicos-foco {
  background: linear-gradient(160deg, #050505 0%, #0a0a0a 100%);
  padding: 100px 0;
}

.foco__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.foco__card {
  background: linear-gradient(145deg, #111111, #0d0d0d);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-glow);
}

.foco__card:hover {
  border-color: rgba(232,25,124,0.5);
  box-shadow: 0 0 30px rgba(232,25,124,0.08), 0 4px 24px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* badge with brand gradient */
.foco__badge {
  display: inline-block;
  background: var(--grad);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.foco__icon { color: var(--gold); display: flex; align-items: center; line-height: 1; }
.foco__icon svg { display: block; }

.foco__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.foco__card-desc {
  font-size: 15px;
  color: #c8b89a;
  line-height: 1.8;
}

.foco__card-desc strong { color: #ffffff; }

.foco__card .btn { margin-top: auto; width: fit-content; }

/* Luzes card — photo header */
.foco__card-photo {
  margin: -40px -36px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 440px;
}
.foco__card-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Icon inline with title */
.foco__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.foco__title-row .foco__card-title { margin: 0; }

/* Carousel inside foco card photo area */
.foco__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.foco__carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.foco__carousel-img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.foco__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
  padding: 0;
}

.foco__carousel-btn:hover { background: rgba(0,0,0,0.72); }
.foco__carousel-btn--prev { left: 10px; }
.foco__carousel-btn--next { right: 10px; }

.foco__carousel-dots {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.foco__carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.foco__carousel-dot--active { background: #fff; }

/* Luzes card — centered button with custom color */
.foco__card--luzes .btn { align-self: center; }
.btn--luzes {
  background:
    linear-gradient(135deg, #a07010 0%, #c8920e 40%, #d4a017 70%, #e8b820 100%) padding-box,
    linear-gradient(315deg, #a07010 0%, #c8920e 40%, #d4a017 70%, #e8b820 100%) border-box !important;
  border: 2px solid transparent !important;
  color: #1a0e00 !important;
  box-shadow: 0 4px 16px rgba(212,160,23,0.35) !important;
}
.btn--luzes:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 28px rgba(212,160,23,0.55) !important;
  color: #1a0e00 !important;
}

/* ============================================================
   SEÇÃO CARDÁPIO (SERVIÇOS)
   ============================================================ */
.servicos {
  background-color: #faf7f2;
  padding: 100px 0;
}

.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch; /* todos os cards mesma altura na linha */
}

.servico__card {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.servico__card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

/* foto do serviço no topo */
.servico__foto {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0ebe3, #e8ddd0);
  position: relative;
  flex-shrink: 0;
}

.servico__foto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.servico__card:hover .servico__foto-img {
  transform: scale(1.04);
}

/* quando a imagem falha ao carregar, mostra placeholder estilizado */
.servico__foto--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5efe6 0%, #ede3d8 50%, #e4d5c4 100%);
}

.servico__foto--placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8b89a' fill-opacity='0.18'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

/* conteúdo abaixo da foto */
.servico__content {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1; /* ocupa todo espaço restante do card */
}

/* botão gold empurrado para o fundo do card */
.servico__content .btn--gold-solid {
  margin-top: auto;
  align-self: flex-start;
  font-size: 13px;
  padding: 12px 27px;
  min-height: 43px;
}

.servico__content .btn--whatsapp {
  margin-top: auto;
  padding-top: 10px;
  align-self: flex-start;
}

/* ícone + título em linha */
.servico__header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.servico__icon {
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
}

.servico__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.servico__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

.servicos__cta-texto {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 24px;
  max-width: 560px;
  margin-inline: auto;
}

/* ============================================================
   SEÇÃO DEPOIMENTOS
   ============================================================ */
.depoimentos {
  background: #ffffff;
  padding: 100px 0;
}

.depoimentos .section-h2--light {
  color: #111111;
}

.depoimentos__gmb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.depoimentos__gmb-stars {
  font-size: 48px;
  letter-spacing: 6px;
  color: #d4a017;
  line-height: 1;
}

.depoimentos__gmb-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.depoimentos__gmb-text {
  font-size: 14px;
  color: #444444;
}

.depoimentos__grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  transform: none !important;
}

.depoimento__card {
  background-color: #faf7f2;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.depoimento__card:hover {
  border-color: rgba(232,25,124,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.depoimento__stars {
  font-size: 16px;
  letter-spacing: 2px;
  color: #d4a017;
}

.depoimento__text {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: #1a1a1a;
  line-height: 1.8;
  flex-grow: 1;
}

.depoimento__sep {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.depoimento__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* gradient avatar */
.depoimento__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  flex-shrink: 0;
}

.depoimento__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  font-style: normal;
}

.depoimento__label {
  font-size: 12px;
  color: #555555;
  margin-top: 2px;
}

.depoimentos__rodape {
  text-align: center;
  font-size: 14px;
  color: #555555;
  margin-top: 48px;
  font-style: italic;
}

/* ============================================================
   SEÇÃO FAQ
   ============================================================ */
.faq {
  background-color: #faf7f2;
  padding: 100px 0;
}

.faq__container {
  max-width: 720px;
}

.faq .section-h2 { text-align: center; margin-bottom: 48px; }

.faq__lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.faq__item {
  background-color: #ffffff;
  border: 1px solid #e5d9c8;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item:has(.faq__btn[aria-expanded="true"]) {
  border-color: rgba(212,160,23,0.4);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: color 0.3s ease;
}

.faq__btn:hover { color: #000000; }
.faq__btn[aria-expanded="true"] { color: #000000; }

.faq__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
  width: 24px;
  text-align: center;
}

.faq__btn[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  color: #e8197c;
}

.faq__resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__resposta.open {
  max-height: 300px;
}

.faq__resposta p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq__resposta strong { color: #1a1a1a; }

.faq__encerramento {
  background: linear-gradient(145deg, #0a0a0a, #050505);
  border: 1px solid rgba(212,160,23,0.25);
  color: #f0e8d8;
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq__encerramento p {
  font-size: 17px;
  line-height: 1.75;
  color: #c8b89a;
  max-width: 480px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(160deg, #0a0a0a 0%, #050505 50%, #000000 100%);
  padding: 100px 0;
}

.cta-final__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-final__subtitulo {
  font-size: 17px;
  color: #c8b89a;
  line-height: 1.8;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.cta-final__acoes {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-final__info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-final__info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c8b89a;
}

.cta-final__info svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   MAPA
   ============================================================ */
.mapa-container {
  width: 100%;
  line-height: 0;
}

.mapa-link {
  display: block;
  position: relative;
  width: 100%;
  cursor: pointer;
}

.mapa-link iframe {
  display: block;
  width: 100%;
  height: 420px;
  pointer-events: none;
}

.mapa-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #000000;
  padding: 64px 0 32px;
  overflow: visible;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: -88px;
  align-items: start;
}

.footer__logo-img {
  height: 252px;
  width: auto;
  display: block;
  margin-top: 0;
  margin-bottom: -40px;
  margin-left: -28px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-top: -60px;
}

.footer__brand::after {
  display: none;
}

.footer__tagline {
  font-size: 13px;
  color: #c8b89a;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__horario-titulo {
  margin-top: 20px;
  margin-bottom: 4px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__col ul a {
  font-size: 14px;
  color: #c8b89a;
  transition: color 0.3s ease;
}

.footer__col ul a:hover { color: #ffffff; }

.footer__col ul a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__contato {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__tel {
  font-size: 15px;
  color: #c8b89a;
  transition: color 0.3s ease;
}

.footer__tel:hover { color: #ffffff; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: -14px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gold);
  color: #ffffff;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background-color: var(--gold-hover);
  transform: scale(1.1);
  color: #ffffff;
}

.footer__social a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.footer__dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 120px;
  margin-bottom: 8px;
}

.footer__dev-text {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.footer__dev-logo {
  height: 28px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.footer__dev a:hover .footer__dev-logo {
  opacity: 1;
}

.footer__divider {
  display: none;
}

.footer__copy {
  text-align: center;
  font-size: 13px;
  color: #5a5040;
}

/* ============================================================
   SEÇÃO ESPAÇO — CARROSSEL
   ============================================================ */
.s-espaco {
  background: var(--bg-cream);
  padding: 80px 0 64px;
}

.s-espaco .section-subtitle {
  margin-inline: auto;
  text-align: center;
}

.espaco-carousel {
  position: relative;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.espaco-carousel__track-wrap {
  overflow: hidden;
  width: calc(100% - 120px); /* deixa espaço para as setas */
  cursor: pointer;
}

.espaco-carousel__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.espaco-carousel__slide {
  flex: 0 0 calc(100% / 4);
  padding: 0 8px;
  box-sizing: border-box;
}

.espaco-carousel__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.espaco-carousel__img:hover {
  transform: scale(1.02);
  filter: brightness(0.88);
}

.espaco-carousel__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
  margin: 0 12px;
}

.espaco-carousel__arrow:hover {
  background: #bc8e44;
  transform: scale(1.08);
}

.espaco-carousel__dots {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.espaco-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.espaco-carousel__dot.active {
  background: #bc8e44;
  transform: scale(1.25);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFadeIn 0.2s ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox__img-wrap {
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 16px 64px rgba(0,0,0,0.6);
  animation: lbImgIn 0.22s ease;
}

@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10001;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox__arrow {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  margin: 0 16px;
}

.lightbox__arrow:hover {
  background: #bc8e44;
  transform: scale(1.08);
}

.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Carrossel espaço */
  .espaco-carousel__slide          { flex: 0 0 calc(100% / 2); }
  .espaco-carousel__img            { height: 220px; }
  .espaco-carousel__arrow          { width: 38px; height: 38px; margin: 0 6px; }
  .espaco-carousel__track-wrap     { width: calc(100% - 96px); }

  /* Lightbox */
  .lightbox__img-wrap { max-width: calc(100vw - 100px); }
  .lightbox__arrow    { width: 40px; height: 40px; margin: 0 6px; }

  /* Nav */
  .nav__menu {
    position: fixed;
    inset: 0;
    background-color: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav__menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: 0.06em;
  }

  .nav__link::after { display: none; }

  .nav__link--cta {
    font-size: 14px !important;
    padding: 12px 28px !important;
  }

  .nav__toggle { display: none; }
  .nav__menu { display: none !important; }
  .nav__cta-mobile { display: flex; font-size: 10px !important; padding: 8px 13px !important; }

  /* Hero */
  .hero {
    padding: 60px 20px 80px;
    justify-content: center;
    text-align: center;
    background-image: url('banner formato mobile2.webp');
    background-color: #000;
    background-position: center bottom;
    background-size: 100% auto;
    min-height: unset;
    height: auto;
    padding-bottom: 540px;
  }
  .hero__content { width: 100%; max-width: 100%; margin-top: 0; }
  .hero__logo { display: none; }
  .hero__title { font-size: 36px; }
  .hero__subtitle { margin: 0 auto 48px; }
  .hero__actions { flex-direction: column; align-items: stretch; justify-content: center; }
  .hero__actions .btn { width: 100%; }

  /* Estatísticas */
  .stats-grid { grid-template-columns: repeat(2, 1fr); height: 580px; }
  .stats-inner { width: 100%; }
  .stat-num { font-size: 28px; }
  .stat-card { height: 100%; padding: 24px 14px 20px; }

  /* Dúvida */
  .duvida-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .duvida-img-col { display: none; }
  .duvida-title { font-size: 28px; }

  /* Sections */
  .s-duvida,
  .especialista,
  .autoridade,
  .servicos-foco,
  .servicos,
  .depoimentos,
  .faq,
  .cta-final { padding: 64px 20px; }

  /* Section H2 */
  .section-h2 { font-size: 28px; }

  /* Especialista */
  .especialista__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Autoridade */
  .autoridade__grid { grid-template-columns: 1fr; }

  /* Foco */
  .foco__grid { grid-template-columns: 1fr; width: 105%; margin-left: -2.5%; }
  .foco__card-title { text-align: left; }
  .foco__title-row { justify-content: flex-start; }

  /* Serviços */
  .servicos__grid { grid-template-columns: 1fr; }
  .servico__content { text-align: center; align-items: center; }
  .servico__header { justify-content: center; }
  .servico__content .btn--gold-solid,
  .servico__content .btn--whatsapp { align-self: center; }

  /* Depoimentos carrossel */
  .dep-carousel-wrap { overflow: hidden; position: relative; }
  .depoimentos__grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 0;
    transition: transform 0.5s ease;
    will-change: transform;
    margin-top: 40px;
    transform: none;
  }
  .depoimento__card { flex: 0 0 100%; min-width: 0; }
  .dep-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
  .dep-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.2); transition: background 0.3s; }
  .dep-dot--active { background: #d4a017; }

  /* CTA Final */
  .cta-final__acoes { flex-direction: column; align-items: stretch; }
  .cta-final__acoes .btn { width: 100%; font-size: 14px; padding: 16px 20px; white-space: normal; text-align: center; line-height: 1.3; }
  .cta-final__info { display: none; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 16px; margin-top: -30px; margin-bottom: 0; }
  .footer__logo-img { height: 252px; margin: 0; margin-left: -24px; margin-bottom: -14px; display: block; }
  .footer__social { flex-direction: row; }
  .footer__contato { order: -1; align-items: flex-start; text-align: left; }
  .footer__col { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .footer__col ul { align-items: flex-start; display: flex; flex-direction: column; }
  .footer__col-title { text-align: left; }
  .footer__brand { text-align: left; align-items: flex-start; transform: none; display: flex; flex-direction: column; margin-top: -40px; gap: 0; }
  .footer__dev { margin-top: 0; }
  .footer { padding-bottom: 60px; }
  .footer__brand::after { display: none; }
  .footer__tagline { text-align: left; margin-bottom: 2px; }
  .footer__horario-titulo { text-align: left; margin-top: 8px; }
  .footer__horario-titulo ~ .footer__tagline { margin-bottom: 2px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero__title { font-size: 30px; }
  .strip__list { grid-template-columns: 1fr; }
  .strip__item { border-right: none !important; border-bottom: 1px solid #e0d4c0; padding-bottom: 24px; margin-bottom: 24px; }
  .strip__item:last-child { border-bottom: none; margin-bottom: 0; }

  /* Carrossel 1 coluna em mobile pequeno */
  .espaco-carousel__slide { flex: 0 0 100%; }
  .espaco-carousel__img   { height: 240px; }
}
