/* T4 Site — Design System */
@font-face {
  font-family: "Garet";
  src: url("https://workupy.s3.us-east-2.amazonaws.com/sites/3916e592-f0a0-43e3-b518-7adc4175b016/assets/fonts/Garet-Book.woff") format("woff");
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Garet";
  src: url("https://workupy.s3.us-east-2.amazonaws.com/sites/3916e592-f0a0-43e3-b518-7adc4175b016/assets/fonts/Garet-Heavy.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sondos";
  src: url("../fonts/Sondos-Regular.woff2") format("woff2"),
       url("../fonts/Sondos-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sondos";
  src: url("../fonts/Sondos-Bold.woff2") format("woff2"),
       url("../fonts/Sondos-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #05402e;
  --green-soft: #ceedb2;
  --gray: #f2f2f2;
  --white: #ffffff;
  --text: #05402e;
  --muted: rgba(5, 64, 46, 0.72);
  --radius: 14px;
  --shadow: 0 14px 40px rgba(5, 64, 46, 0.1);
  --max: 1120px;
  --wa: #25d366;
  --font-display: "Garet", "Red Hat Display", sans-serif;
  --font-heading: "Red Hat Display", "Garet", sans-serif;
  --font-body: "Sondos", "Red Hat Display", "Garet", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
@media (max-width: 600px) {
  .container { width: min(100% - 1.5rem, var(--max)); }
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4.8vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.5rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.7; color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }
.mb-sm { margin-bottom: 0.75rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { box-shadow: 0 10px 24px rgba(5, 64, 46, 0.25); }
.btn-accent {
  background: var(--green-soft);
  color: var(--green);
}
.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-light {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--green); }
.btn-wa {
  background: var(--wa);
  color: #fff;
  gap: 0.55rem;
}
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 242, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 64, 46, 0.08);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 0.35rem 1.35rem;
  flex-wrap: wrap;
}
.nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
}
.nav a:hover,
.nav a.is-active { color: var(--green); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--green-soft);
  border-radius: 2px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 64, 46, 0.15);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: flex; }
  .header-cta {
    display: inline-flex;
    padding: 0.55rem 0.8rem;
    font-size: 0.82rem;
    gap: 0.35rem;
  }
  .header-cta svg { width: 16px; height: 16px; }
  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-bottom: 0.75rem;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(5, 64, 46, 0.08);
    font-size: 1rem;
  }
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-gray { background: var(--gray); }
.section-green {
  background: var(--green);
  color: var(--white);
}
.section-green .lead,
.section-green .muted { color: rgba(255, 255, 255, 0.78); }
.section-soft {
  background: linear-gradient(180deg, var(--green-soft) 0%, #e8f5d8 100%);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.section-green .eyebrow {
  background: rgba(206, 237, 178, 0.2);
  color: var(--green-soft);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(82vh, 680px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 64, 46, 0.88) 0%, rgba(5, 64, 46, 0.55) 55%, rgba(5, 64, 46, 0.3) 100%),
    var(--hero-img, url("https://workupy.s3.us-east-2.amazonaws.com/sites/3916e592-f0a0-43e3-b518-7adc4175b016/assets/img/fotocapahome.png")) center / cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 4.5rem;
  max-width: 720px;
}
.hero-brand {
  display: block;
  width: auto;
  height: auto;
  max-height: 46px;
  max-width: min(250px, 72vw);
  object-fit: contain;
  margin-bottom: 1.15rem;
}
.hero h1 {
  font-size: clamp(1.28rem, 2.6vw, 2.05rem);
  max-width: 22em;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.hero .lead { color: rgba(255, 255, 255, 0.88); margin: 1.15rem 0 2rem; }
.hero-page {
  min-height: min(62vh, 520px);
}
.hero-page .hero-content { padding: 5rem 0 3.5rem; }

.hero-split {
  background: var(--green);
  color: var(--white);
  padding: 3.5rem 0;
  overflow: hidden;
}
.hero-split-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-split-inner { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
}
.hero-split .eyebrow {
  background: rgba(206, 237, 178, 0.2);
  color: var(--green-soft);
}
.hero-split h1 { color: var(--white); }
.hero-split .lead {
  color: rgba(255, 255, 255, 0.88);
  margin: 1.15rem 0 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
@media (max-width: 600px) {
  .hero-actions .btn { width: 100%; }
}
.hero-split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  align-self: stretch;
  background: rgba(0, 0, 0, 0.15);
}
.hero-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 380px;
  max-height: 580px;
  aspect-ratio: 4 / 5;
}
.hero-split-media--wide img {
  aspect-ratio: 4 / 5;
  object-position: 50% 12%;
}

