@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --g: #03582b;
  --g-lt: #05703a;
  --g-10: rgba(3, 88, 43, 0.08);
  --g-20: rgba(3, 88, 43, 0.16);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --eout: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme='dark'] {
  --bg: #080d09;
  --bg2: #0d1510;
  --t1: #edf4ef;
  --t2: rgba(237, 244, 239, 0.55);
  --t3: rgba(237, 244, 239, 0.28);
  --ln: rgba(237, 244, 239, 0.08);
  --ln2: rgba(237, 244, 239, 0.14);
  --acc: #5db87a;
  --nav: rgba(8, 13, 9, 0.94);
  --sov: linear-gradient(
    105deg,
    rgba(5, 8, 6, 0.93) 0%,
    rgba(5, 8, 6, 0.64) 44%,
    rgba(5, 8, 6, 0.22) 70%,
    rgba(5, 8, 6, 0.5) 100%
  );
  --vig: linear-gradient(to top, #080d09 0%, transparent 100%);
}

[data-theme='light'] {
  --bg: #f8fbf8;
  --bg2: #ffffff;
  --t1: #0b1a0f;
  --t2: rgba(11, 26, 15, 0.55);
  --t3: rgba(11, 26, 15, 0.34);
  --ln: rgba(11, 26, 15, 0.07);
  --ln2: rgba(11, 26, 15, 0.13);
  --acc: var(--g);
  --nav: rgba(248, 251, 248, 0.96);
  --sov: linear-gradient(
    105deg,
    rgba(244, 250, 244, 0.96) 0%,
    rgba(244, 250, 244, 0.72) 44%,
    rgba(244, 250, 244, 0.2) 70%,
    rgba(244, 250, 244, 0.48) 100%
  );
  --vig: linear-gradient(to top, #f8fbf8 0%, transparent 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.07s;
}
.d2 {
  transition-delay: 0.14s;
}
.d3 {
  transition-delay: 0.21s;
}
.d4 {
  transition-delay: 0.28s;
}
.d5 {
  transition-delay: 0.35s;
}
.d6 {
  transition-delay: 0.42s;
}
.d7 {
  transition-delay: 0.49s;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition:
    background 0.4s,
    height 0.32s;
}
.nav.scrolled {
  height: 60px;
  background: var(--nav);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--ln);
}

.logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition:
    height 0.32s,
    filter 0.32s;
}
[data-theme='light'] .logo-img {
  filter: none;
}
.nav.scrolled .logo-img {
  height: 46px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.nav-menu a {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  padding: 7px 13px;
  border-radius: 2px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav.scrolled .nav-menu a {
  color: var(--t2);
}
.nav-menu a.active {
  color: var(--acc) !important;
}
.nav-menu a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
}
.nav.scrolled .nav-menu a:hover {
  color: var(--t1) !important;
  background: rgba(0, 0, 0, 0.04);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: var(--acc);
  border-radius: 50%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.nav.scrolled .btn-icon {
  border-color: var(--ln2);
  background: transparent;
  color: var(--t2);
}
.btn-icon:hover {
  border-color: var(--acc);
  color: var(--acc);
}
.btn-enroll {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g);
  border: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-enroll:hover {
  background: var(--g-lt);
  transform: translateY(-1px);
}
.btn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.btn-hamburger span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  display: block;
  transition: all 0.26s;
}
.nav.scrolled .btn-hamburger span {
  background: var(--t1);
}
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.26s;
}
.mobile-overlay.open {
  display: flex;
  opacity: 1;
}
.mobile-overlay a {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 40px;
  border-bottom: 1px solid var(--ln);
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}
.mobile-overlay a:hover,
.mobile-overlay a.active {
  color: var(--acc);
}
.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--t2);
  cursor: pointer;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 9s ease;
}
.slide.active .slide-bg {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--sov);
}
.slide-vignette {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  z-index: 2;
  background: var(--vig);
}
.slide-body {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  padding: 0 5vw 110px;
}
.slide-inner {
  max-width: 720px;
}

