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

:root {
  --green:       #34a740;
  --green-dark:  #17381a;
  --green-forest: #18511e;
  --green-light: #e7f4e9;
  --green-pill:  rgba(52, 167, 64, 0.15);
  --green-icon:  rgba(52, 167, 64, 0.1);
  --bg:          #f5f5f5;
  --white:       #ffffff;
  --text:        #111827;
  --text-grey:   #3a3b3c;
  --text-light:  #4a5565;
  --border:      #d8d8d8;
  --red:         #b44444;

  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-card: 40px;
  --radius-btn:  100px;
  --max-w: 1380px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.navbar__links a {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  transition: color 0.2s;
}

.navbar__links a:hover { color: var(--green); }

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-left: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

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

.btn--green { background: var(--green); color: #fff; }
.btn--outline { background: transparent; border: 1.5px solid var(--green-dark); color: var(--green-dark); font-weight: 700; }
.btn--sm { padding: 8px 20px; font-size: 15px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, rgba(52,167,64,0.1) 0%, #fff 50%);
  border-radius: var(--radius-card);
  margin: 30px;
  padding: 80px 60px 0;
  overflow: hidden;
  min-height: 720px;
}

.hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.hero__left { flex: 0 0 520px; padding-bottom: 60px; }

.hero__headline {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__headline--dark { display: block; color: var(--green-dark); font-weight: 500; }
.hero__headline--green { display: block; color: var(--green); font-weight: 600; }

.hero__subtitle {
  font-size: 18px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: var(--radius-btn);
  padding: 10px 20px;
  font-size: 14px;
  width: fit-content;
}

.hero__tagline em { font-style: italic; }

.hero__mockups {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: flex-end;
  padding-top: 20px;
}

.hero__mockup {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}

.hero__phone {
  width: 100%;
  display: block;
}

.hero__screen {
  position: absolute;
  top: 6%;
  left: 6%;
  width: 88%;
  border-radius: 32px;
}

/* ── SEÇÕES BASE ── */
.section {
  margin: 8px 27px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 60px 0;
}

/* ── TIPOGRAFIA ── */
.heading-lg {
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--green-dark);
}

.text-green { color: var(--green); font-weight: 700; }
.text-red   { color: var(--red); font-size: 28px; font-weight: 400; }
.text-grey  { color: var(--text-grey); }

/* ── MARCA ── */
.section--marca {
  background: linear-gradient(135deg, #fff 50%, var(--green-light) 100%);
}

.marca__header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
}

.marca__header-left { flex: 1; }
.marca__header-right { flex: 0 0 400px; font-size: 18px; line-height: 1.6; padding-top: 16px; }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: 30px 30px 0;
  margin: 0 -60px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 40px 36px;
  min-height: 256px;
}

.card--gradient {
  background: linear-gradient(120deg, #fff 60%, var(--green-light) 100%);
}

.card__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 48px;
}

.card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-forest);
  margin-bottom: 12px;
}

.card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-grey);
  max-width: 260px;
}

/* ── PORQUE ── */
.section--white { background: var(--white); position: relative; }

.porque__watermelon {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 500px;
  line-height: 1;
  filter: blur(13px);
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.section__inner--porque { position: relative; z-index: 1; }

.porque__title { position: relative; z-index: 0; }
.porque__title::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -4px;
  width: 340px;
  height: 76px;
  background: #e7f4e9;
  border-radius: 40px;
  z-index: -1;
}

.section__inner--porque { padding-bottom: 60px; }

.porque__header {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.porque__subtitle { flex: 0 0 500px; font-size: 17px; line-height: 1.7; padding-top: 12px; }

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 50px;
  margin-bottom: 8px;
}

.benefit__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-icon);
  flex-shrink: 0;
}

.benefit__icon { width: 20px; height: 20px; }

.benefit__body { flex: 1; }

.benefit__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.benefit__sub {
  font-size: 20px;
  color: var(--text-grey);
  margin-bottom: 12px;
}

.benefit__stat {
  display: inline-block;
  background: var(--green-pill);
  color: var(--green);
  font-size: 26px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-btn);
}

/* ── TAGLINE ── */
.section--tagline {
  border: none;
  background: transparent;
  margin: 0 27px;
}

.tagline__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.tagline__text { flex: 1; text-align: center; position: relative; z-index: 0; }

