:root {
  --green-900: #063f38;
  --green-800: #075449;
  --green-700: #0b6b5e;
  --green-500: #16a085;
  --green-100: #dff3ef;
  --blue-950: #071827;
  --slate-800: #1f3446;
  --slate-600: #587083;
  --slate-100: #eef4f7;
  --white: #ffffff;
  --amber: #f4b942;
  --shadow: 0 24px 70px rgba(7, 24, 39, .14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--blue-950);
  background: #f6fafb;
  line-height: 1.6;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 251, .86);
  border-bottom: 1px solid rgba(88, 112, 131, .14);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 14px;
}

.brand-icon svg {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--slate-600);
  font-weight: 600;
  font-size: .95rem;
}

.nav-links a:not(.btn):hover {
  color: var(--green-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 24, 39, .08);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-800);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary,
.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 16px 34px rgba(11, 107, 94, .28);
}

.btn-secondary {
  color: var(--green-800);
  background: var(--white);
  border-color: rgba(11, 107, 94, .18);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .9rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(22, 160, 133, .22), transparent 34%),
    radial-gradient(circle at 12% 24%, rgba(244, 185, 66, .16), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
  background: rgba(22, 160, 133, .1);
  border: 1px solid rgba(22, 160, 133, .16);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

h1 {
  margin: 22px 0 20px;
  font-size: clamp(2.45rem, 6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.07em;
}

h2 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.055em;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.hero-copy p,
.section-heading p,
.split p,
.report-grid p,
.cta-box p {
  color: var(--slate-600);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--slate-600);
  font-size: .94rem;
  font-weight: 700;
}

.trust-list span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(88, 112, 131, .12);
  border-radius: 999px;
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 32px;
  background: linear-gradient(135deg, rgba(11, 107, 94, .22), rgba(244, 185, 66, .2));
  border-radius: var(--radius);
  filter: blur(4px);
}

.mock-window {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(88, 112, 131, .13);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mock-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: linear-gradient(135deg, #fbfdfd, #eef8f6);
  border-bottom: 1px solid rgba(88, 112, 131, .12);
}

.mock-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d7e2e7;
}

.mock-content {
  padding: 28px;
}

.mock-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.mock-title span {
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .82rem;
  font-weight: 800;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.stat-row article,
.trip-list > div,
.feature-card,
.timeline article,
.report-cards article {
  border: 1px solid rgba(88, 112, 131, .13);
  background: rgba(255, 255, 255, .78);
  border-radius: 18px;
}

.stat-row article {
  padding: 16px;
}

.stat-row small,
.trip-list small {
  display: block;
  color: var(--slate-600);
}

.stat-row b {
  display: block;
  margin-top: 4px;
  color: var(--green-800);
  font-size: 1.62rem;
}

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

.trip-list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  flex: 0 0 13px;
}

.status-dot.active {
  background: var(--amber);
}

.status-dot.scheduled {
  background: #3b82f6;
}

.status-dot.done {
  background: var(--green-500);
}

.section {
  padding: 88px 0;
}

.strip {
  padding: 28px 0;
  background: var(--green-900);
  color: var(--white);
}

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

.strip-grid div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid span {
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.feature-card {
  padding: 26px;
  box-shadow: 0 12px 34px rgba(7, 24, 39, .06);
}

.feature-card p,
.timeline p,
.report-cards span {
  color: var(--slate-600);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--green-100);
  font-size: 1.35rem;
}

.soft {
  background:
    linear-gradient(135deg, rgba(223, 243, 239, .72), rgba(255, 255, 255, .8)),
    #eef7f6;
}

.split {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 48px;
  align-items: center;
}

.check-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.check-panel li {
  position: relative;
  padding-left: 34px;
  color: var(--slate-800);
  font-weight: 600;
}

.check-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: .82rem;
}

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

.timeline article {
  position: relative;
  padding: 26px;
  min-height: 245px;
}

.timeline article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 900;
}

.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 160, 133, .34), transparent 30%),
    linear-gradient(135deg, #071827, #063f38);
}

.dark .eyebrow {
  color: #baf4e7;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.dark p,
.dark .report-cards span {
  color: rgba(255, 255, 255, .72);
}

.report-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: center;
}

.report-cards {
  display: grid;
  gap: 14px;
}

.report-cards article {
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.report-cards strong,
.report-cards span {
  display: block;
}

.report-cards strong {
  margin-bottom: 6px;
}

.cta-section {
  padding-bottom: 98px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, .78);
  background: var(--blue-950);
}

.footer .brand {
  color: var(--white);
}

.footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .65);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid div:last-child {
  display: grid;
  gap: 6px;
}

.footer strong {
  color: var(--white);
}

.footer a:hover {
  color: #baf4e7;
}

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

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

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

  .cta-actions {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

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

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(88, 112, 131, .14);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .trust-list {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-row,
  .strip-grid,
  .benefit-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .mock-content,
  .check-panel,
  .feature-card,
  .timeline article,
  .cta-box {
    padding: 22px;
  }

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