:root {
  --ink: #16120c;
  --oil: #231c14;
  --paper: #f6f1e8;
  --paper-2: #ece4d6;
  --copper: #d4893a;
  --copper-deep: #b56b1f;
  --cream: #fffaf2;
  --muted: #6d6458;
  --line: rgba(22, 18, 12, 0.12);
  --wa: #128c4a;
  --wa-hover: #0e733c;
  --shadow: 0 24px 50px rgba(22, 18, 12, 0.18);
  --radius: 18px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(212, 137, 58, 0.18), transparent 50%),
    var(--paper);
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--copper-deep);
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  font-size: 1.45rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 80;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-deep);
  background: rgba(255, 250, 242, 0.7);
}

.eyebrow--light {
  color: #f3d7ad;
  border-color: rgba(243, 215, 173, 0.3);
  background: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.nav a:focus-visible,
.wa-fab:focus-visible,
.faq__item button:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.btn--wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 140, 74, 0.28);
}

.btn--wa:hover {
  background: var(--wa-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 250, 242, 0.4);
}

.btn--light {
  background: var(--cream);
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--sm {
  min-height: 42px;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.site-header.is-compact {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(22, 18, 12, 0.06);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 6vw;
  background: var(--oil);
  color: #f3d7ad;
  font-size: 0.86rem;
}

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

.topbar a:hover {
  text-decoration: underline;
}

.topbar__phones {
  display: flex;
  gap: 0.55rem;
  margin: 0;
}

.topbar p {
  margin: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--copper);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 1.02rem;
}

.brand__text small {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.hero {
  background:
    linear-gradient(115deg, rgba(22, 18, 12, 0.18), transparent 32%),
    repeating-linear-gradient(
      -18deg,
      rgba(255, 250, 242, 0.04) 0 12px,
      transparent 12px 24px
    ),
    radial-gradient(circle at 80% 10%, rgba(212, 137, 58, 0.35), transparent 28%),
    linear-gradient(160deg, #2b2218 0%, #14110d 58%, #3a2a18 100%);
  color: var(--cream);
  padding: 4.5rem 6vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "CAMPINAS";
  position: absolute;
  right: -1rem;
  bottom: -1.4rem;
  font-family: var(--display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 250, 242, 0.05);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.lead {
  font-size: 1.15rem;
  max-width: 36rem;
  color: #efe3d2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 1rem;
}

.hero__meta {
  color: #d9cbb8;
  font-size: 0.95rem;
}

.hero__card {
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero__card h2 {
  font-size: 2rem;
}

.hero__card-kicker {
  margin: 0 0 0.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--copper);
}

.contact-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
}

.contact-list a,
.contact-list strong {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
}

.hero__card-note {
  color: #d9cbb8;
  font-size: 0.92rem;
  margin: 0;
}

.strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.strip__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.4rem 6vw;
}

.strip__list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.strip__list strong {
  font-family: var(--display);
  font-size: 1.45rem;
}

.strip__list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.cta-final {
  scroll-margin-top: 7.5rem;
}

.nowrap {
  white-space: nowrap;
}

.section {
  padding: 5rem 6vw;
  max-width: 1180px;
  margin: 0 auto;
}

.section__head {
  max-width: 42rem;
  margin-bottom: 2.2rem;
}

.section--dark {
  max-width: none;
  background: var(--oil);
  color: var(--cream);
  padding-left: 6vw;
  padding-right: 6vw;
}

.section--dark .section__head,
.section--dark .proof,
.section--dark .proof__sources {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section--dark a {
  color: #f3d7ad;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem 1.1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.section__cta {
  margin: 2rem 0 0;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.proof__stat {
  background: rgba(255, 250, 242, 0.05);
  border: 1px solid rgba(255, 250, 242, 0.1);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.proof__num {
  font-family: var(--display);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--copper);
  margin: 0;
  line-height: 0.85;
}

.proof__sources {
  margin: 1.8rem auto 0;
  padding-left: 1.1rem;
  color: #d9cbb8;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--paper-2);
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.map-caption {
  margin-top: 0.7rem;
}

.faq__item {
  border-top: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__item h3 {
  margin: 0;
}

.faq__item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 2rem 1rem 0;
  font: inherit;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.faq__item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper-deep);
}

.faq__item button[aria-expanded="true"]::after {
  content: "–";
}

.faq__item [data-panel] {
  padding-bottom: 1rem;
  color: var(--muted);
}

.cta-final {
  margin: 0 6vw 4rem;
  padding: 3.2rem 6vw;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 20%, rgba(212, 137, 58, 0.35), transparent 32%),
    linear-gradient(145deg, #2a2016, #14110d);
  color: var(--cream);
  text-align: center;
}

.cta-final p {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  color: #efe3d2;
}

.cta-final .hero__actions {
  justify-content: center;
}

.site-footer {
  padding: 2.5rem 6vw 6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.brand--footer {
  margin-bottom: 0.8rem;
}

address {
  font-style: normal;
}

.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(18, 140, 74, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-fab.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.page-404 {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

@media (max-width: 960px) {
  .hero__grid,
  .cards,
  .proof,
  .split,
  .strip__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 6vw 1.4rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero,
  .section,
  .cta-final,
  .nav-wrap,
  .topbar {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .cta-final {
    margin: 0 4vw 3rem;
    text-align: left;
  }

  .cta-final .hero__actions {
    justify-content: flex-start;
  }

  .hero__grid,
  .cards,
  .proof,
  .split,
  .strip__list {
    grid-template-columns: 1fr;
  }

  .wa-fab span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .wa-fab {
    transition: none;
  }
}