.s-badge,
.s-title,
.s-desc,
.s-ctas {
  opacity: 0;
  transform: translateY(18px);
}
.slide.active .s-badge {
  animation: sIn 0.6s var(--ease) 0.15s forwards;
}
.slide.active .s-title {
  animation: sIn 0.72s var(--ease) 0.28s forwards;
}
.slide.active .s-desc {
  animation: sIn 0.6s var(--ease) 0.44s forwards;
}
.slide.active .s-ctas {
  animation: sIn 0.6s var(--ease) 0.54s forwards;
}
@keyframes sIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.s-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.s-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acc);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.s-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.s-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 5.8vw, 82px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
[data-theme='light'] .s-title {
  color: var(--t1);
}
.s-title em {
  font-style: normal;
  color: var(--acc);
}
.s-title .ol {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.26);
  color: transparent;
}
[data-theme='light'] .s-title .ol {
  -webkit-text-stroke: 2px var(--t3);
}

.s-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(237, 244, 239, 0.66);
  max-width: 480px;
  margin-bottom: 32px;
}
[data-theme='light'] .s-desc {
  color: var(--t2);
}
.s-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g);
  border: none;
  padding: 13px 24px;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.5s;
}
.btn-solid:hover::after {
  transform: translateX(120%);
}
.btn-solid:hover {
  background: var(--g-lt);
  transform: translateY(-2px);
}
.arrow-ico {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  transition: transform 0.2s;
}
.btn-solid:hover .arrow-ico {
  transform: rotate(45deg);
}
.btn-ol {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 13px 22px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(6px);
}
[data-theme='light'] .btn-ol {
  color: var(--t2);
  border-color: var(--ln2);
}
.btn-ol:hover {
  border-color: var(--acc);
  color: var(--acc);
  background: var(--g-10);
}
.play-ico {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-ctrl {
  position: absolute;
  bottom: 42px;
  left: 5vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.dot-track {
  display: flex;
  gap: 7px;
  align-items: center;
}
.s-dot {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.s-dot.active {
  width: 40px;
  background: var(--acc);
}
.s-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.44);
}
.arrow-wrap {
  display: flex;
  gap: 6px;
}
.s-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}
.s-arrow:hover {
  border-color: var(--acc);
  color: var(--acc);
}
.slide-counter {
  position: absolute;
  right: 5vw;
  bottom: 46px;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.slide-counter strong {
  font-size: 16px;
  font-weight: 300;
  color: var(--acc);
}
.scroll-cue {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue span {
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.24);
}
.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.scroll-wheel {
  width: 2px;
  height: 4px;
  background: var(--acc);
  border-radius: 2px;
  animation: sw 2s ease-in-out infinite;
}
@keyframes sw {
  0% {
    opacity: 1;
    transform: none;
  }
  80% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 0;
  }
}
.slide-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  height: 2px;
  background: var(--g);
  width: 0%;
}

/* ── STATS ── */
.stats-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--ln);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 5vw;
}
.stat-cell {
  padding: 26px 20px;
  border-right: 1px solid var(--ln);
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: default;
  transition: background 0.2s;
  position: relative;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s;
}
.stat-cell:hover {
  background: var(--g-10);
}
.stat-cell:hover::after {
  transform: scaleX(1);
}
.stat-val {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--acc);
  line-height: 1;
}
.stat-val sup {
  font-size: 13px;
  font-weight: 600;
}
.stat-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ── SECTION ── */
.sec {
  padding: 100px 5vw;
  position: relative;
}
.sec-lbl {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.sec-lbl::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--acc);
  border-radius: 1px;
  flex-shrink: 0;
}
.sec-lbl span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--acc);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.sec-h {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--t1);
}
.sec-h em {
  font-style: normal;
  color: var(--acc);
}
.sec-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--t2);
  max-width: 460px;
}
.sec-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ── SOBRE ── */
#sobre {
  background: var(--bg);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--ln);
}
.sobre-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition:
    transform 0.7s,
    filter 0.5s;
}
.sobre-img:hover img {
  transform: scale(1.03);
  filter: grayscale(0%);
}
.sobre-img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--g);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 2px;
}
.sobre-content .sec-lbl {
  margin-bottom: 14px;
}
.sobre-num {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--ln2);
  line-height: 0.9;
  margin-bottom: 12px;
}
.sobre-h {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t1);
  line-height: 1.2;
  margin-bottom: 16px;
}
.sobre-h em {
  font-style: normal;
  color: var(--acc);
}
.sobre-p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--t2);
}

