:root {
  --green: #0BD487;
  --green-dark: #0BD487;
  --navy: #0F1E36;
  --navy-2: #0F1E36;
  --text: #0F1E36;
  --muted: #617086;
  --soft: #f4f8f5;
  --white: #FFFFFF;
  --line: rgba(15, 30, 54, .1);
  --shadow: 0 24px 70px rgba(7, 20, 39, .14);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(7, 20, 39, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(7, 20, 39, .96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
}

.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: 154px;
  height: 54px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  opacity: .92;
  transition: .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
  transition: .25s ease;
}

.main-nav a:hover { color: var(--green); opacity: 1; }
.main-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 99px;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 92px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 78px 0 0 34%;
  background: url("banner-agro.jpg") center / cover no-repeat;
  z-index: -3;
  border-bottom-left-radius: 90px;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 24%, rgba(255,255,255,.18) 48%, rgba(7,20,39,.08) 100%);
}

.hero-shade {
  position: absolute;
  inset: 78px 0 0 0;
  background:
    radial-gradient(circle at 31% 44%, rgba(11, 212, 135, .16), transparent 18%),
    linear-gradient(100deg, #fff 0%, #fff 34%, rgba(255,255,255,.82) 49%, rgba(255,255,255,0) 68%);
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  top: 120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(11, 212, 135, .08);
  border-radius: 50%;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(0deg, #fff 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
}

.hero-grid {
  display: block;
}


.hero-copy {
  position: relative;
  max-width: 590px;
  padding: 34px 0;
  z-index: 2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -38px -36px -38px -42px;
  background:
    repeating-linear-gradient(120deg, rgba(15,30,54,.045) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.eyebrow span {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

.hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 950;
  color: var(--navy);
}

.hero h1 strong {
  display: block;
  color: var(--green);
}

.hero p {
  max-width: 530px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: #46566d;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn:hover { transform: translateY(-4px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0BD487);
  box-shadow: 0 18px 36px rgba(11, 212, 135, .32);
}

.btn-primary:hover { box-shadow: 0 25px 50px rgba(11, 212, 135, .42); }

.btn-ghost {
  color: var(--navy);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,30,54,.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(15, 30, 54, .08);
  color: #263a56;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(7, 20, 39, .06);
}

.trust-row i { color: var(--green); }

.hero-panel {
  position: relative;
  min-height: 430px;
}

.panel-card,
.mini-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.main-card {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(410px, 100%);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.icon-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 22px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(7, 20, 39, .22);
}

.main-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -.04em;
  font-weight: 950;
}

.main-card p {
  margin: 14px 0 0;
  color: #607086;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
}

.mini-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 18px;
  border-radius: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.mini-card i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
}

.mini-a { top: 58px; right: 45px; }
.mini-b { top: 170px; left: 40px; }

.audience-section {
  position: relative;
  padding: 70px 0 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(11,212,135,.08), transparent 35%),
    #fff;
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 15px;
  border-radius: 999px;
  background: rgba(11, 212, 135, .1);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 950;
}

.section-heading h2 strong { color: var(--green); }

.section-heading p {
  margin: 18px auto 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.audience-card {
  position: relative;
  min-height: 310px;
  padding: 38px 32px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 30, 54, .08);
  box-shadow: 0 18px 54px rgba(7, 20, 39, .08);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), rgba(11,212,135,.2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.audience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 74px rgba(7, 20, 39, .14);
  border-color: rgba(11, 212, 135, .28);
}

.audience-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 26px;
  background: #e9f8d6;
  color: var(--navy);
  font-size: 30px;
  transition: .3s ease;
}

.audience-card:hover .card-icon {
  color: #fff;
  background: var(--green);
  transform: rotate(-4deg) scale(1.05);
}

.audience-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-weight: 950;
}

.audience-card p {
  margin: 0 auto;
  max-width: 270px;
  color: #4e5e74;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }



.challenge-section {
  position: relative;
  padding: 104px 0 118px;
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 212, 135, .16), transparent 26%),
    radial-gradient(circle at 84% 62%, rgba(11, 212, 135, .11), transparent 28%),
    linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.challenge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0%, transparent 72%);
  opacity: .35;
  z-index: -2;
}

.challenge-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 680px;
  height: 680px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 212, 135, .12), transparent 62%);
  z-index: -1;
}

.challenge-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(35px);
  opacity: .3;
  pointer-events: none;
  z-index: -1;
}

.challenge-glow-a {
  left: -90px;
  top: 90px;
  background: var(--green);
}

.challenge-glow-b {
  right: -110px;
  bottom: 40px;
  background: #e9f8d6;
  opacity: .12;
}

.challenge-heading {
  max-width: 1180px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-kicker.dark {
  background: rgba(11, 212, 135, .12);
  color: var(--green);
  border: 1px solid rgba(11, 212, 135, .22);
}

.challenge-heading h2 {
  margin: 0;
  max-width: none;
  color: #fff;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 950;
  white-space: nowrap;
}

.challenge-heading h2 strong {
  display: inline;
  color: var(--green);
}

.challenge-heading p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
  text-align: center;
}

.challenge-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 330px minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
}

.challenge-list {
  display: grid;
  gap: 20px;
}

.challenge-card {
  position: relative;
  min-height: 112px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11, 212, 135, .14), rgba(5, 169, 106, .05)),
    rgba(255, 255, 255, .035);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}

.challenge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(11, 212, 135, .18), transparent);
  opacity: 0;
  transition: .3s ease;
}

