:root {
  --bg: #0e1119;
  --bg-soft: #161b27;
  --paper: #f0ebdf;
  --ink: #efe6d4;
  --ink-dark: #12141b;
  --gold: #c8a96d;
  --gold-strong: #e3be7a;
  --accent: #9a2b2b;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 16px;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: radial-gradient(circle at top right, #202839, var(--bg) 40%);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(10, 14, 22, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 0;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.84;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  color: var(--gold-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 10px;
  padding: 8px 12px;
}

.section {
  padding: 86px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.lead {
  max-width: 75ch;
  color: rgba(240, 235, 223, 0.9);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  background: url("assets/Fotosprosite/fotosplanodefundo/fundos%20(1).jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(9, 11, 17, 0.9) 30%, rgba(9, 11, 17, 0.5) 72%),
    linear-gradient(180deg, rgba(21, 18, 13, 0.2), rgba(9, 11, 17, 0.95));
  z-index: -1;
}

.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(56px);
  pointer-events: none;
}

.glow-a {
  background: rgba(200, 169, 109, 0.3);
  top: -90px;
  right: -20px;
}

.glow-b {
  background: rgba(154, 43, 43, 0.25);
  left: -60px;
  bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 10px;
}

.hero-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 12px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ebcc94);
  color: #241a0f;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(240, 235, 223, 0.38);
  color: var(--ink);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.proof-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.hero-media img {
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 560px;
}

.section-dark {
  background: linear-gradient(180deg, #111726, #0d1019);
}

.section-pattern {
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 169, 109, 0.11), transparent 36%),
    linear-gradient(180deg, #11161f, #141b2a);
}

.section-accent {
  background: linear-gradient(130deg, #281610, #5a211d 58%, #1a1112);
}

.section-final {
  background: linear-gradient(180deg, #101521, #0a0e15);
}

.cards {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.15fr;
}

.steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 999px;
  color: #241a0f;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), #f2d6a3);
}

.icon-list {
  padding: 0;
  list-style: none;
}

.icon-list li {
  margin-bottom: 8px;
}

.center-note {
  margin-top: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--gold-strong);
}

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.form-card input,
.form-card textarea {
  width: 100%;
  margin: 6px 0 12px;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(8, 10, 15, 0.75);
  color: var(--ink);
  font-family: inherit;
}

.form-card input:focus,
.form-card textarea:focus {
  outline: 2px solid rgba(227, 190, 122, 0.4);
  border-color: var(--gold);
}

.form-hint {
  margin-top: 10px;
  font-size: 0.85rem;
  opacity: 0.82;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: #090d14;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.signature {
  max-width: 220px;
  border-radius: 0;
  margin-bottom: 8px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links a {
  opacity: 0.84;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  background: linear-gradient(135deg, #1ca266, #25d366);
  color: #062215;
  font-weight: 800;
  padding: 13px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.68);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(560px, 92%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, #141a28, #10141f);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.5rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.contact-result {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.timer {
  color: var(--gold-strong);
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .cards-5,
  .cards-3,
  .cards-2,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 68px;
    min-width: 230px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #101726;
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .nav.open {
    display: flex;
  }

  .cards-5,
  .cards-3,
  .cards-2,
  .steps {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}