/* Cards grid */
.cards-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
@media (min-width: 900px) {
  .cards-solucoes {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-stack {
  display: grid;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}

.product-jump {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  max-width: 980px;
  margin: 0 auto 1.75rem;
}
@media (min-width: 720px) {
  .product-jump { grid-template-columns: repeat(4, 1fr); }
}
.product-jump a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid rgba(5, 64, 46, 0.1);
  border-radius: 14px;
  color: var(--green);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product-jump a span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.product-jump a:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 64, 46, 0.1);
}

.product-block {
  background: var(--white);
  border: 1px solid rgba(5, 64, 46, 0.08);
  border-radius: 18px;
  padding: 1.85rem 1.85rem 1.6rem;
  box-shadow: 0 8px 28px rgba(5, 64, 46, 0.05);
  scroll-margin-top: 100px;
}
.product-block-head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(5, 64, 46, 0.08);
}
.product-block-head .card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green);
  color: var(--green-soft);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
}
.product-block h3 {
  margin-bottom: 0.35rem;
}
.product-tagline {
  color: var(--green);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}
.product-tagline--banner {
  display: block;
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  background: rgba(206, 237, 178, 0.4);
  border-radius: 12px;
}
.product-block > p,
.product-segment > p,
.product-hl p,
.product-option p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.product-block h4 {
  font-size: 1.05rem;
  margin: 1.45rem 0 0.65rem;
}
.product-block h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--green);
  margin: 0 0 0.5rem;
}
.product-quote {
  margin: 0 0 1.15rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--green);
  background: rgba(206, 237, 178, 0.35);
  color: var(--green);
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 1rem;
}
.product-hl-grid {
  display: grid;
  gap: 0.75rem;
  margin: 0.25rem 0 0.5rem;
}
@media (min-width: 760px) {
  .product-hl-grid { grid-template-columns: repeat(3, 1fr); }
  .product-hl-grid--2 { grid-template-columns: repeat(2, 1fr); }
}
.product-hl {
  background: rgba(206, 237, 178, 0.28);
  border-radius: 12px;
  padding: 1rem;
}
.product-hl h4 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: var(--green);
}
.product-hl p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.product-steps {
  list-style: none;
  margin: 0.5rem 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .product-steps { grid-template-columns: repeat(2, 1fr); }
  .product-steps--3 { grid-template-columns: repeat(3, 1fr); }
  .product-steps--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .product-steps--4 { grid-template-columns: repeat(4, 1fr); }
  .product-steps--2 { grid-template-columns: repeat(2, 1fr); }
}
.product-steps li {
  background: var(--gray);
  border-radius: 12px;
  padding: 0.9rem;
  border-top: 3px solid var(--green-soft);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
.product-steps strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--green);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.product-steps--labels li {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
}
.product-steps--labels strong {
  margin-bottom: 0;
}
.product-segments--simple .product-segment {
  text-align: center;
  padding: 1.15rem 1rem;
}
.product-segments--simple .product-segment h5 {
  margin: 0;
  font-size: 1.05rem;
}
.product-option-grid {
  display: grid;
  gap: 0.85rem;
  margin: 0.5rem 0 0.75rem;
}
@media (min-width: 720px) {
  .product-option-grid { grid-template-columns: 1fr 1fr; }
}
.product-option {
  background: rgba(242, 242, 242, 0.75);
  border: 1px solid rgba(5, 64, 46, 0.08);
  border-radius: 14px;
  padding: 1.1rem;
}
.product-option--featured {
  background: rgba(206, 237, 178, 0.4);
  border-color: var(--green-soft);
}
.product-option-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.product-option p { margin: 0; font-size: 0.92rem; }
.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.5rem 0 0.85rem;
}
.product-pills span {
  background: rgba(206, 237, 178, 0.4);
  color: var(--green);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  font-family: var(--font-heading);
}
.product-combo-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
@media (min-width: 720px) {
  .product-combo-grid { grid-template-columns: 1fr 1fr; }
}
.product-combo {
  background: rgba(242, 242, 242, 0.75);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.product-combo strong {
  display: block;
  color: var(--green);
  font-family: var(--font-heading);
  margin-bottom: 0.2rem;
}
.product-combo--full {
  background: rgba(206, 237, 178, 0.4);
}
@media (min-width: 720px) {
  .product-combo--full { grid-column: 1 / -1; }
}
.product-list {
  margin-bottom: 0.75rem;
}
.product-list li {
  font-size: 0.95rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.product-note {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(5, 64, 46, 0.1);
  color: var(--green) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}
.product-segments {
  display: grid;
  gap: 1rem;
  margin: 0.75rem 0 1rem;
}
@media (min-width: 760px) {
  .product-segments { grid-template-columns: repeat(3, 1fr); }
  .product-segments-2 { grid-template-columns: repeat(2, 1fr); }
}
.product-segment {
  background: rgba(242, 242, 242, 0.7);
  border-radius: 12px;
  padding: 1rem;
  border-top: 3px solid var(--green-soft);
}
.product-segment .product-list { margin-bottom: 0; }
.product-segment .product-list li:last-child { border-bottom: 0; }
.product-compare {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}
@media (min-width: 760px) {
  .product-compare { grid-template-columns: 1fr 1fr; }
}
.product-compare-col {
  background: rgba(242, 242, 242, 0.7);
  border-radius: 12px;
  padding: 1rem;
}
.product-compare-col--ok {
  background: rgba(206, 237, 178, 0.35);
}
.x-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.x-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(5, 64, 46, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
}
.x-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #a33;
  font-weight: 700;
}
.x-list li:last-child { border-bottom: 0; }

/* Client logos (construtoras) */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 1.25rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 700px) {
  .clients-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1000px) {
  .clients-logos {
    grid-template-columns: repeat(5, 1fr);
  }
}
.clients-logo {
  width: 100%;
  max-width: 180px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(5, 64, 46, 0.08);
  border-radius: 12px;
  box-sizing: border-box;
}
.clients-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: center;
}
.card {
  background: var(--white);
  border: 1px solid rgba(5, 64, 46, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 8px 28px rgba(5, 64, 46, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card p { color: var(--muted); flex: 1; margin-bottom: 1.25rem; }
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.card-logo {
  display: block;
  margin: 0 0 1.15rem;
  line-height: 0;
}
.card-logo img {
  height: auto;
  width: auto;
  max-height: 42px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Google-style reviews */
.reviews {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review {
  background: var(--white);
  border: 1px solid rgba(5, 64, 46, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: 0 8px 24px rgba(5, 64, 46, 0.06);
  display: flex;
  flex-direction: column;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--green);
  line-height: 1.2;
}
.review-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}
.review-stars {
  color: #f4b400;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.review-time {
  font-size: 0.8rem;
  color: var(--muted);
}
.review-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border: 1px solid rgba(5, 64, 46, 0.25);
  border-radius: 4px;
  color: var(--green);
}
.review p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

/* Purpose split */
.purpose-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .purpose-split { grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; }
}
.purpose-split .split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.purpose-split .split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}
.section-green .purpose-split h2 { color: var(--white); }
.section-green .purpose-split .btn { margin-top: 0.5rem; }

/* Timeline compact */
.timeline {
  position: relative;
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--green-soft);
}
@media (min-width: 700px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}
.timeline-item {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.9rem 0.7rem 2.6rem;
  border: 1px solid rgba(5, 64, 46, 0.08);
  box-shadow: none;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 0.95rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--green-soft);
  z-index: 1;
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--green);
  font-size: 0.8rem;
  margin-bottom: 0.1rem;
  display: inline;
  margin-right: 0.4rem;
}
.timeline-item p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  display: inline;
}
@media (min-width: 700px) {
  .timeline-item {
    width: calc(50% - 1rem);
    padding: 0.75rem 1rem;
  }
  .timeline-item::before { left: auto; }
  .timeline-item:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
  }
  .timeline-item:nth-child(odd)::before {
    right: -1.2rem;
  }
  .timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
  }
  .timeline-item:nth-child(even)::before {
    left: -1.2rem;
  }
}