.challenge-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 212, 135, .52);
  background:
    linear-gradient(135deg, rgba(11, 212, 135, .22), rgba(5, 169, 106, .08)),
    rgba(255, 255, 255, .055);
  box-shadow: 0 32px 84px rgba(0,0,0,.26);
}

.challenge-card:hover::before { opacity: 1; }

.challenge-icon {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(11, 212, 135, .12);
  color: var(--green);
  font-size: 28px;
  transition: .3s ease;
}

.challenge-card:hover .challenge-icon {
  color: var(--navy);
  background: var(--green);
  transform: scale(1.06) rotate(-3deg);
}

.challenge-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.94);
  font-size: 15px;
  line-height: 1.45;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
}

.challenge-center {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.diamond-wrap {
  position: relative;
  width: 295px;
  height: 295px;
  display: grid;
  place-items: center;
}

.diamond-wrap::before,
.diamond-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 42px;
  transform: rotate(45deg);
}

.diamond-wrap::before {
  background: rgba(11, 212, 135, .16);
  box-shadow: 0 30px 90px rgba(11, 212, 135, .16);
  animation: diamondPulse 3.8s ease-in-out infinite;
}

.diamond-wrap::after {
  inset: 28px;
  border: 18px solid #fff;
  background: rgba(11, 212, 135, .08);
  animation: ringGlow 3.8s ease-in-out infinite;
}

.diamond {
  position: relative;
  z-index: 2;
  width: 214px;
  height: 214px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 34px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #0F1E36, #0F1E36);
  border: 1px solid rgba(11, 212, 135, .22);
  box-shadow: inset 0 0 34px rgba(11,212,135,.08), 0 28px 70px rgba(0,0,0,.28);
  animation: diamondFloat 5.5s ease-in-out infinite;
}

.diamond-logo {
  display: block;
  width: 126px;
  max-width: 100%;
  height: auto;
  transform: rotate(-45deg);
  filter: drop-shadow(0 10px 24px rgba(11, 212, 135, .14));
}

@media (max-width: 1080px) {
  .challenge-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .challenge-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .challenge-heading h2,
  .challenge-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .challenge-heading h2 {
    white-space: normal;
  }

  .challenge-center {
    order: -1;
    min-height: 300px;
  }

  .challenge-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .challenge-section {
    padding: 74px 0 82px;
  }

  .challenge-heading {
    margin-bottom: 36px;
  }

  .challenge-list {
    grid-template-columns: 1fr;
  }

  .challenge-card {
    min-height: auto;
    grid-template-columns: 54px 1fr;
    padding: 19px 18px;
    border-radius: 20px;
  }

  .challenge-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    font-size: 24px;
  }

  .challenge-card p {
    font-size: 13px;
  }

  .diamond-wrap {
    width: 238px;
    height: 238px;
  }

  .diamond-wrap::after {
    inset: 23px;
    border-width: 13px;
  }

  .diamond {
    width: 174px;
    height: 174px;
    border-radius: 28px;
  }

  .diamond-logo {
    width: 102px;
  }
}



@keyframes diamondPulse {
  0%, 100% {
    opacity: .42;
    transform: rotate(45deg) scale(1);
  }
  50% {
    opacity: .72;
    transform: rotate(45deg) scale(1.06);
  }
}

@keyframes ringGlow {
  0%, 100% {
    opacity: .96;
    box-shadow: 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(11,212,135,0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 22px rgba(255,255,255,.16), 0 0 40px rgba(11,212,135,.12);
  }
}

@keyframes diamondFloat {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(-8px);
  }
}
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero-bg {
    inset: 78px 0 0 22%;
    opacity: .9;
  }

  .hero-panel {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .main-card,
  .mini-card {
    position: static;
  }

  .main-card {
    width: auto;
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(7, 20, 39, .98);
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .main-nav a:hover { background: rgba(255,255,255,.06); }
  .main-nav a::after { display: none; }

  .audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand { width: 128px; }
  .brand img { width: 122px; }

  .hero {
    padding: 112px 0 54px;
  }

  .hero-bg {
    inset: 72px 0 0 0;
    border-bottom-left-radius: 0;
    opacity: .38;
  }

  .hero-bg::after {
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
  }

  .hero-shade {
    inset: 72px 0 0 0;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  }

  .hero-copy::before { inset: -22px -12px; }
  .hero h1 { font-size: clamp(43px, 15vw, 62px); }
  .hero p { font-size: 16px; }
  .btn { width: 100%; }
  .trust-row div { width: 100%; justify-content: center; }
  .hero-panel { grid-template-columns: 1fr; }
  .main-card { grid-column: auto; padding: 24px; }
  .main-card h2 { font-size: 22px; }

  .audience-section { padding: 56px 0 76px; }
  .audience-card { min-height: auto; padding: 32px 24px; }
}

/* === Seções adicionadas - Agrow | Versão moderna === */
.btn-light {
  color: var(--navy);
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 42px rgba(7, 20, 39, .18);
}

.btn-light:hover {
  color: var(--green-dark);
  box-shadow: 0 26px 58px rgba(7, 20, 39, .24);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(7, 20, 39, .25);
}

.btn-dark:hover {
  background: var(--navy-2);
  box-shadow: 0 26px 54px rgba(7, 20, 39, .34);
}

.section-kicker.light {
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
}

.solution-story {
  position: relative;
  padding: 92px 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 14%, rgba(255,255,255,.18), transparent 26%),
    radial-gradient(circle at 88% 58%, rgba(11,212,135,.36), transparent 28%),
    linear-gradient(135deg, var(--green) 0%, #0BD487 46%, var(--navy) 100%);
  overflow: hidden;
  isolation: isolate;
}

.solution-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .17;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
  z-index: -2;
}

