:root {
  --bg: #0e0e0f;
  --bg-2: #151515;
  --card: #1f1f1f;
  --text: #f7f3ec;
  --muted: #bdb7ad;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d9a441;
  --gold-2: #f2c46b;
  --dark: #111111;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.top-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #161616;
  font-size: 14px;
}
.top-strip__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 8px;
}
.top-strip__msg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}
.top-strip__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 999px;
  background: #161616;
  animation: topStripPulse 1.8s ease-in-out infinite;
}
@keyframes topStripPulse {
  0% { box-shadow: 0 0 0 0 rgba(22, 22, 22, 0.35); }
  70% { box-shadow: 0 0 0 7px rgba(22, 22, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 22, 22, 0); }
}
.top-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.top-strip__link:hover { background: #20bd5a; transform: translateY(-1px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 15, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.4px;
}
.brand__image {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(217, 164, 65, 0.35);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}
.nav-menu a:hover { color: var(--gold-2); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
  padding: 11px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.section-pad { padding: 92px 0; }
.section-dark { background: var(--bg-2); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(217, 164, 65, 0.22), transparent 32%),
    linear-gradient(180deg, #171717, #0e0e0f);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 45%;
  height: 420px;
  background: rgba(217, 164, 65, 0.08);
  filter: blur(90px);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 52px;
  align-items: center;
}
.pill, .eyebrow {
  display: inline-flex;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
}
.pill {
  border: 1px solid rgba(217, 164, 65, 0.34);
  background: rgba(217, 164, 65, 0.1);
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.8px;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  margin: 10px 0 14px;
}
h3 { line-height: 1.2; }
.hero__content p,
.lead,
.section-head p,
.cta-band p,
.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #161616; box-shadow: 0 18px 40px rgba(217, 164, 65, 0.22); }
.btn--ghost { border: 1px solid var(--line); color: var(--text); background: rgba(255, 255, 255, 0.04); }
.btn--dark { background: #111; color: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28); }
.btn--whatsapp:hover { background: #20bd5a; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero__stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.hero__stats strong { display: block; color: var(--gold-2); line-height: 1.1; margin-bottom: 6px; }
.hero__stats span { color: var(--muted); font-size: 13px; font-weight: 700; }

.hero__media {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
  background: #222;
}
.hero__media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.hero__media-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 18px;
}
.hero__media-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 900;
}
.hero__media-card p { margin: 0; font-weight: 800; }

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.gallery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}
.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 20px;
}
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}
.check-list li {
  color: var(--muted);
  padding-left: 30px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-2);
  font-weight: 900;
}

.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head--center { text-align: center; margin-inline: auto; }
.cards-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card, .review-card, .contact-panel, .contact-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}
.service-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(217, 164, 65, 0.13);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p, .review-card p { color: var(--muted); }

.region-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.region-tags span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.region-toggle { display: none; }
.stars { color: var(--gold-2); letter-spacing: 2px; margin-bottom: 14px; }
.review-card strong { display: block; margin-top: 18px; }

.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #161616;
  padding: 56px 0;
}
.cta-band .eyebrow { color: #5b3d08; }
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: rgba(0, 0, 0, 0.72); margin-bottom: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}
.contact-list b { display: block; margin-bottom: 4px; }
.contact-list span { color: var(--muted); }

.contact-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-cta__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.contact-cta h3 { font-size: 24px; margin-bottom: 6px; }
.contact-cta p { color: var(--muted); margin-bottom: 22px; }
.contact-cta .btn { width: 100%; max-width: 320px; }
.contact-cta__number {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .3px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0a0a0b;
  padding: 34px 0;
  color: var(--muted);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer strong { color: var(--text); }
.site-footer p { margin: 0; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.34);
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px calc((100vw - min(1160px, calc(100% - 32px))) / 2);
    background: #111;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.is-open { display: flex; }
  .hero__grid, .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero__media, .hero__media img { min-height: 420px; height: 420px; }
  .cards-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .cta-band__inner, .site-footer__inner, .top-strip__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .section-pad { padding: 64px 0; }
  .brand__text { font-size: 18px; }
  h1 { letter-spacing: -1.8px; }
  .gallery-card { grid-template-columns: 1fr; }
  .gallery-card img:first-child { grid-column: auto; height: 220px; }
  .gallery-card img { height: 220px; }
  .btn { width: 100%; }
}

/* ===== Reforço de conversão ===== */

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__badges .pill { margin-bottom: 0; }
.pill--rating {
  color: #161616;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-color: transparent;
  gap: 6px;
}
.hero__microtrust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 30px;
}
.hero__microtrust::before {
  content: "✓";
  color: var(--gold-2);
  font-weight: 900;
}

.steps-cta { text-align: center; margin-top: 36px; }

.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 4px 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 34px 18px 0;
  font-weight: 800;
  font-size: 16px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 16px;
  color: var(--gold-2);
  font-size: 22px;
  font-weight: 900;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 20px; margin: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.service-card, .review-card {
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover, .review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 164, 65, 0.4);
}
.gallery-card img { transition: transform .4s ease; }
.gallery-card:hover img { transform: scale(1.04); }

.btn--pulse { animation: ctaPulseGold 2.4s ease-in-out infinite; }
.btn--pulse-green { animation: ctaPulseGreen 2.4s ease-in-out infinite; }
@keyframes ctaPulseGold {
  0%, 100% { box-shadow: 0 18px 40px rgba(217, 164, 65, 0.22); }
  50% { box-shadow: 0 18px 46px rgba(217, 164, 65, 0.5); }
}
@keyframes ctaPulseGreen {
  0%, 100% { box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28); }
  50% { box-shadow: 0 18px 46px rgba(37, 211, 102, 0.65); }
}

.wa-icon { display: inline-flex; flex: none; }
.wa-icon svg { width: 18px; height: 18px; display: block; }
.floating-whatsapp .wa-icon svg { width: 28px; height: 28px; }

.mobile-cta-bar { display: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn--pulse, .btn--pulse-green, .top-strip__dot { animation: none; }
  .btn:hover, .service-card:hover, .review-card:hover { transform: none; }
  .gallery-card:hover img { transform: none; }
}

@media (max-width: 640px) {
  body { padding-bottom: 80px; }
  .floating-whatsapp { display: none; }
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(14, 14, 15, 0.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta-bar .btn { width: 100%; min-height: 50px; }

  .top-strip { display: none; }

  .hero__badges { gap: 8px; margin-bottom: 14px; }
  .pill { font-size: 11px; padding: 7px 12px; }
  .hero__actions { margin: 22px 0 14px; }
  .hero__microtrust { margin: 0 0 20px; }

  .region-tags {
    max-height: 190px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 68%, transparent 100%);
  }
  .region-tags.is-expanded {
    max-height: none;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .region-tags span { padding: 8px 12px; font-size: 13px; }
  .region-toggle {
    display: block;
    margin: 18px auto 0;
    width: max-content;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-2);
    font-weight: 800;
    font-size: 13px;
  }
}