/* Reviews carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s ease;
  will-change: transform;
}
.reviews-carousel .review {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 0;
  min-height: 260px;
}
@media (max-width: 900px) {
  .reviews-carousel .review { flex: 0 0 calc(50% - 0.65rem); }
}
@media (max-width: 640px) {
  .reviews-carousel .review { flex: 0 0 100%; }
}
.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.reviews-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(5, 64, 46, 0.2);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.reviews-nav button:hover { background: var(--green-soft); }
.reviews-dots {
  display: flex;
  gap: 0.4rem;
}
.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(5, 64, 46, 0.25);
  cursor: pointer;
}
.reviews-dots button.is-active { background: var(--green); }
.reviews-hint {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

#investimento {
  scroll-margin-top: 120px;
}

.community-box {
  margin-top: 2rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(5, 64, 46, 0.1);
  box-shadow: 0 8px 24px rgba(5, 64, 46, 0.05);
}
.community-box h3 { margin-bottom: 0.35rem; }
.community-box .subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
}
.instructors-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .instructors-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.instructor-bios {
  display: grid;
  gap: 1.25rem;
}
.instructor-bio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid rgba(5, 64, 46, 0.08);
}
.instructor-bio-card h3 { margin-bottom: 0.2rem; }
.instructor-bio-card .role {
  display: block;
  color: var(--green);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Numbers */