/* Missão/Visão — dois blocos lado a lado, sem caixas */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--ln);
}
.mv-block .sec-lbl {
  margin-bottom: 12px;
}
.mv-num {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--ln2);
  line-height: 0.9;
  margin-bottom: 10px;
}
.mv-h {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--t1);
  line-height: 1.2;
  margin-bottom: 14px;
}
.mv-h em {
  font-style: normal;
  color: var(--acc);
}
.mv-p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--t2);
}
.mv-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--t1);
  padding-left: 16px;
  border-left: 2px solid var(--acc);
  margin-top: 16px;
}

/* Valores — lista horizontal dividida por linhas */
.val-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--ln);
}
.val-item {
  padding: 28px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  border-right: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  transition: background 0.2s;
  cursor: default;
}
.val-item:last-child {
  border-right: none;
}
.val-item:hover {
  background: var(--g-10);
}
.val-ico {
  font-size: 22px;
  color: var(--t3);
  transition: color 0.2s;
}
.val-item:hover .val-ico {
  color: var(--acc);
}
.val-name {
  font-family: 'Poppins', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: color 0.2s;
}
.val-item:hover .val-name {
  color: var(--t1);
}

/* ── ÁREAS — cards em grid, sem tabs ── */
#areas {
  background: var(--bg2);
}

.areas-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 52px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ln);
  border-radius: 0;
  overflow: hidden;
}
.area-card {
  padding: 40px 36px;
  border-right: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
/* Remove right border on last col, remove bottom on last row */
.area-card:nth-child(3n) {
  border-right: none;
}
.area-card:nth-last-child(-n + 3) {
  border-bottom: none;
}
/* For 6 cards in 3-col grid: last row is cards 4-6 */
.area-card:hover {
  background: var(--g-10);
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--g);
  transition: height 0.38s var(--eout);
}
.area-card:hover::before {
  height: 100%;
}

.area-card-num {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.14em;
}
.area-card-ico {
  font-size: 32px;
  color: var(--acc);
  transition: transform 0.25s;
}
.area-card:hover .area-card-ico {
  transform: scale(1.1);
}
.area-card-h {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.area-card-p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--t2);
  flex: 1;
}
.area-card-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.prog-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--t3);
  padding: 3px 9px;
  border: 1px solid var(--ln2);
  border-radius: 100px;
  transition: all 0.18s;
}
.area-card:hover .prog-tag {
  border-color: var(--g);
  color: var(--acc);
}
.area-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap 0.2s;
}
.area-card-cta .mdi {
  font-size: 14px;
  transition: transform 0.2s;
}
.area-card:hover .area-card-cta {
  gap: 9px;
}
.area-card:hover .area-card-cta .mdi {
  transform: translateX(3px);
}

/* ── SOLUÇÕES ── */
#solucoes {
  background: var(--bg);
}

/* 2+2+1 layout — mais dinâmico */
.sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ln);
}
.sol-item {
  padding: 44px 40px;
  border-right: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.22s;
  position: relative;
  overflow: hidden;
}
.sol-item:nth-child(2n) {
  border-right: none;
}
.sol-item:hover {
  background: var(--g-10);
}
.sol-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s;
}
.sol-item:hover::before {
  transform: scaleX(1);
}
/* Wide item */
.sol-wide {
  grid-column: 1/-1;
  border-right: none;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
}
.sol-num {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.14em;
}
.sol-ico {
  font-size: 28px;
  color: var(--acc);
  transition: transform 0.22s;
}
.sol-item:hover .sol-ico {
  transform: scale(1.08);
}
.sol-h {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
}
.sol-p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--t2);
  flex: 1;
}
.sol-lnk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: gap 0.2s;
  margin-top: auto;
}
.sol-lnk .mdi {
  transition: transform 0.2s;
}
.sol-item:hover .sol-lnk {
  gap: 9px;
}
.sol-item:hover .sol-lnk .mdi {
  transform: translateX(3px);
}
.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cpill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--ln2);
  border-radius: 100px;
  padding: 6px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--t2);
  transition: all 0.18s;
}
.cpill .mdi {
  font-size: 13px;
  color: var(--acc);
}
.cpill:hover {
  border-color: var(--g);
  color: var(--t1);
  background: var(--g-10);
  transform: translateY(-2px);
}

