:root {
  --bg: #f7f4ef;
  --paper: #fffaf2;
  --ink: #141414;
  --muted: #625b52;
  --red: #c82028;
  --red-dark: #8f151b;
  --gold: #f3b229;
  --green: #1f5b49;
  --line: rgba(20, 20, 20, 0.14);
  --shadow: 0 24px 80px rgba(19, 17, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(12, 12, 12, 0.58);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav a:hover,
.header-cta:hover {
  color: #fff;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding: 128px clamp(18px, 5vw, 70px) 42px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #171717 url("assets/hero-bombeiro.svg") center / cover no-repeat;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(1.05) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.7) 42%, rgba(10, 10, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
}

.eyebrow,
.section-label,
.card-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 38px rgba(200, 32, 40, 0.35);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.full {
  width: 100%;
}

.hero-stats {
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  width: min(210px, 100%);
}

.hero-stats strong {
  display: block;
  font-size: 1.34rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(68px, 9vw, 130px) clamp(18px, 5vw, 70px);
}

.intro-grid,
.split,
.offer-grid,
.mentor-grid,
.faq,
.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro-grid p,
.section-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.pain-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #fff;
}

.pain-item {
  min-height: 180px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.pain-item:last-child {
  border-right: 0;
}

.pain-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 950;
}

.pain-item p {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.18;
  font-weight: 800;
}

.method-list {
  display: grid;
  gap: 16px;
}

.method-list article,
.offer-card,
.mentor-card,
.timeline div,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.method-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  padding: 26px;
}

.method-list article p {
  grid-column: 2;
  margin-bottom: 0;
  color: var(--muted);
}

.method-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
}

.method-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dark {
  color: #fff;
  background: #141414;
}

.mentor-card {
  background: #201d1a;
  border-color: rgba(255, 255, 255, 0.12);
  padding: clamp(28px, 5vw, 52px);
}

.mentor-card p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.mentor-points {
  display: grid;
  gap: 18px;
}

.mentor-points div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mentor-points strong,
.mentor-points span {
  display: block;
}

.mentor-points strong {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.mentor-points span {
  color: rgba(255, 255, 255, 0.68);
}

.offer-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 430px);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #332f2b;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.55em;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.offer-card {
  position: sticky;
  top: 98px;
  padding: 30px;
}

.offer-card h3 {
  font-size: 1.7rem;
}

.price {
  margin: 24px 0 4px;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  font-weight: 950;
}

.price-note,
.small-note,
.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.proof {
  padding-top: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline div {
  padding: 28px;
  box-shadow: none;
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 950;
}

.timeline p,
.faq-list p {
  color: var(--muted);
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.signup {
  margin: 0 clamp(18px, 5vw, 70px) clamp(68px, 9vw, 120px);
  padding: clamp(30px, 6vw, 64px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.96), rgba(31, 91, 73, 0.92)),
    var(--green);
  border-radius: 8px;
  align-items: center;
}

.signup h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.signup-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 30px);
  color: var(--ink);
  background: #fff;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 20, 20, 0.18);
  border-radius: 6px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 30px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.68);
  background: #101010;
}

.footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .intro-grid,
  .split,
  .offer-grid,
  .mentor-grid,
  .faq,
  .signup,
  .timeline,
  .pain-band {
    grid-template-columns: 1fr;
  }

  .pain-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pain-item:last-child {
    border-bottom: 0;
  }

  .offer-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .brand span:last-child,
  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .method-list article {
    grid-template-columns: 1fr;
  }

  .method-list article p {
    grid-column: 1;
  }

  .method-icon {
    margin-bottom: 18px;
  }

  .signup {
    margin-inline: 0;
    border-radius: 0;
  }
}