.stats {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}
.stat {
  background: var(--green);
  color: var(--white);
  border-radius: 18px;
  padding: 1.75rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(206, 237, 178, 0.12);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green-soft);
  line-height: 1;
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}
.stat p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(5, 64, 46, 0.08);
  box-shadow: var(--shadow);
}
.testimonial img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.testimonial-body { padding: 1.25rem 1.35rem 1.5rem; }
.stars { color: #f4b400; letter-spacing: 0.1em; margin-bottom: 0.5rem; }

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(5, 64, 46, 0.08);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--green-soft);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.85rem;
}
.step p { color: var(--muted); font-size: 0.95rem; }

/* Check list */
.check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid rgba(5, 64, 46, 0.08);
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.check-list li:last-child { border-bottom: 0; }

/* Two columns */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split-reverse .split-media { order: 2; }
}
.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; min-height: 280px; }

.team-member {
  display: grid;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.team-member:last-child { margin-bottom: 0; }
@media (min-width: 860px) {
  .team-member { grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; }
  .team-member--reverse .split-media { order: 2; }
  .team-member--reverse > div:last-child { order: 1; }
}
.team-role {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green);
  margin: -0.35rem 0 1rem;
}
.team-formation-title {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.05rem;
}
.team-formation {
  margin-bottom: 1.25rem;
}
.team-formation li {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  font-size: 0.95rem;
}

/* Pricing */
.edu-offer-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .edu-offer-grid { grid-template-columns: 1fr 1fr; }
}
.price-box {
  background: var(--white);
  border: 2px solid var(--green-soft);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.edu-offer-grid .price-box {
  max-width: none;
  margin: 0;
}
.consult-products .price-box h3 {
  margin-bottom: 0.35rem;
}
.consult-products .check-list {
  margin-top: 0.5rem;
}
.consult-compare {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .consult-compare {
    grid-template-columns: 1fr 1fr;
  }
}
.consult-compare-col {
  background: var(--white);
  border: 1px solid rgba(5, 64, 46, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
}
.consult-compare-col h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.consult-compare-col--ok {
  border-color: var(--green-soft);
  background: rgba(206, 237, 178, 0.25);
}
.community-card h3 { margin-bottom: 0.35rem; }
.community-card-sub {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1rem;
}
.price-old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
}
.price-now {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--green);
  margin: 0.5rem 0 1rem;
}
.badge-launch {
  display: inline-block;
  background: var(--green);
  color: var(--green-soft);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

/* Quote */
.quote {
  background: var(--gray);
  border-left: 4px solid var(--green-soft);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}
.quote p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* Values */
.values {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.value {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 3px solid var(--green-soft);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3.5rem 0;
}
.cta-band h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-band .lead { max-width: 640px; margin: 0 auto 1.75rem; }

/* Footer */
.footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
  font-size: 0.92rem;
}
.footer a:hover { color: var(--green-soft); }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  margin-bottom: 2rem;
}
.footer-logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  margin-bottom: 0.75rem;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}
.footer ul li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.socials { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s, color 0.2s;
}
.socials a svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  color: #ffffff;
}
.socials a svg path {
  fill: #ffffff;
}
.socials a:hover {
  background: var(--green-soft);
  color: var(--green);
}
.socials a:hover svg,
.socials a:hover svg path {
  fill: var(--green);
}

@media (max-width: 600px) {
  .section { padding: 3rem 0; }
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 4.25rem 0 3rem;
  }
  .hero h1 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    max-width: none;
  }
  .hero-page .hero-content { padding: 4rem 0 2.75rem; }
  .hero-split { padding: 2.5rem 0; }
  .hero-split-media,
  .hero-split-media--wide {
    min-height: 240px;
    max-height: 360px;
  }
  .logo img {
    height: 40px;
    max-width: 150px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .header .btn { width: auto; }
  .product-block {
    padding: 1.25rem 1.1rem 1.15rem;
  }
  .product-block-head {
    gap: 0.75rem;
  }
  .product-block-head .card-icon {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }
  .product-jump a {
    padding: 0.75rem 0.8rem;
    font-size: 0.88rem;
  }
  .product-hl-grid,
  .product-option-grid,
  .product-combo-grid,
  .product-steps--3,
  .product-steps--4,
  .product-steps--2 {
    grid-template-columns: 1fr;
  }
  .team-member { margin-bottom: 2.5rem; }
  .split-media img { min-height: 220px; }
  .stats {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .socials {
    flex-wrap: wrap;
  }
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  .edu-offer-grid {
    grid-template-columns: 1fr;
  }
  .price-box { padding: 1.35rem; }
  .reviews-carousel .review { min-height: 0; }
  .cta-band { padding: 2.5rem 0; }
  .cards-3 { grid-template-columns: 1fr; }
}