.solution-story::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: inset 0 0 90px rgba(255,255,255,.08);
  z-index: -1;
}

.solution-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  left: 52%;
  bottom: -150px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.24);
  animation: slowSpin 22s linear infinite;
  z-index: -1;
}

.solution-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .78fr);
  align-items: center;
  gap: 68px;
}

.solution-narrative h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 950;
}

.solution-narrative h2 strong {
  color: var(--navy);
}

.solution-narrative p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.72;
  font-weight: 820;
  text-transform: uppercase;
}

.solution-btn { margin-top: 34px; }

.solution-dashboard {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  background: rgba(7, 20, 39, .72);
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: 0 30px 90px rgba(7,20,39,.32);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.solution-dashboard::before {
  content: "";
  position: absolute;
  inset: -45% auto auto -30%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(11,212,135,.24);
  filter: blur(35px);
}

.dashboard-topline,
.dashboard-core,
.dashboard-flow {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.dashboard-topline span {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 950;
}

.dashboard-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 950;
}

.dashboard-core {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 20px;
  padding: 30px 0 28px;
}

.core-ring {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.76));
  box-shadow: 0 22px 50px rgba(11,212,135,.23);
  animation: cardFloat 4.6s ease-in-out infinite;
}

.core-ring img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.dashboard-label {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
}

.dashboard-core h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.12;
  letter-spacing: -.05em;
  font-weight: 950;
}

.dashboard-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1.1fr;
  gap: 10px;
  align-items: center;
}

.dashboard-flow div {
  min-height: 74px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.86);
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
}

.dashboard-flow div:nth-child(2),
.dashboard-flow div:nth-child(4) {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.52);
}

.dashboard-flow i {
  color: var(--green);
  font-size: 18px;
}

.experience-section {
  position: relative;
  padding: 112px 0 118px;
  background:
    radial-gradient(circle at 8% 18%, rgba(11,212,135,.11), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f5faf7 100%);
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 60px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(11,212,135,.07);
  filter: blur(8px);
}

.experience-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(285px, 360px) 1fr;
  gap: 48px;
  align-items: start;
}

.experience-copy {
  position: sticky;
  top: 112px;
}

.experience-copy h2,
.mentors-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 950;
}

.experience-copy h2 strong,
.mentors-head h2 strong,
.learning-heading h2 strong {
  color: var(--green);
}

.experience-copy p,
.mentors-head p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 650;
}

.experience-copy .btn {
  margin-top: 30px;
}

.experience-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(184px, auto);
  gap: 18px;
}

.experience-card {
  position: relative;
  grid-column: span 2;
  min-height: 214px;
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,30,54,.08);
  box-shadow: 0 22px 66px rgba(7,20,39,.08);
  overflow: hidden;
  isolation: isolate;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
}

.experience-card.large { grid-column: span 3; grid-row: span 2; }
.experience-card.wide { grid-column: span 4; }

.experience-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(11,212,135,.14);
  filter: blur(3px);
  transition: transform .32s ease, opacity .32s ease;
  z-index: -1;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,212,135,.11), rgba(255,255,255,0) 42%);
  opacity: 0;
  transition: opacity .32s ease;
  z-index: -1;
}

.experience-card:hover {
  transform: translateY(-10px) rotate(-.5deg);
  border-color: rgba(11,212,135,.25);
  background: #fff;
  box-shadow: 0 34px 86px rgba(7,20,39,.13);
}

.experience-card:hover::before {
  transform: scale(1.15) translate(-8px, -8px);
  opacity: 1;
}

.experience-card:hover::after { opacity: 1; }

.card-count {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(15,30,54,.16);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.experience-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0BD487);
  font-size: 22px;
  box-shadow: 0 16px 36px rgba(11,212,135,.24);
  transition: transform .32s ease;
}

.experience-card:hover .experience-icon {
  transform: scale(1.08) rotate(-7deg);
}

.experience-card h3 {
  max-width: 300px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 950;
}

.experience-card p {
  max-width: 360px;
  margin: 0;
  color: #46566d;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 750;
}

.experience-card.large h3 { font-size: clamp(25px, 3vw, 38px); }
.experience-card.large .experience-icon { width: 76px; height: 76px; font-size: 30px; border-radius: 26px; }

.center-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.learning-roadmap {
  position: relative;
  padding: 112px 0 104px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(11,212,135,.17), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(11,212,135,.12), transparent 32%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
  overflow: hidden;
  isolation: isolate;
}

.roadmap-ambient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .34;
  mask-image: radial-gradient(circle at 50% 44%, #000, transparent 76%);
  z-index: -2;
}

.learning-roadmap::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -240px;
  bottom: -220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  z-index: -1;
}

.learning-heading h2,
.learning-heading p {
  color: #fff;
}

.learning-heading p {
  color: rgba(255,255,255,.72);
}

.roadmap-shell {
  display: grid;
  grid-template-columns: minmax(330px, .85fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 52px;
}

.roadmap-feature {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,255,255,.88));
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
  overflow: hidden;
  color: var(--navy);
}

.roadmap-feature::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(11,212,135,.14);
}

.feature-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.module-pill {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0BD487);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(11,212,135,.26);
}

.feature-label {
  color: #617065;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
}