.tagline__line1 {
  font-size: 52px;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.tagline__line1-highlight {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -6px;
  width: 110%;
  height: 80px;
  background: #e7f4e9;
  border-radius: 40px;
  z-index: -1;
}

.tagline__line2 {
  font-size: 38px;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.4;
}

.tagline__line2 em {
  font-style: italic;
  color: var(--green);
}

.tagline__emoji {
  font-size: 80px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── PASSOS ── */
.section--passos {
  background: linear-gradient(135deg, #fff 50%, var(--green-light) 100%);
}

.section__inner--passos { padding-bottom: 0; }

.passos__header { text-align: center; margin-bottom: 48px; }
.passos__sub { margin-top: 8px; font-size: 18px; }

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

.passo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  min-height: 280px;
}

.passo-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-icon);
  border-radius: 16px;
  width: 56px;
  height: 56px;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 32px;
}

.passo-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.passo-card__desc {
  font-size: 16px;
  color: var(--text-grey);
  line-height: 1.5;
}

.passos__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: linear-gradient(160deg, #fff 50%, var(--green-light) 100%);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  margin-top: 16px;
}

.passos__banner-text {
  font-size: 36px;
  font-weight: 500;
  color: var(--green-dark);
}

.passos__banner-text em {
  font-style: italic;
  color: var(--green);
}

.passos__banner-emoji { font-size: 60px; display: inline-block; transform: rotate(15deg); }

/* ── PLANOS ── */
.section--planos { background: var(--white); }

.section__inner--planos { padding: 60px; }

.text-center { text-align: center; }

.planos__subtitle {
  font-size: 20px;
  margin: 16px auto 48px;
}

.plan-card {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--green);
  border-radius: var(--radius-card);
  padding: 48px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.plan-card__left { flex: 0 0 260px; }

.plan-card__name {
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.plan-card__desc {
  font-size: 17px;
  color: var(--text-grey);
  margin-bottom: 24px;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}

.plan-card__amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.plan-card__period {
  font-size: 16px;
  color: var(--green);
}

.plan-card__badge {
  background: var(--green-icon);
  color: var(--green);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  width: fit-content;
}

.plan-card__right { flex: 1; }

.plan-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding-top: 16px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-grey);
}

.plan-feature__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.planos__cta { text-align: center; margin-top: 40px; }

.planos__footer { font-size: 15px; margin-top: 16px; }

/* ── POLIMENTO ── */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(52, 167, 64, 0.12);
}

.passo-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.passo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(52, 167, 64, 0.08);
}

.benefit {
  transition: box-shadow 0.2s ease;
}
.benefit:hover {
  box-shadow: 0 4px 16px rgba(52, 167, 64, 0.08);
}

/* Fade-in ao scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVIDADE ── */
@media (max-width: 900px) {
  .hero { padding: 40px 24px 0; margin: 16px; min-height: auto; }
  .hero__content { flex-direction: column; }
  .hero__left { flex: none; }
  .hero__mockups { display: none; }
  .hero__headline { font-size: 38px; }

  .section { margin: 8px 12px; }
  .section__inner { padding: 40px 24px 0; }
  .section--tagline { margin: 0 12px; }

  .marca__header { flex-direction: column; gap: 16px; }
  .marca__header-right { flex: none; }
  .cards { grid-template-columns: 1fr; margin: 0 -24px; padding: 24px 24px 0; }

  .porque__header { flex-direction: column; gap: 16px; }
  .porque__subtitle { flex: none; }
  .benefit { padding: 28px 24px; flex-direction: column; }
  .benefit__title { font-size: 20px; }
  .benefit__stat { font-size: 20px; }

  .tagline__inner { padding: 40px 24px; flex-direction: column; text-align: center; }
  .tagline__line1 { font-size: 30px; }
  .tagline__line2 { font-size: 22px; }
  .tagline__emoji { font-size: 48px; }

  .passos__cards { grid-template-columns: 1fr 1fr; }
  .section__inner--passos { padding: 40px 24px 0; }
  .passos__banner { padding: 28px 24px; }
  .passos__banner-text { font-size: 24px; }

  .plan-card { flex-direction: column; gap: 32px; padding: 32px 24px; }
  .plan-card__left { flex: none; }
  .plan-features { grid-template-columns: 1fr; }
  .section__inner--planos { padding: 40px 24px; }

  .navbar__links { display: none; }
  .navbar__hamburger { display: block; }
  .navbar__inner { flex-wrap: wrap; }
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
  }

  .heading-lg { font-size: 36px; }
}

@media (max-width: 480px) {
  .passos__cards { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; }
  .passos__banner-text { font-size: 18px; }
  .tagline__line1 { font-size: 24px; }
  .tagline__line2 { font-size: 18px; }
}
