@font-face {
  font-family: "Hinotha Tomori";
  src: url("../fonts/hinotha-tomori.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #142b22;
  --paper: #f3f4ec;
  --money: #0e5c3e;
  --money-dark: #0a4530;
  --gold: #e3a62f;
  --gold-dark: #c68a1b;
  --receipt: #fbfbf6;
  --line: #c9cdbe;
  --shadow:
    0 1px 2px rgba(20, 43, 34, 0.06), 0 10px 26px rgba(20, 43, 34, 0.09);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 84px;
}
body {
  font-family: "Manrope", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
  font-family: "Hinotha Tomori", "Archivo", sans-serif;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "Space Mono", monospace;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 88px 0;
}
.eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--money);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow-light {
  color: #cfe9dc;
}
h2 {
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem);
  margin-bottom: 14px;
}
h2.light {
  color: #fff;
}
.section-lead {
  max-width: 520px;
  color: #3e5548;
  font-size: 1.05rem;
  margin-bottom: 44px;
}
.section-lead-light {
  color: #cfe9dc;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid var(--money);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(227, 166, 47, 0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
}
.btn-ghost {
  background: transparent;
  color: var(--money);
  border-color: var(--money);
}
.btn-ghost:hover {
  background: var(--money);
  color: #fff;
}
.btn-header {
  padding: 10px 20px;
  font-size: 0.88rem;
  background: var(--money);
  color: #fff;
}
.btn-header:hover {
  background: var(--money-dark);
}
.btn-block {
  width: 100%;
}
.btn-lg {
  padding: 19px 40px;
  font-size: 1.08rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 244, 236, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
}
.logo-mark {
  width: 60px;
  height: 36px;
  border-radius: 9px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  flex: none;
}
.logo small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  color: #5a6e62;
  letter-spacing: 0.02em;
}
.nav {
  display: none;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav a:hover {
  color: var(--money);
}
@media (min-width: 760px) {
  .nav {
    display: flex;
  }
}

/* Hero */
.hero {
  padding: 56px 0 40px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 940px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
  }
}
.hero h1 {
  font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero .lead {
  font-size: 1.12rem;
  color: #3e5548;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3e5548;
}
.trust-row svg {
  color: var(--money);
  flex: none;
}

/* ========================================= */
/* NOVO CSS: HERO VISUAL E FUNDO INCLINADO  */
/* ========================================= */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  padding: 20px;
}
.fundo-verde-inclinado {
  background-color: #024a13;
  border-radius: 45px;
  width: 100%;
  max-width: 420px;
  height: 380px;
  position: relative;
  box-shadow: 20px 25px 30px rgba(0, 0, 0, 0.2);
  transform: rotateX(20deg) rotateY(-15deg) rotateZ(-5deg);
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  width: 140%;
  max-width: 600px;
  transform: translateZ(60px) rotateZ(5deg);
  filter: drop-shadow(-10px 15px 25px rgba(0, 0, 0, 0.4));
}
/* ========================================= */

.tape-group {
  transform: translateY(26px);
  opacity: 0;
  animation: tapeUp 0.9s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes tapeUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tape-group {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

/* Benefits (money band) */
.section-money {
  background: #025937;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 760px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefit {
  color: #fff;
}
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
}
.benefit h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.benefit p {
  color: #cfe9dc;
  font-size: 0.96rem;
  max-width: 320px;
}

/* Plans */
.plans-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 22px;
}
@media (min-width: 1040px) {
  .plans-scroll {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}
.plan-card {
  flex: 0 0 258px;
  scroll-snap-align: start;
  background: var(--receipt);
  border-radius: 6px 6px 18px 18px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
}
.plan-torn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  border-radius: 6px 6px 0 0;
  background-color: var(--receipt);
  background-image:
    linear-gradient(135deg, var(--paper) 7px, transparent 0),
    linear-gradient(-135deg, var(--paper) 7px, transparent 0);
  background-size: 14px 14px;
  background-repeat: repeat-x;
  background-position: top left;
}
.plan-card {
  margin-top: 8px;
}
.plan-eyebrow {
  font-size: 0.72rem;
  color: #5a6e62;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.plan-card h3 {
  font-size: 1.28rem;
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 0.88rem;
  color: #4c6157;
  margin-bottom: 16px;
  min-height: 40px;
}
.plan-features {
  margin-bottom: 18px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  padding: 4px 0;
  color: #3e5548;
}
.plan-features svg {
  color: var(--money);
  flex: none;
}
.plan-price {
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.plan-price-label {
  display: block;
  font-size: 0.72rem;
  color: #5a6e62;
  margin-bottom: 2px;
}
.plan-price-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.fill-me {
  background: rgba(227, 166, 47, 0.28);
  padding: 0 5px;
  border-radius: 4px;
}

/* Rates */
.rates-receipt {
  max-width: 460px;
  margin: 0 auto;
  background: var(--receipt);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px 26px 20px;
}
.rates-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  font-size: 0.92rem;
}
.rates-row .dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-4px);
}
.rates-row span:last-child {
  font-weight: 700;
  color: var(--money);
}
.fine-print {
  max-width: 460px;
  margin: 16px auto 0;
  font-size: 0.8rem;
  color: #5a6e62;
  text-align: center;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--receipt);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px 22px;
  margin-bottom: 12px;
}
.faq-item summary {
  padding: 16px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 14px;
  font-size: 1.3rem;
  color: var(--money);
  font-weight: 700;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  padding-bottom: 18px;
  color: #3e5548;
  font-size: 0.94rem;
  max-width: 600px;
}

/* Final CTA */
.cta-final {
  background: #025937;
}
.cta-final-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.cta-final h2 {
  color: #fff;
}
.cta-final p {
  color: #b9c7bf;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #025937;
  color: #b9c7bf;
  padding: 44px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.footer-inner a:hover {
  color: #fff;
}
.small {
  font-size: 0.85rem;
}
.footer-inner p {
  margin-bottom: 6px;
}
.footer-copy {
  font-size: 0.78rem;
  color: #7d8d84;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--money);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(14, 92, 62, 0.4);
  z-index: 100;
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(14, 92, 62, 0.4);
  }
  50% {
    box-shadow:
      0 10px 26px rgba(14, 92, 62, 0.4),
      0 0 0 10px rgba(14, 92, 62, 0.14);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float {
    animation: none;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== injetado pelo build: escala proporcional da logo do header ===== */
.logo-mark img {
  width: 100%;
  height: auto;
}

/* ===== injetado pelo build: header cabe no celular ===== */
@media (max-width: 939.98px) {
  /* o nav so cabe a partir de 940px; ate la, hamburguer */
  .nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu.open {
    display: flex !important;
  }
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .logo {
    min-width: 0;
    gap: 8px;
  }
  .logo > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .btn-header {
    padding: 9px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
    flex: none;
  }
  .burger {
    flex: none;
  }
}
@media (max-width: 479.98px) {
  .logo small {
    display: none;
  }
  .btn-header .btn-header-long {
    display: none;
  }
}

/* ===== injetado pelo build: caixa de comparacao encolhe em telas estreitas ===== */
.sim-cmpbox {
  min-width: 0;
}
.sim-cmpbox .cn,
.sim-cmpbox .cx {
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.25;
}