.roadmap-feature h3 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.roadmap-feature p {
  position: relative;
  margin: 24px 0 0;
  color: #263a56;
  font-size: 16px;
  line-height: 1.76;
  font-weight: 620;
}

.feature-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(11,212,135,.1);
  border: 1px solid rgba(11,212,135,.14);
  font-size: 12px;
  font-weight: 900;
}

.roadmap-track {
  position: relative;
  display: grid;
  gap: 14px;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 26px;
  bottom: 26px;
  width: 2px;
  background: linear-gradient(180deg, rgba(11,212,135,.8), rgba(11,212,135,.08));
}

.roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 46px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 94px;
  padding: 20px 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(16px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.roadmap-item:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.12);
  border-color: rgba(11,212,135,.32);
}

.roadmap-item > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: rgba(255,255,255,.1);
  font-size: 18px;
}

.roadmap-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.23;
  letter-spacing: -.035em;
  font-weight: 950;
}

.mentors-showcase {
  position: relative;
  padding: 112px 0 92px;
  background:
    linear-gradient(180deg, #f7fbf8 0%, #fff 50%, #f5faf7 100%);
  overflow: hidden;
}

.mentors-showcase::before {
  content: "";
  position: absolute;
  inset: 70px auto auto -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(11,212,135,.08);
}

.mentors-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, .72fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 46px;
}

.mentors-head p {
  margin-top: 0;
}

.mentor-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.mentor-panel {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 430px;
  padding: 30px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 12%, rgba(11,212,135,.28), transparent 33%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 30px 90px rgba(7,20,39,.16);
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}

.mentor-panel.alt {
  background:
    radial-gradient(circle at 92% 15%, rgba(11,212,135,.28), transparent 31%),
    linear-gradient(135deg, #0F1E36, var(--navy-2));
}

.mentor-panel::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  z-index: -1;
}

.mentor-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 110px rgba(7,20,39,.22);
}

.mentor-image-col {
  position: relative;
  min-height: 330px;
}

.mentor-image-col img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 62px rgba(0,0,0,.26);
}

.mentor-image-col span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 950;
}

.mentor-info h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 950;
}

.mentor-info ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-info li {
  position: relative;
  padding: 14px 14px 14px 42px;
  border-radius: 18px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.mentor-info li::before {
  content: "\f00c";
  position: absolute;
  left: 15px;
  top: 15px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--green);
}

.final-cta {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(11,212,135,.18), transparent 32%),
    linear-gradient(180deg, #f5faf7 0%, #fff 100%);
}

.final-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 38px;
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(11,212,135,.38), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: 0 34px 95px rgba(7,20,39,.18);
  overflow: hidden;
}

.final-cta-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
}

.cta-symbol {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: var(--navy);
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.78));
  font-size: 32px;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.cta-copy span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 950;
}

