:root {
  --color-green: #AFCD36;
  --color-hero-title: #026634;
  --color-price-bg: #E4F0DD;
  --color-subtitle-gray: #494949;
  --color-cream: #EDF1E4;
  --color-offwhite: #F8F9F5;
  --color-gray: #D1D6BE;
  --color-warm-bg: #F7F6F1;
  --color-testimonial-border: #A6CE3A;
  --color-title-dark: #3B721E;
  --color-text: #000000;
  --color-text-gray: #545454;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

@media (max-width: 991.98px) {
  .show-desktop-only {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-on-desktop-only {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Header */
.site-header {
  padding-block: 1rem;
  background: #fff;
}

.brand-logo {
  width: 9.5rem;
}

/* CTA button */
.btn-cta-green {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  padding: 0.85rem 1.5rem;
  border-radius: 999rem;
  background: var(--color-green);
  color: var(--color-title-dark);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  border-radius: 2rem;
}

/* Hero */
.hero-section {
  padding-bottom: 1.5rem;
}

.hero-media {
  margin-bottom: 1.75rem;
  width: 100%;
}

.hero-photo {
  width: 100%;
  object-fit: cover;
}

.hero-content {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  text-align: center;
}

.hero-heading {
  margin: 0 0 1.25rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}

.hero-heading-teal {
  display: block;
  color: var(--color-hero-title);
  font-weight: 400;
}

.hero-heading-dark {
  color: var(--color-hero-title);
  font-weight: 700;
}

.hero-heading-green {
  color: var(--color-green);
  font-weight: 700;
}

.hero-text {
  margin: 0 0 1.75rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 1rem;
}

.hero-text-strong {
  font-weight: 700;
  font-style: italic;
}

/* Price card */
.price-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--color-price-bg);
  text-align: left;
}

.price-card-info {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1rem;
  border-right: 2px solid rgba(2, 102, 52, 0.15);
  text-align: right;
}

.price-card-title {
  margin: 0 0 0.3rem;
  color: var(--color-hero-title);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.price-card-subtitle {
  margin: 0;
  color: var(--color-subtitle-gray);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.3;
}

.price-card-value {
  display: flex;
  flex: 0 0 auto;
  align-items: flex-end;
  gap: 0.15rem;
  margin: 0;
  padding-left: 0.25rem;
  color: var(--color-hero-title);
  line-height: 1;
}

.price-rs {
  padding-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.price-number {
  font-weight: 700;
  font-size: 3rem;
}

.price-period {
  padding-bottom: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
}

.price-slash {
  font-weight: 300;
}

@media (min-width: 992px) {
  .hero-section {
    display: grid;
    grid-template-columns: minmax(20rem, 30rem) minmax(26rem, 40rem);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
    padding-bottom: 0;
  }

  .hero-media {
    order: 2;
    margin-bottom: 0;
  }

  .hero-photo {
    border-radius: 1.5rem;
  }

  .hero-content {
    order: 1;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-heading {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }
}

/* Divider between sections */
.section-divider {
  width: 80%;
  max-width: 26rem;
  height: 2px;
  margin: 0 auto 1.5rem;
  border: 0;
  background: var(--color-gray);
}

@media (min-width: 992px) {
  .section-divider {
    width: calc(100% - 2.5rem);
    max-width: 75rem;
    margin: 2rem auto;
  }
}

/* Agenda section */
.agenda-section {
  padding-bottom: 1.5rem;
}

.agenda-content {
  max-width: 30rem;
  margin: 0 auto 1.75rem;
  padding-inline: 1.25rem;
  text-align: center;
}

.agenda-heading {
  margin: 0 0 1rem;
  color: var(--color-hero-title);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
}

.agenda-heading-line {
  display: block;
}

.agenda-heading-bold {
  font-weight: 700;
}

.agenda-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 1rem;
}

.agenda-media {
  width: 100%;
}

.agenda-photo {
  width: 100%;
  object-fit: cover;
}

/* Reason cards */
.reasons-band {
  width: 100%;
  margin-top: 2.5rem;
  padding: 2.5rem 1.25rem;
  background: var(--color-warm-bg);
  overflow: hidden;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 26rem;
  margin-inline: auto;
}

.reason-card {
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

.reason-icon {
  width: 2.75rem;
  height: auto;
  margin-bottom: 1rem;
}

.reason-heading {
  margin: 0 0 0.75rem;
  color: var(--color-hero-title);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.3;
}

.reason-heading-line {
  display: block;
}

.reason-heading-bold {
  font-weight: 700;
}

.reason-heading-lg {
  display: block;
  font-weight: 700;
  font-size: 1.35rem;
}

.reason-heading-sm {
  display: block;
  margin-top: 0.15rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.reason-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.9rem;
}

/* Agenda closing photo (wave transition) */
.agenda-closing {
  position: relative;
  margin: 2.5rem -1.25rem -2.5rem;
}

.agenda-wave {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2.5rem;
  line-height: 0;
}

.agenda-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.agenda-closing-photo {
  display: block;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .agenda-section {
    display: grid;
    grid-template-columns: minmax(26rem, 40rem) minmax(20rem, 30rem);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 1.25rem;
    padding-bottom: 2.5rem;
  }

  .agenda-media {
    order: 1;
  }

  .agenda-photo {
    border-radius: 1.5rem;
  }

  .agenda-content {
    order: 2;
    max-width: none;
    margin-bottom: 0;
    padding-inline: 0;
  }

  .agenda-heading {
    font-size: 2.5rem;
  }

  .agenda-text {
    font-size: 1.05rem;
  }

  .reasons-band {
    grid-column: 1 / -1;
    order: 3;
    display: flex;
    align-items: stretch;
    margin-top: 1rem;
    padding: 0;
    border-radius: 1.5rem;
  }

  .reasons-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex: 1 1 56%;
    max-width: none;
    gap: 1.75rem;
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(2, 102, 52, 0.12);
  }

  .agenda-closing {
    flex: 1 1 44%;
    margin: 0;
  }

  .agenda-wave {
    display: none;
  }

  .agenda-closing-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Ecossistema */
.eco-section {
  padding: 1.5rem 1.25rem;
}

.eco-intro {
  max-width: 30rem;
  margin-bottom: 2rem;
  text-align: left;
}

.eco-eyebrow {
  margin: 0 0 0.6rem;
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eco-heading {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.25;
}

.eco-heading-line {
  display: block;
}

.eco-heading-bold {
  color: var(--color-green);
  font-weight: 700;
}

.eco-subtitle {
  margin: 0;
  color: var(--color-text-gray);
  font-weight: 400;
  font-size: 0.95rem;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 30rem;
  margin: 0 auto 2rem;
}

.eco-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 1rem;
  border-top: 3px solid var(--color-green);
  border-radius: 0.85rem;
  background: #F2F2F2;
  text-align: center;
  transition: background-color 0.25s ease;
}

.eco-card-logo {
  display: block;
  height: 2.25rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1rem;
}

.eco-card-logo-hover {
  display: none;
}

.eco-card-text {
  margin: 0;
  color: var(--color-text-gray);
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: color 0.25s ease;
}

.eco-card:hover,
.eco-card:focus-within {
  background: var(--color-hero-title);
}

.eco-card:hover .eco-card-logo-default,
.eco-card:focus-within .eco-card-logo-default {
  display: none;
}

.eco-card:hover .eco-card-logo-hover,
.eco-card:focus-within .eco-card-logo-hover {
  display: block;
}

.eco-card:hover .eco-card-text,
.eco-card:focus-within .eco-card-text {
  color: #fff;
}

@media (min-width: 992px) {
  .eco-section {
    max-width: 75rem;
    margin-inline: auto;
    padding: 2.5rem 1.25rem;
  }

  .eco-intro {
    max-width: 34rem;
    margin-bottom: 2.5rem;
  }

  .eco-heading {
    font-size: 2.5rem;
  }

  .eco-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    margin-bottom: 0;
    gap: 1.5rem;
  }

  .eco-card {
    padding: 2rem 1.25rem;
  }
}

/* Como funciona */
.funciona-section {
  padding-bottom: 1.5rem;
}

.funciona-media {
  width: 100%;
}

.funciona-photo {
  display: block;
  width: 100%;
  object-fit: cover;
}

.funciona-content {
  padding: 2rem 1.25rem 2.5rem;
  background: var(--color-warm-bg);
}

.funciona-eyebrow {
  margin: 0 0 1.5rem;
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.funciona-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.funciona-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.funciona-step-icon {
  flex: 0 0 auto;
  width: 2.75rem;
  height: auto;
}

.funciona-step-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.4;
}

.funciona-caption {
  margin: 0;
  color: var(--color-green);
  font-weight: 400;
  font-style: italic;
  font-size: 0.8rem;
  text-align: center;
}

@media (min-width: 992px) {
  .funciona-section {
    max-width: 75rem;
    margin-inline: auto;
    padding: 0 1.25rem 2.5rem;
  }

  .funciona-panel {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 1.5rem;
  }

  .funciona-media {
    flex: 1 1 45%;
  }

  .funciona-photo {
    height: 100%;
  }

  .funciona-content {
    flex: 1 1 55%;
    padding: 3rem 3rem;
    border-left: 1px solid rgba(2, 102, 52, 0.12);
  }

  .funciona-eyebrow {
    text-align: left;
  }

  .funciona-caption {
    text-align: left;
  }
}

/* História */
.history-section {
  padding: 1.5rem 1.25rem 0;
}

.history-intro {
  max-width: 26rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.history-heading {
  margin: 0 0 0.85rem;
  color: var(--color-hero-title);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
}

.history-heading-bold {
  color: var(--color-green);
  font-weight: 700;
}

.history-subtitle {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.95rem;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 26rem;
  margin: 0 auto 1.75rem;
}

.history-stat {
  padding: 1.5rem 1rem;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: background-color 0.25s ease;
}

.history-stat-value {
  margin: 0 0 0.35rem;
  color: var(--color-green);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  transition: color 0.25s ease;
}

.history-stat-label {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.35;
  transition: color 0.25s ease;
}

@media (hover: hover) {
  .history-stat:hover {
    background: var(--color-green);
  }

  .history-stat:hover .history-stat-value,
  .history-stat:hover .history-stat-label {
    color: #fff;
  }
}

.history-text {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.95rem;
  text-align: center;
}

.history-cities-title {
  margin: 0 0 1rem;
  color: var(--color-hero-title);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.history-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  padding: 0;
  list-style: none;
}

.history-city {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--color-green);
  border-radius: 999px;
  background: #fff;
  color: var(--color-hero-title);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

.history-city img {
  width: 0.9rem;
  height: auto;
}

.history-media {
  margin: 0 -1.25rem;
}

.history-photo {
  display: block;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .history-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 3rem;
    max-width: 75rem;
    margin-inline: auto;
    padding: 2.5rem 1.25rem;
  }

  .history-main {
    display: flex;
    flex-direction: column;
  }

  .history-intro {
    max-width: none;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .history-heading {
    font-size: 2.5rem;
  }

  .history-subtitle {
    font-size: 1.05rem;
  }

  .history-stats {
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .history-stat-value {
    font-size: 2.25rem;
  }

  .history-text {
    max-width: none;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .history-cities-title {
    text-align: left;
  }

  .history-cities {
    max-width: none;
    margin: 0;
    justify-content: flex-start;
  }

  .history-media {
    margin: 0;
  }

  .history-photo {
    height: 100%;
    border-radius: 1.5rem;
  }
}

/* Depoimentos */
.testimonials-section {
  padding: 2.5rem 1.25rem;
  background: var(--color-warm-bg);
}

.testimonials-intro {
  margin-bottom: 2rem;
}

.testimonials-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-green);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonials-heading {
  margin: 0 0 0.35rem;
  color: var(--color-text);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1;
}

.testimonials-script {
  margin: 0;
  color: var(--color-green);
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.15;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  padding: 1.75rem 1.5rem;
  border-left: 4px solid var(--color-testimonial-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
  width: 2.5rem;
  height: auto;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  margin: 0 0 1.25rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonial-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-author {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
}

.testimonial-name {
  margin: 0;
  color: var(--color-hero-title);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-location {
  margin: 0;
  color: var(--color-text-gray);
  font-weight: 400;
  font-size: 0.8rem;
}

.testimonial-stars {
  color: var(--color-green);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testimonials-caption {
  margin: 0;
  color: var(--color-text-gray);
  font-weight: 400;
  font-style: italic;
  font-size: 0.8rem;
  text-align: center;
}

@media (min-width: 992px) {
  .testimonials-section {
    max-width: 75rem;
    margin-inline: auto;
    padding: 3rem 1.25rem;
    border-radius: 1.5rem;
  }

  .testimonials-intro {
    max-width: 40rem;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
  }

  .testimonials-heading {
    font-size: 3.5rem;
  }

  .testimonials-script {
    font-size: 2.25rem;
  }

  .testimonials-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .testimonial-card {
    display: flex;
    flex-direction: column;
  }

  .testimonial-text {
    flex: 1 1 auto;
  }
}

/* Decisão */
.decision-section {
  padding: 3rem 0 0 0;
  background-image: url('../img/abraco.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.decision-content {
  max-width: 30rem;
  margin-inline: auto;
  text-align: center;
}

.decision-heading {
  margin: 0 0 1rem;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.25;
}

.decision-heading-line {
  display: block;
}

.decision-heading-teal {
  color: var(--color-hero-title);
}

.decision-heading-bold {
  color: var(--color-hero-title);
  font-weight: 700;
}

.decision-heading-accent {
  color: var(--color-green);
  font-weight: 700;
}

.decision-text {
  margin: 0 0 1.75rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.95rem;
}

.decision-section .price-card {
  max-width: 24rem;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 1rem;
  gap: 0.75rem;
}

.decision-section .price-card-info {
  padding-right: 0.75rem;
}

.decision-section .price-card-title {
  font-size: 0.85rem;
}

.decision-section .price-card-subtitle {
  font-size: 0.7rem;
}

.decision-section .price-rs {
  font-size: 0.95rem;
}

.decision-section .price-number {
  font-size: 2rem;
}

.decision-section .price-period {
  font-size: 0.85rem;
}

.decision-cta {
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
}

.decision-cta-light {
  display: block;
  color: var(--color-hero-title);
  font-weight: 400;
  font-size: 1rem;
}

.decision-cta-bold {
  display: block;
  color: var(--color-hero-title);
  font-weight: 700;
  font-size: 1rem;
}

.decision-wave {
  width: 100%;
  line-height: 0;
}

.decision-wave img {
  display: block;
  width: 100%;
}

@media (min-width: 992px) {
  .decision-section {
    padding-top: 2.5rem;
  }

  .decision-content {
    max-width: 36rem;
  }

  .decision-section .price-card {
    max-width: 26rem;
    margin-bottom: 1.25rem;
  }

  .decision-heading {
    margin-bottom: 0.75rem;
    font-size: 2.5rem;
  }

  .decision-text {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
  }

  .decision-cta {
    margin-bottom: 1.75rem;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 1.25rem 6rem;
  background: var(--color-cream);
  text-align: center;
}

.footer-logo {
  width: 10rem;
  margin: 0 auto 1.5rem;
}

.footer-address {
  margin: 0 0 0.5rem;
  color: var(--color-text-gray);
  font-weight: 400;
  font-size: 0.85rem;
}

.footer-phone {
  margin: 0;
  color: var(--color-hero-title);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .site-footer {
    padding-bottom: 7rem;
  }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.floating-cta .btn-cta-green {
  margin: 0;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.floating-cta-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 1rem;
  z-index: 1000;
}

.floating-cta-mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 8%;
  padding-right: 8%;
}

.floating-cta-mobile .btn-cta-green {
  width: 100%;
  justify-content: center;
  margin: 0;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}
