:root {
  /* Paleta clara com verde + cinza */
  --brand-green: #8DC63F;

  /* principal (ajustado ao logo) */
  --brand-green-600: #6BA62E;

  /* hover/escuro (derivado) */
  --brand-gray-900: #151718;

  /* textos fortes */
  --brand-gray-900: #151718;
  --brand-gray-700: #3d4347;
  --brand-gray-500: #6b757d;
  --brand-gray-200: #e8ecef;
  --brand-gray-100: #f4f7f8;

  /* fundo suave */
  --brand-accent: #ffd166;

  /* acento opcional, quente */
  --radius: 1.25rem;
  --shadow: 0 10px 30px rgba(16, 24, 40, .08);
  --header-h: 72px;
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  color: var(--brand-gray-900);
  background: #fff;
}


/* Header */
.navbar-toggler {
  border: none;
  background-color: var(--brand-green);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  background-color: var(--brand-green-600);
  outline: none;
  box-shadow: 0 0 0 3px rgba(141, 198, 63, .25);
}

.navbar {
  box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
  background: rgba(255, 255, 255, 0.712) !important;
  backdrop-filter: saturate(180%) blur(8px);
}

.btn-contact {
  border-radius: 999px;
  padding: .55rem 1rem;
  background-color: var(--brand-green);
  border-color: var(--brand-green);

  transition: all .2s;
}

.navbar .btn-contact:hover {
  transform: scale(1.1);
  background-color: var(--brand-green-600);
}

.btn-contact:hover {
  background-color: var(--brand-green-600);
  border-color: var(--brand-green-600);
}

.btn-contact:active {
  background-color: var(--brand-green-600) !important;
  border-color: var(--brand-green-600) !important;
}

.brand-logo {
  transition: height .25s ease, transform .25s ease;
}

.navbar.navbar-compact {
  padding-block: .35rem;
  background: #ffffff !important;
}

.navbar.navbar-compact .brand-logo {
  height: 60px;
  transform: translateZ(0);
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 4rem);
  background: linear-gradient(160deg, var(--brand-gray-100), #fff 60%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  background: #e9f7ef;
  color: var(--brand-green-600);
  border-radius: 999px;
  padding: .35rem .75rem;
}

.hero-title {
  font-weight: 800;
  letter-spacing: -.02em;
}

.hero p.lead {
  color: var(--brand-gray-700);
}

.hero .cta-group .btn {
  padding: .8rem 1.1rem;
  border-radius: 999px;
}

.hero-card {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Swiper hero */

.icon {
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 1.25rem;
}

.eyebrow {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--bs-gray-600);
}


/* Fullscreen hero slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider :is(.swiper, .swiper-slide) {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-slide {
  position: relative;
}

.hero-slider .swiper-slide>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay centralizado */
.hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 4rem);
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, .45) 0%,
      rgba(0, 0, 0, .25) 40%,
      rgba(0, 0, 0, .55) 100%);
}

.hero-slider .slide-overlay h1 {
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 900;
  max-width: 900px;
  text-transform: uppercase;
}

.hero-slider .slide-overlay p {
  max-width: 60ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
}

.hero-slider .slide-overlay .badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  font-weight: 600;
}

.hero-slider .slide-overlay .cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .25rem;
  justify-content: center;
}

.hero-slider .slide-overlay .cta .btn {
  border-radius: 999px;
}

/* Swiper UI */
.hero-slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .8);
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}


/* Swiper */

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet-active {
  background: var(--brand-green, var(--brand-green)) !important;
}

.overlay-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Section spacing */
section.section {
  padding: 6rem 0;
}

.section-title {
  font-weight: 800;
  letter-spacing: -.02em;
}

.section-subtitle {
  color: var(--brand-gray-700);
}


/* Cards */
.feature-card {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;

  transition: all .3s;
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e9f7ef;
  color: var(--brand-green-600);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 24, 40, .12);
}


/* Checklist */
.check {
  color: var(--brand-green-600);
}


/* Process timeline */
.step {
  display: flex;
  gap: 1rem;
}

.step .num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* ===== SISTEMA (seção escura com 3 planos) ===== */
.sistema {}

.sistema .eyebrow {
  letter-spacing: .35em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-green);
  background: rgba(141, 198, 63, .15);
  border-radius: 999px;
  padding: .5rem 1rem;
  display: inline-block;
}

.sistema-title {
  font-weight: 800;
}

.sistema .divider {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, .35);
  margin: 1.25rem auto 2rem;
}

.plan-card {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 1.25rem;
  min-height: 260px;
  box-shadow: var(--shadow);

  transition: all .3s;
}

.plan-card:hover {
  border-color: rgba(141, 198, 63, .85);
  box-shadow: 0 14px 34px rgba(16, 24, 40, .12);
  transform: translateY(-2px);
}

.plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-green);
  border: 2px solid rgba(255, 255, 255, .6);
  color: #ffffff;
  font-weight: 800;
}

.plan-badge i {
  font-size: 1.4rem;
}

.plan-card h5 {
  color: var(--brand-gray-900);
  letter-spacing: .08em;
  margin-top: .75rem;
}

.plan-card .list-unstyled {
  letter-spacing: .06em;
}


.btn-mint {
  background: var(--brand-green-600);
  border: none;
  font-weight: 500;
  color: var(--brand-gray-200);

  transition: all .3s;
}

.btn-mint:hover {
  background: var(--brand-green);
  color: var(--brand-gray-900);
}

/* CTA ribbon */
.ribbon {
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-green-600) 100%);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.badge-andamento {
  background: #fff5de;
  color: #e0b553;
  border: 1px solid #ffebbc;
}

.badge-concluida {
  background: #effaf3;
  color: #198754;
  border: 1px solid #d9efe1;
}



/* Form */
.form-control,
.form-select {
  border-radius: .75rem;
}

.btn-brand {
  background: var(--brand-green);
  color: #fff;
  border: none;
}

.btn-brand:hover {
  background: var(--brand-green-600);
  color: #fff;
}

.btn-ghost {
  border: 1px solid var(--brand-gray-200);
}

#consent.is-invalid {
  outline: 2px solid #dc3545;
  outline-offset: 2px;
}


/* Footer */
.btn-brand {
  background: var(--brand-green);
  color: #fff;
  border: none;
}

.btn-brand:hover {
  background: var(--brand-green-600);
}

footer {
  background: var(--brand-gray-100);
}

.footer-logo img {
  max-height: 48px;
}

.social-links a {
  color: var(--brand-gray-700);
  font-size: 1.25rem;
  margin-right: .75rem;
}

.social-links a:hover {
  color: var(--brand-green-600);
}


/* Utilities */
.rounded-2xl {
  border-radius: var(--radius) !important;
}

.shadow-soft {
  box-shadow: var(--shadow);
}

.slide-overlay .text-success {
  color: #95ff00 !important;

}

.text-success {
  color: var(--brand-green) !important;
}

/* altura muda conforme o tamanho da tela; largura se ajusta automaticamente */
.brand-logo {
  height: 50px;
  width: auto;
}

@media (min-width: 576px) {
  .brand-logo {
    height: 32px;
  }
}

/* SM (telefone grande) */
@media (min-width: 768px) {
  .brand-logo {
    height: 56px;
  }
}

/* MD (tablet) */
@media (min-width: 992px) {
  .brand-logo {
    height: 62px;
  }
}

/* LG (desktop) */
@media (min-width: 1200px) {
  .brand-logo {
    height: 68px;
  }
}