.cta-copy h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.site-footer {
  position: relative;
  padding: 76px 0 66px;
  color: #fff;
  background: var(--navy-2);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0, rgba(11,212,135,.13), transparent 27%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 54px 54px, 54px 54px;
  opacity: .8;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) .65fr .85fr;
  gap: 70px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  width: 205px;
  margin-bottom: 24px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-brand p {
  max-width: 530px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 18px;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  transition: color .25s ease, transform .25s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-contact span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 1120px) {
  .solution-story-grid,
  .experience-layout,
  .roadmap-shell,
  .mentors-head {
    grid-template-columns: 1fr;
  }

  .solution-dashboard,
  .experience-copy,
  .mentors-head p {
    max-width: 760px;
  }

  .experience-copy {
    position: static;
    text-align: center;
    margin: 0 auto;
  }

  .experience-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .mentor-panels {
    grid-template-columns: 1fr;
  }

  .mentor-panel {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .experience-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card,
  .experience-card.large,
  .experience-card.wide {
    grid-column: span 1;
    grid-row: auto;
  }

  .experience-card.large h3 { font-size: clamp(23px, 5vw, 34px); }

  .final-cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-symbol,
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav,
  .footer-contact {
    justify-items: center;
  }
}

@media (max-width: 760px) {
  .solution-story,
  .experience-section,
  .learning-roadmap,
  .mentors-showcase {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .solution-story-grid {
    gap: 36px;
  }

  .solution-narrative,
  .mentors-head {
    text-align: center;
  }

  .solution-narrative p {
    margin-left: auto;
    margin-right: auto;
  }

  .solution-btn {
    width: 100%;
  }

  .solution-dashboard {
    padding: 22px;
    border-radius: 28px;
  }

  .dashboard-core {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .core-ring {
    margin: 0 auto;
  }

  .dashboard-flow {
    grid-template-columns: 1fr;
  }

  .dashboard-flow div:nth-child(2),
  .dashboard-flow div:nth-child(4) {
    display: none;
  }

  .experience-layout {
    gap: 34px;
  }

  .roadmap-shell {
    gap: 22px;
    margin-top: 36px;
  }

  .roadmap-feature {
    padding: 26px;
    border-radius: 28px;
  }

  .roadmap-track::before {
    display: none;
  }

  .roadmap-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .roadmap-item > i {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
    width: 40px;
    height: 40px;
  }

  .roadmap-item h3 {
    grid-column: 1 / 3;
  }

  .module-pill {
    width: 44px;
    height: 44px;
    border-radius: 15px;
  }

  .mentor-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 30px;
  }

  .mentor-image-col {
    min-height: auto;
  }

  .mentor-image-col img {
    height: 300px;
  }

  .mentor-info h3 {
    text-align: center;
  }

  .final-cta {
    padding: 56px 0;
  }

  .final-cta-panel {
    padding: 28px;
    border-radius: 30px;
  }
}

@media (max-width: 580px) {
  .experience-bento {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: auto;
    padding: 24px;
    border-radius: 26px;
  }

  .experience-card.large .experience-icon,
  .experience-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
    border-radius: 20px;
  }

  .experience-copy .btn,
  .center-action .btn,
  .final-cta-panel .btn {
    width: 100%;
  }

  .mentor-info li {
    font-size: 13px;
  }
}

/* === Refinamentos solicitados | Junho 2026 === */
.section-heading h2,
.solution-narrative h2,
.experience-copy h2,
.learning-heading h2,
.mentors-head h2,
.cta-copy h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading-wide {
  max-width: 880px;
}

.section-heading-wide p {
  max-width: 720px;
}

.solution-narrative h2 strong,
.section-heading h2 strong,
.mentors-head h2 strong,
.learning-heading h2 strong,
.cta-copy h2 strong {
  color: var(--green);
}

.dashboard-topline {
  padding-bottom: 24px;
}

.dashboard-topline span {
  font-size: 14px;
  letter-spacing: .04em;
}

.dashboard-topline strong {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.dashboard-core {
  grid-template-columns: 112px 1fr;
  gap: 24px;
}

.core-ring {
  width: 112px;
  height: 112px;
}

.core-ring img {
  width: 60px;
  height: 60px;
}

.dashboard-core h3 {
  font-size: 30px;
  letter-spacing: 0;
}

.dashboard-label {
  font-size: 13px;
  letter-spacing: .04em;
}

.experience-section {
  padding: 112px 0 116px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.experience-grid .experience-card {
  grid-column: span 1;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.experience-grid .experience-card h3 {
  max-width: none;
  font-size: 26px;
  letter-spacing: 0;
}

.experience-grid .experience-card p {
  max-width: none;
  font-size: 15px;
  line-height: 1.65;
}

.experience-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.learning-roadmap {
  padding: 112px 0 112px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.module-card {
  position: relative;
  border-radius: 30px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.15);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11,212,135,.3);
  background: rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
}

.module-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 46px 40px;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 22px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.module-title-wrap {
  display: grid;
  gap: 6px;
}

.module-label {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.module-title {
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 900;
}

.module-icon,
.module-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.module-icon {
  color: var(--green);
  background: rgba(255,255,255,.1);
  font-size: 17px;
}

.module-control {
  color: #fff;
  background: rgba(11,212,135,.18);
  font-size: 15px;
}

.module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease, border-color .35s ease;
  padding: 0 24px;
}

.module-content p {
  margin: 0;
  padding: 0 0 24px;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 550;
}

.module-card.expanded {
  border-color: rgba(11,212,135,.34);
  background: rgba(255,255,255,.13);
}

.module-card.expanded .module-content {
  max-height: 1200px;
}

.mentors-head.centered {
  display: block;
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.mentors-head.centered p {
  margin: 18px auto 0;
}

.mentor-image-col span {
  display: none;
}

/* Blog / Conteúdos */
.blog-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.page-hero {
  position: relative;
  padding: 150px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(11,212,135,.12), transparent 20%),
    radial-gradient(circle at 85% 25%, rgba(15,30,54,.08), transparent 22%);
  z-index: -1;
}

.page-hero .section-heading {
  max-width: 860px;
  margin-bottom: 0;
}

.page-hero .section-heading p {
  max-width: 680px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding-bottom: 110px;
}

.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 32px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,30,54,.08);
  box-shadow: 0 22px 66px rgba(7,20,39,.08);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11,212,135,.22);
  box-shadow: 0 30px 80px rgba(7,20,39,.14);
}

.post-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.post-media img,
.post-media .media-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-art {
  display: grid;
  place-items: center;
  font-size: 54px;
  color: #fff;
}