/* Metodologia — full-width, dividido vertical */
.met-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  margin-top: 72px;
}
.met-left {
  background: var(--g);
  padding: 56px 52px;
  position: relative;
  overflow: hidden;
}
.met-left::after {
  content: '';
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.met-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.met-h {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.met-p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.64);
}
.met-right {
  background: var(--bg2);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--ln);
}
.met-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 3px;
  transition: background 0.18s;
  cursor: default;
}
.met-row:hover {
  background: var(--g-10);
}
.met-chk {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--acc);
}
.met-txt {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  transition: color 0.18s;
}
.met-row:hover .met-txt {
  color: var(--t1);
}

/* Diferenciais — 5 cols horizontal */
.dif-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  margin-top: 72px;
}
.dif-item {
  padding: 36px 24px;
  border-right: 1px solid var(--ln);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  cursor: default;
}
.dif-item:last-child {
  border-right: none;
}
.dif-item:hover {
  background: var(--g-10);
}
.dif-ico {
  font-size: 26px;
  color: var(--acc);
  transition: transform 0.2s;
}
.dif-item:hover .dif-ico {
  transform: scale(1.08);
}
.dif-h {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--t1);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.dif-p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--t2);
}

/* Impacto — números grandes, sem caixas */
.impacto {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--ln);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.impacto-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.impacto-dot {
  width: 6px;
  height: 6px;
  background: var(--acc);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.impacto-lbl span {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.impacto-h {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 800;
  color: var(--t1);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.impacto-h em {
  font-style: normal;
  color: var(--acc);
}
.impacto-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.82;
  color: var(--t2);
}
.impacto-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.i-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ln);
}
.i-stat:first-child {
  border-top: 1px solid var(--ln);
}
.i-val {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.i-val sup {
  font-size: 14px;
}
.i-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--t2);
  line-height: 1.5;
}

/* ── CONTACTO ── */
#contacto {
  background: var(--bg2);
}
.contacto-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
}
.cf-wrap {
  padding: 52px 48px;
  border-right: 1px solid var(--ln);
}
.cf-h {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 5px;
}
.cf-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--t2);
  margin-bottom: 28px;
  line-height: 1.6;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.fg label {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.fg input,
.fg select,
.fg textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ln2);
  padding: 9px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-bottom-color: var(--g);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--t3);
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2303582b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 22px;
  cursor: pointer;
}
.fg textarea {
  resize: vertical;
  min-height: 88px;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-priv {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
}
.form-priv input[type='checkbox'] {
  width: 14px;
  height: 14px;
  accent-color: var(--g);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}
.form-priv label {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--t3);
  line-height: 1.6;
  cursor: pointer;
}
.form-priv label a {
  color: var(--acc);
}
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g);
  border: none;
  padding: 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--g-lt);
}
.form-ok {
  display: none;
  text-align: center;
  padding: 36px 16px;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}