.media-art.agro {
  background: linear-gradient(135deg, #0F1E36, #0BD487);
}

.media-art.history {
  background: linear-gradient(135deg, #2e2417, #9d845f);
}

.media-art.career {
  background: linear-gradient(135deg, #0F1E36, #243d68);
}

.media-art.network {
  background: linear-gradient(135deg, #0f3e33, #0BD487);
}

.media-art.market {
  background: linear-gradient(135deg, #1f2740, #4762a3);
}

.media-art.global {
  background: linear-gradient(135deg, #15263f, #0BD487);
}

.post-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.post-date {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.post-content h3 {
  margin: 14px 0 12px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.post-content p {
  margin: 0;
  color: #41526a;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 550;
}

.post-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

.blog-cta {
  padding: 0 0 100px;
}

@media (max-width: 1120px) {
  .modules-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 132px;
  }
}

@media (max-width: 760px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .solution-narrative h2,
  .experience-copy h2,
  .learning-heading h2,
  .mentors-head h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .dashboard-core {
    grid-template-columns: 1fr;
  }

  .core-ring {
    margin: 0 auto;
  }

  .experience-actions {
    flex-direction: column;
  }

  .module-toggle {
    grid-template-columns: 46px 1fr 38px;
    gap: 14px;
  }

  .module-icon {
    display: none;
  }

  .module-title {
    font-size: 18px;
  }

  .post-content {
    padding: 24px;
  }

  .post-content h3 {
    font-size: 25px;
  }
}

@media (max-width: 580px) {
  .module-toggle {
    padding: 18px;
  }

  .module-content {
    padding: 0 18px;
  }

  .post-content .btn,
  .experience-actions .btn {
    width: 100%;
  }
}

/* Ajuste de contraste solicitado */
.solution-narrative h2 strong {
  color: #ffffff;
}

/* === Ajustes solicitados | Poppins, paleta, CTAs e novas seções === */
:root {
  --green: #0BD487;
  --green-dark: #0BD487;
  --navy: #0F1E36;
  --navy-2: #0F1E36;
  --text: #0F1E36;
  --white: #FFFFFF;
}

body {
  font-family: "Poppins", Arial, sans-serif;
}

.section-kicker,
.eyebrow {
  display: none !important;
}

.section-heading h2,
.solution-narrative h2,
.experience-copy h2,
.learning-heading h2,
.mentors-head h2,
.cta-copy h2,
.page-hero .section-heading h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.hero h1 {
  letter-spacing: 0;
  font-weight: 800;
}

.hero p {
  color: #41506a;
  font-weight: 500;
}

.btn {
  min-height: 66px;
  padding: 0 34px;
  border-radius: 18px;
  font-size: 14px;
  letter-spacing: 0;
  animation: ctaPulse 2.7s ease-in-out infinite;
}

.btn:hover {
  animation-play-state: paused;
}

.btn-primary,
.experience-icon,
.module-pill {
  background: #0BD487;
}

.btn-primary {
  color: #FFFFFF;
  box-shadow: 0 18px 40px rgba(11, 212, 135, .34);
}

.btn-primary:hover {
  box-shadow: 0 24px 58px rgba(11, 212, 135, .46);
}

.btn-light {
  color: #0F1E36;
  background: #FFFFFF;
}

.trust-row div {
  gap: 0;
  padding: 13px 18px;
}

.audience-cta {
  margin-top: 42px;
}

.solution-story {
  background:
    radial-gradient(circle at 16% 14%, rgba(255,255,255,.18), transparent 26%),
    radial-gradient(circle at 88% 58%, rgba(11,212,135,.34), transparent 28%),
    linear-gradient(135deg, #0BD487 0%, #0BD487 44%, #0F1E36 100%);
}

.solution-narrative h2,
.solution-narrative h2 strong {
  color: #FFFFFF !important;
}

.solution-narrative p {
  color: rgba(255,255,255,.9);
  text-transform: none;
  font-weight: 600;
}

.card-count {
  display: none !important;
}

.experience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.experience-grid .experience-card {
  grid-column: auto !important;
}

.modules-grid {
  grid-template-columns: 1fr !important;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.module-card {
  border-radius: 26px;
}

.module-toggle {
  grid-template-columns: 52px minmax(0, 1fr) 50px 44px;
}

.module-label {
  color: rgba(255,255,255,.6);
  letter-spacing: 0;
}

.module-title {
  font-weight: 800;
  letter-spacing: 0;
}

.final-cta-panel {
  grid-template-columns: 1fr auto;
}

.final-cta-panel .cta-copy > span,
.final-cta-panel .cta-symbol {
  display: none !important;
}

.final-cta-panel .cta-copy h2 {
  max-width: 780px;
}

.mentors-showcase {
  padding: 112px 0 100px;
  background:
    radial-gradient(circle at 18% 12%, rgba(11,212,135,.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.mentors-head.centered {
  max-width: 840px;
}

.mentor-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.mentor-pro-card {
  position: relative;
  padding: 34px;
  border-radius: 36px;
  background: #FFFFFF;
  border: 1px solid rgba(15,30,54,.09);
  box-shadow: 0 26px 76px rgba(15,30,54,.10);
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.mentor-pro-card::before {
  content: "";
  position: absolute;
  inset: auto -120px -130px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(11,212,135,.11);
  z-index: -1;
}

.mentor-pro-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11,212,135,.28);
  box-shadow: 0 36px 96px rgba(15,30,54,.16);
}

.mentor-pro-header {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.mentor-frame {
  position: relative;
  padding: 10px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 2px solid rgba(11,212,135,.32);
  box-shadow: 0 20px 52px rgba(15,30,54,.12);
}

.mentor-frame img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-radius: 22px;
}

.mentor-frame span {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  color: #0F1E36;
  background: #0BD487;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  white-space: nowrap;
}

.mentor-name-block p {
  margin: 0 0 12px;
  color: #5c6879;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
}

.mentor-name-block h3 {
  margin: 0;
  color: #0F1E36;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
}

.mentor-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.mentor-stat-grid div {
  min-height: 122px;
  display: grid;
  align-content: center;
  padding: 20px;
  border-radius: 24px;
  color: #0F1E36;
  background: #0BD487;
}

.mentor-stat-grid strong {
  display: block;
  font-size: clamp(34px, 4.5vw, 40px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}

.mentor-stat-grid span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.mentor-bullets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-bullets li {
  position: relative;
  padding-left: 24px;
  color: #263752;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.mentor-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0BD487;
}

.mentor-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 2px solid rgba(15,30,54,.12);
}

.mentor-timeline span {
  position: relative;
  color: #0F1E36;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
}

.mentor-timeline span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -28px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #0BD487;
  box-shadow: 0 0 0 5px rgba(11,212,135,.13);
}

.blog-cta .final-cta-panel {
  grid-template-columns: 1fr auto;
}

.blog-cta .cta-symbol,
.blog-cta .cta-copy span {
  display: none !important;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 40px rgba(11, 212, 135, .28);
  }
  50% {
    transform: translateY(-2px) scale(1.035);
    box-shadow: 0 24px 62px rgba(11, 212, 135, .46);
  }
}

@media (max-width: 1040px) {
  .mentor-pro-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .final-cta-panel,
  .blog-cta .final-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .section-heading h2,
  .solution-narrative h2,
  .experience-copy h2,
  .learning-heading h2,
  .mentors-head h2,
  .cta-copy h2,
  .page-hero .section-heading h2 {
    font-size: 34px;
  }

  .experience-grid {
    grid-template-columns: 1fr !important;
  }

  .module-toggle {
    grid-template-columns: 46px 1fr 40px;
  }

  .module-icon {
    display: none;
  }

  .mentor-pro-card {
    padding: 24px;
    border-radius: 30px;
  }

  .mentor-pro-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mentor-frame {
    max-width: 240px;
    margin: 0 auto;
  }

  .mentor-stat-grid,
  .mentor-timeline {
    grid-template-columns: 1fr;
  }

  .mentor-timeline {
    border-top: 0;
    gap: 12px;
    padding-top: 0;
  }

  .mentor-timeline span {
    padding: 14px 12px;
    border-radius: 16px;
    background: rgba(11,212,135,.1);
  }

  .mentor-timeline span::before {
    display: none;
  }
}

/* Ajustes finais: mentores e largura dos módulos */
.modules-grid {
  width: 100% !important;
  max-width: none !important;
}

.mentor-pro-header {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
}

.mentor-name-block {
  min-width: 0;
}

.mentor-name-block h3 {
  font-size: clamp(26px, 2.35vw, 38px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 1180px) {
  .mentor-name-block h3 {
    font-size: clamp(25px, 3vw, 34px);
  }
}

/* Ajustes solicitados - header, módulos, CTA e contatos */
.site-header,
.site-header.scrolled {
  background: rgba(7, 20, 39, .96) !important;
}

.trust-row {
  display: none !important;
}

.dashboard-flow div {
  min-height: 72px;
  text-align: center;
}

.dashboard-flow div span {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0;
}

.experience-actions {
  margin-top: 44px;
}

.module-icon {
  display: none !important;
}

.module-toggle {
  grid-template-columns: 52px minmax(0, 1fr) 44px !important;
}

.modules-grid {
  grid-template-columns: 1fr !important;
  width: 100% !important;
  max-width: none !important;
}

.mentors-showcase {
  padding-bottom: 48px !important;
}

.mentor-name-block h3 {
  font-size: clamp(24px, 2vw, 32px) !important;
  line-height: 1.05;
}

.final-cta {
  padding-top: 36px !important;
}

.final-cta-panel {
  grid-template-columns: 1fr auto;
}

.final-cta-panel .cta-copy h2 {
  max-width: 860px;
}

.footer-contact {
  gap: 12px;
}

@media (max-width: 900px) {
  .final-cta-panel {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .module-toggle {
    grid-template-columns: 46px 1fr 40px !important;
  }

  .mentor-name-block h3 {
    font-size: 30px !important;
  }
}


/* Ajuste específico do texto da faixa final */
.final-cta-panel .cta-copy h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.final-cta-panel .cta-copy .cta-mainline {
  display: block;
  color: #FFFFFF;
  font-size: inherit;
  line-height: 1.04;
  font-weight: 800;
}

.final-cta-panel .cta-copy .cta-subline {
  display: block;
  color: #0BD487;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 700;
}

@media (max-width: 900px) {
  .final-cta-panel .cta-copy h2 {
    gap: 8px;
  }

  .final-cta-panel .cta-copy .cta-subline {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .final-cta-panel .cta-copy .cta-subline {
    font-size: 18px;
  }
}

/* Página interna de conteúdo */
.post-detail-section {
  min-height: 760px;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at 20% 20%, rgba(11, 212, 135, .14), transparent 28%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
}

.post-detail-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-detail-media {
  overflow: hidden;
  min-height: 250px;
  margin-bottom: 28px;
  border-radius: 28px;
  background: #eef7f1;
}

.post-detail-media img {
  width: 100%;
  height: min(420px, 58vw);
  object-fit: cover;
}

.post-detail-media .media-art {
  min-height: 300px;
}

.post-detail-card h1 {
  margin: 10px 0 18px;
  max-width: 820px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
  color: var(--navy);
}

.post-excerpt {
  margin: 0 0 28px;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.post-body {
  max-width: 760px;
  color: #24354f;
  font-size: 17px;
  line-height: 1.85;
}

.post-body p {
  margin: 0 0 20px;
}

@media (max-width: 640px) {
  .post-detail-section { padding-top: 120px; }
  .post-detail-card { border-radius: 24px; }
  .post-detail-media { min-height: 190px; border-radius: 20px; }
}

/* Ajustes mobile solicitados - Junho 2026 */
.blog-grid.is-empty {
  grid-template-columns: 1fr;
  padding-bottom: 120px;
}

.blog-empty {
  grid-column: 1 / -1;
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border-radius: 36px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,30,54,.08);
  box-shadow: 0 22px 66px rgba(7,20,39,.08);
}

.blog-empty strong,
.blog-empty span {
  display: block;
  color: var(--navy);
  font-size: clamp(34px, 6vw, 68px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-empty span {
  max-width: 760px;
  color: var(--green-dark);
  font-size: clamp(24px, 4vw, 46px);
  letter-spacing: 0;
}

.dashboard-topline strong {
  white-space: nowrap;
}

.mentor-timeline-wrap {
  position: relative;
}

.mentor-timeline-btn {
  display: none;
}

@media (max-width: 760px) {
  .dashboard-topline {
    gap: 12px;
  }

  .dashboard-topline strong {
    flex: 0 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 11px;
    letter-spacing: 0;
  }

  .dashboard-flow {
    grid-template-columns: 1fr !important;
    justify-items: stretch;
    gap: 8px;
  }

  .dashboard-flow div:nth-child(2),
  .dashboard-flow div:nth-child(4) {
    display: grid !important;
    place-items: center;
    min-height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .dashboard-flow div:nth-child(2) i,
  .dashboard-flow div:nth-child(4) i {
    transform: rotate(90deg);
    transform-origin: center;
    font-size: 18px;
  }

  #para-quem .card-icon {
    background: var(--green);
    color: var(--navy);
  }

  .mentor-pro-header {
    grid-template-columns: 1fr !important;
    gap: 24px;
    text-align: center;
    overflow: visible;
  }

  .mentor-name-block h3 {
    overflow: visible;
    padding-bottom: 3px;
    font-size: clamp(24px, 8vw, 28px) !important;
    line-height: 1.12 !important;
  }

  .mentor-timeline-wrap {
    margin-top: 28px;
    padding: 0 44px;
  }

  .mentor-timeline {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 18px;
    margin-top: 0;
    padding: 44px 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mentor-timeline::-webkit-scrollbar {
    display: none;
  }

  .mentor-timeline::before {
    content: "";
    position: absolute;
    left: 72px;
    right: 72px;
    top: 24px;
    height: 4px;
    border-radius: 99px;
    background: rgba(15,30,54,.12);
  }

  .mentor-timeline span {
    flex: 0 0 min(72%, 260px);
    scroll-snap-align: center;
    min-height: 108px;
    display: grid;
    place-items: center;
    padding: 20px 18px;
    border-radius: 22px;
    background: #FFFFFF;
    border: 1px solid rgba(15,30,54,.08);
    box-shadow: 0 16px 46px rgba(7,20,39,.08);
    color: var(--navy);
    font-size: 16px;
    line-height: 1.15;
    text-transform: uppercase;
    text-align: center;
    font-weight: 900;
  }

  .mentor-timeline span::before {
    display: block !important;
    top: -31px;
    width: 42px;
    height: 42px;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(11,212,135,.15);
  }

  .mentor-timeline-btn {
    position: absolute;
    top: 54px;
    z-index: 3;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11,212,135,.35);
    border-radius: 8px;
    background: rgba(11,212,135,.16);
    color: var(--green-dark);
    font-size: 16px;
    cursor: pointer;
  }

  .mentor-timeline-btn.prev {
    left: 0;
  }

  .mentor-timeline-btn.next {
    right: 0;
  }
}

@media (max-width: 420px) {
  .solution-dashboard {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dashboard-topline span {
    font-size: 11px;
    line-height: 1.35;
  }

  .dashboard-topline strong {
    min-height: 34px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10.5px;
  }

  .blog-empty {
    min-height: 300px;
    border-radius: 26px;
  }
}

/* Ajustes finais mobile - linha do tempo, mentores e espaçamentos */
@media (max-width: 760px) {
  /* 1) Linha do tempo dos mentores fixa no mobile, independente do arraste lateral */
  .mentor-timeline-wrap {
    position: relative;
    isolation: isolate;
  }

  .mentor-timeline-wrap::before {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 34px;
    height: 4px;
    border-radius: 99px;
    background: rgba(15, 30, 54, .13);
    z-index: 0;
    pointer-events: none;
  }

  .mentor-timeline::before {
    display: none !important;
  }

  .mentor-timeline {
    position: relative;
    z-index: 1;
  }

  .mentor-timeline span {
    position: relative;
    z-index: 1;
  }

  .mentor-timeline span::before {
    z-index: 3;
  }

  /* 2) Melhor formatação dos cards verdes e textos dos mentores no mobile */
  .mentor-stat-grid {
    gap: 14px;
    margin-bottom: 26px;
  }

  .mentor-stat-grid div {
    min-height: auto;
    padding: 25px 22px 26px;
    border-radius: 25px;
    align-content: center;
    justify-items: center;
    text-align: center;
  }

  .mentor-stat-grid strong {
    margin-bottom: 8px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.04;
    letter-spacing: -.02em;
    word-break: normal;
    text-align: center;
  }

  .mentor-stat-grid span {
    max-width: 260px;
    margin-top: 0;
    font-size: 15.5px;
    line-height: 1.42;
    font-weight: 800;
    text-align: center;
  }

  .mentor-bullets {
    gap: 14px;
  }

  .mentor-bullets li {
    font-size: 15px;
    line-height: 1.58;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
  }

  .mentor-bullets li::before {
    top: .72em;
  }

  /* 3) Espaçamento mobile padronizado entre seções */
  .audience-section,
  .challenge-section,
  .solution-story,
  .experience-section,
  .learning-roadmap,
  .mentors-showcase,
  .final-cta {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .experience-section + .learning-roadmap,
  .solution-story + .experience-section,
  .mentors-showcase + .final-cta {
    margin-top: 0 !important;
  }
}

@media (max-width: 420px) {
  .audience-section,
  .challenge-section,
  .solution-story,
  .experience-section,
  .learning-roadmap,
  .mentors-showcase,
  .final-cta {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}