.form-ok.show {
  display: flex;
}
.form-ok-ico {
  font-size: 48px;
  color: var(--acc);
}
.form-ok h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
}
.form-ok p {
  font-size: 13px;
  font-weight: 300;
  color: var(--t2);
  max-width: 260px;
  line-height: 1.7;
}
.ci-wrap {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
}
.ci-map {
  flex: 1;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.ci-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.ci-map:hover iframe {
  filter: grayscale(0%);
}
.ci-map-ov {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 60%, var(--bg2) 100%);
}
.ci-details {
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ci-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--t1);
}
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.ci-ico {
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--acc);
  margin-top: 1px;
}
.ci-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--acc);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.ci-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--t2);
  line-height: 1.5;
}
.ci-val a {
  color: var(--t2);
  transition: color 0.2s;
}
.ci-val a:hover {
  color: var(--acc);
}
.ci-socials {
  display: flex;
  gap: 7px;
}
.sb {
  width: 32px;
  height: 32px;
  border: 1px solid var(--ln2);
  border-radius: 5px;
  background: none;
  color: var(--t3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.sb:hover {
  border-color: var(--g);
  color: var(--acc);
  background: var(--g-10);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
.footer {
  background: #03100a;
  padding: 48px 5vw 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(93, 184, 122, 0.08);
}
.f-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  margin-bottom: 16px;
  display: block;
}
.f-desc {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(237, 244, 239, 0.32);
}
.f-col-h {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #5db87a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.f-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-links a {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(237, 244, 239, 0.35);
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.f-links a:hover {
  color: #5db87a;
  padding-left: 4px;
}
.f-links a .mdi {
  font-size: 11px;
  opacity: 0.55;
}
.footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 9px;
}
.f-copy {
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(237, 244, 239, 0.22);
}
.f-copy strong {
  color: rgba(93, 184, 122, 0.6);
  font-weight: 500;
}
.f-bot-links {
  display: flex;
  gap: 14px;
}
.f-bot-links a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(237, 244, 239, 0.22);
  transition: color 0.2s;
}
.f-bot-links a:hover {
  color: #5db87a;
}

/* ── LANG ── */
.lang-sw {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 33px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.74);
  transition: all 0.2s;
}
.nav.scrolled .lang-btn {
  background: transparent;
  border-color: var(--ln2);
  color: var(--t2);
}
.lang-btn:hover,
.lang-sw.open .lang-btn {
  border-color: var(--acc);
  color: var(--acc);
  background: var(--g-10);
}
.lang-btn .mdi {
  font-size: 13px;
}
.lang-chev {
  font-size: 12px !important;
  transition: transform 0.2s;
}
.lang-sw.open .lang-chev {
  transform: rotate(180deg);
}
.lang-dd {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  min-width: 144px;
  background: var(--bg2);
  border: 1px solid var(--ln2);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  transition:
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease),
    visibility 0.18s;
  z-index: 9999;
}
.lang-sw.open .lang-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.lang-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--t2);
  cursor: pointer;
  border-bottom: 1px solid var(--ln);
  transition:
    background 0.16s,
    color 0.16s;
  text-decoration: none;
}
.lang-opt:last-child {
  border-bottom: none;
}
.lang-opt:hover {
  background: var(--g-10);
  color: var(--t1);
}
.lang-opt.active {
  color: var(--acc);
  background: var(--g-10);
}
.lang-opt.active::after {
  content: '✓';
  margin-left: auto;
  font-size: 10px;
  color: var(--acc);
}
.lang-flag {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ── SHEET ── */
.sheet-bd {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s,
    visibility 0.28s;
}
.sheet-bd.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sheet {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1001;
  width: 100%;
  max-width: 498px;
  background: var(--bg2);
  border-left: 1px solid var(--ln);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
.sheet.open {
  transform: none;
}
.sh-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--ln);
  background: var(--bg);
  flex-shrink: 0;
}
.sh-t {
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 2px;
}
.sh-st {
  font-size: 12px;
  font-weight: 300;
  color: var(--t3);
}
.sh-x {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--ln2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--t2);
  transition: all 0.18s;
  margin-top: 2px;
}
.sh-x:hover {
  border-color: var(--g);
  color: var(--acc);
}
.sh-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sh-body::-webkit-scrollbar {
  width: 3px;
}
.sh-body::-webkit-scrollbar-thumb {
  background: var(--ln2);
  border-radius: 2px;
}
.sh-slbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--t3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sh-snum {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  background: var(--g);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 9px;
}
.sh-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sh-sw {
  position: relative;
}
.sh-sel,
.sh-inp {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ln2);
  padding: 9px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--t1);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.sh-sel {
  padding-right: 22px;
  cursor: pointer;
}
.sh-sel:focus,
.sh-inp:focus {
  border-bottom-color: var(--g);
}
.sh-sw-ico {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--t3);
  pointer-events: none;
}
.prog-card {
  background: var(--bg);
  border-left: 2px solid var(--g);
  padding: 12px 16px;
  border-radius: 0 3px 3px 0;
  margin-top: 4px;
  animation: fUp 0.24s var(--eout) both;
}
@keyframes fUp {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pc-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.pc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
  line-height: 1.3;
}
.pc-price {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--acc);
  white-space: nowrap;
  flex-shrink: 0;
}
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 9px;
}
.pc-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 7px 9px;
  background: var(--bg2);
  border-radius: 2px;
}
.pc-item .mdi {
  font-size: 13px;
  color: var(--acc);
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-item-lbl {
  font-size: 9px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1px;
}
.pc-item-val {
  font-family: 'Poppins', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--t1);
}
.pc-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--t2);
  line-height: 1.7;
}
.sh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 11px;
}
.sh-full {
  grid-column: 1/-1;
}
.sh-summ {
  background: var(--bg);
  border-left: 2px solid var(--g);
  padding: 12px 15px;
  border-radius: 0 3px 3px 0;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--t2);
}
.sh-summ strong {
  color: var(--t1);
}
.sh-summ .s-price {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--acc);
  margin: 9px 0 0;
  display: block;
}
.sh-priv {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 9px;
}
.sh-priv input[type='checkbox'] {
  width: 13px;
  height: 13px;
  accent-color: var(--g);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}
.sh-priv label {
  font-size: 11px;
  font-weight: 300;
  color: var(--t3);
  line-height: 1.6;
  cursor: pointer;
}
.sh-priv label a {
  color: var(--acc);
}
.sh-succ {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  text-align: center;
  padding: 36px 16px;
}
.sh-succ-ico {
  font-size: 52px;
  color: var(--acc);
  line-height: 1;
}
.sh-succ-t {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--t1);
}
.sh-succ-p {
  font-size: 13px;
  font-weight: 300;
  color: var(--t2);
  max-width: 280px;
  line-height: 1.72;
}
.sh-ftr {
  padding: 13px 24px 18px;
  border-top: 1px solid var(--ln);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex-shrink: 0;
}
.sh-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sh-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ln2);
  transition: all 0.24s;
  flex-shrink: 0;
}
.sh-dot.active {
  background: var(--g);
  transform: scale(1.3);
}
.sh-dot.done {
  background: var(--g-dim, #024820);
}
.sh-line {
  flex: 1;
  height: 1px;
  background: var(--ln);
  max-width: 48px;
}
.sh-acts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.sh-back {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t2);
  background: none;
  border: 1px solid var(--ln2);
  padding: 9px 15px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
.sh-back:hover {
  border-color: var(--t1);
  color: var(--t1);
}
.sh-next {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--g);
  border: none;
  padding: 9px 19px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.sh-next:hover {
  background: var(--g-lt);
}
.sh-next:disabled {
  opacity: 0.36;
  cursor: not-allowed;
  pointer-events: none;
}
.sh-next .mdi {
  font-size: 14px;
  transition: transform 0.18s;
}
.sh-next:hover .mdi {
  transform: translateX(3px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .sobre-grid,
  .mv-grid,
  .impacto {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }
  .area-card:nth-child(3n) {
    border-right: 1px solid var(--ln);
  }
  .area-card:nth-child(2n) {
    border-right: none;
  }
  .contacto-wrap {
    grid-template-columns: 1fr;
  }
  .cf-wrap {
    border-right: none;
    border-bottom: 1px solid var(--ln);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 1024px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .dif-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .dif-item:nth-child(3n) {
    border-right: none;
  }
  .sol-grid {
    grid-template-columns: 1fr;
  }
  .sol-item {
    border-right: none;
  }
  .met-split {
    grid-template-columns: 1fr;
  }
  .met-right {
    border-left: none;
    border-top: 1px solid var(--ln);
  }
}
@media (max-width: 768px) {
  .nav-menu,
  .btn-enroll {
    display: none;
  }
  .btn-hamburger {
    display: flex;
  }
  .sec {
    padding: 72px 5vw;
  }
  .sec-hdr {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }
  .s-title {
    font-size: 34px;
  }
  .s-arrow {
    display: none;
  }
  .val-strip {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .area-card:nth-child(n) {
    border-right: none;
  }
  .dif-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bot {
    flex-direction: column;
    align-items: flex-start;
  }
  .sh-form-grid {
    grid-template-columns: 1fr;
  }
  .pc-grid {
    grid-template-columns: 1fr;
  }
  .fg-row {
    grid-template-columns: 1fr;
  }
  .sheet {
    max-width: 100%;
    border-left: none;
  }
  .areas-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .val-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
