:root {
  --font-title: "Classical Garamond BT", "Classical Garamond", Garamond, "Times New Roman", serif;
  --font-body: "Montserrat", Arial, Helvetica, sans-serif;

  --bg: #0a3f63;
  --bg-deep: #052b46;
  --bg-mid: #0a4b73;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --text: #0d2740;
  --text-soft: #5b6775;
  --gold: #cda55e;
  --gold-2: #cda55e;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(2, 18, 31, 0.18);
  --radius: 20px;
  --container: min(1180px, calc(100vw - 32px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
}

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

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

button { font: inherit; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section { padding: 72px 0; }

.section--compact { padding: 56px 0; }

.section--deep {
  background: linear-gradient(180deg, #02263d 0%, #012133 100%);
  color: #fff;
}

.center { text-align: center; }

.gold { color: var(--gold); }

.section-title {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.section-title.small {
  font-size: clamp(1.9rem, 2.3vw, 2.6rem);
}

.section-lead {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section--deep .section-lead,
.section--deep .section-kicker,
.section--deep .section-subtitle {
  color: rgba(255,255,255,0.82);
}

.section-kicker {
  margin: 0 0 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 700;
}

.section-subtitle {
  font-family: var(--font-title);
  font-style: italic;
  color: rgba(255,255,255,.8);
  font-size: 1.18rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 700;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--gold);
  color: #102033;
  box-shadow: 0 16px 28px rgba(209, 162, 69, .22);
}

.btn-primary:hover { background: #dfb45e; }

.btn-secondary {
  border-color: rgba(209, 162, 69, .95);
  color: #fff;
  background: rgba(255,255,255,.02);
}

.btn-secondary.dark {
  color: var(--bg);
  border-color: rgba(10,63,99,.18);
  background: #fff;
}

.btn-secondary.dark:hover { background: #f8fafb; }

.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-cta-row--cases {
  margin-top: 22px;
}

.section-cta-row--help {
  margin-top: 24px;
}

.section-cta-button {
  min-width: 260px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 14px;
  text-align: center;
}

@media (max-width: 820px) {
  .section-cta-row {
    margin-top: 22px;
  }

  .section-cta-button {
    width: min(92vw, 320px);
    min-width: 0;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bg);
  font-weight: 700;
}

.link-arrow::after {
  content: "→";
  color: var(--gold-2);
  font-size: 1.1rem;
}

/* HEADER */

.site-header {
  --header-height: 82px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: #0a3f63;
  backdrop-filter: blur(10px);
  border-bottom: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #cda55e;
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 82;
  flex: 0 0 auto;
}

.brand img {
  width: 152px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #fff;
  position: relative;
  z-index: 82;
}

.site-nav {
  margin-left: auto;
  position: relative;
  z-index: 81;
}

.site-nav__list,
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.site-nav__item {
  position: relative;
}

.site-nav__link,
.site-nav__button {
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav__button {
  border: 0 !important;
  background: transparent !important;
  cursor: pointer;
  padding: 0 !important;
  margin: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.site-nav__caret {
  font-size: .72rem;
  line-height: 1;
  transform: translateY(1px);
}

.site-nav__link:hover,
.site-nav__link.active,
.site-nav__item:hover > .site-nav__link,
.site-nav__item:hover > .site-nav__button,
.site-nav__item.is-open > .site-nav__button {
  color: var(--gold);
}

/* LOGIN HEADER — V425 */
.site-nav__item--login {
  position: absolute;
  left: calc(100% + 28px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 82;
}

.site-nav__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #083a5d;
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: none;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}

.site-nav__login:hover {
  background: #dfb45e;
  color: #083a5d;
  transform: translateY(-1px);
}

@media (max-width: 1160px) and (min-width: 821px) {
  .site-nav__item--login {
    left: calc(100% + 18px);
  }

  .site-nav__login {
    min-height: 36px;
    padding: 0 18px;
    font-size: 0.92rem;
  }
}

@media (max-width: 820px) {
  .site-nav__item--login {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    z-index: auto;
  }

  .site-nav__login {
    width: 100%;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    justify-content: center;
  }
}

.mega-menu {
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) + 10px);
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 56px));
  background: rgba(255, 255, 255, 0.985);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(2, 18, 31, 0.18);
  padding: 18px 26px 22px;
  display: grid;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: -12px 0 auto;
  height: 12px;
}

.mega-menu--3col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-menu--4col {
  width: min(1260px, calc(100vw - 56px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mega-menu--content,
.mega-menu--about {
  left: 50%;
  transform: translateX(-50%);
}

.site-nav__item--has-mega:hover > .mega-menu,
.site-nav__item--has-mega:focus-within > .mega-menu,
.site-nav__item--has-mega.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu__card {
  min-width: 0;
  text-decoration: none;
}

.mega-menu__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.mega-menu__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 22px;
}

.mega-menu__title {
  margin: 0;
  color: #cda55e;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.mega-menu__text {
  margin: 0;
  color: #21394d;
  font-size: .98rem;
  line-height: 1.28;
}

@media (max-width: 1160px) {
  .site-nav__list,
  .site-nav ul {
    gap: 22px;
  }

  .mega-menu {
    width: min(1060px, calc(100vw - 48px));
  }

  .mega-menu--4col {
    width: min(1120px, calc(100vw - 48px));
  }
}

@media (max-width: 980px) {
  .site-nav__list,
  .site-nav ul {
    gap: 18px;
  }

  .site-nav__link,
  .site-nav__button {
    font-size: .96rem;
  }

  .mega-menu,
  .mega-menu--4col {
    width: calc(100vw - 44px);
  }
}

@media (max-width: 820px) {
  .site-header {
    --header-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(8, 53, 86, 0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: none;
  box-shadow: 0 8px 18px rgba(2, 18, 31, 0.08);
  backdrop-filter: blur(6px);
}

  .site-nav.is-open { display: block; }

  .site-nav__link,
  .site-nav__button {
    color: #083a5d;
  }

  .site-nav__caret {
    color: #cda55e;
  }

  .site-nav__list,
.site-nav ul {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

  .site-nav__link,
  .site-nav__button {
    width: 100%;
    justify-content: space-between;
    font-size: 1rem;
  }

    .mega-menu,
.mega-menu--4col {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  display: none;
  grid-template-columns: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 53, 86, 0.06);
  border-radius: 10px;
  box-shadow: none;
}

  .site-nav__item--has-mega.is-open > .mega-menu {
    display: grid;
  }

.mega-menu__card + .mega-menu__card {
  border-top: 1px solid rgba(8, 53, 86, 0.07);
  padding-top: 10px;
}

  .mega-menu__text {
    font-size: .94rem;
    line-height: 1.32;
  }
}

/* HERO */

.hero {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: #052b46;
  color: #fff;
}

.hero-slider {
  position: relative;
  z-index: 6;
}

.hero-slides {
  position: relative;
  aspect-ratio: 2048 / 720;
  min-height: 620px;
  max-height: 720px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #052b46;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-slide__media--video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-slide__media--tablet-video,
.hero-slide__media--mobile-video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .hero-slide.has-tablet-video .hero-slide__media--tablet-video {
    display: block;
  }

  .hero-slide.has-tablet-video .hero-slide__media--image {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-slide.has-mobile-video .hero-slide__media--mobile-video {
    display: block;
  }

  .hero-slide.has-mobile-video .hero-slide__media--image {
    display: none;
  }
}

@media (min-width: 1101px) {
  .hero-slide.has-desktop-video .hero-slide__media--video {
    display: block;
  }

  .hero-slide.has-desktop-video .hero-slide__media--image {
    display: none;
  }
}


.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(3, 21, 34, 0.38) 0%,
    rgba(3, 21, 34, 0.20) 30%,
    rgba(3, 21, 34, 0.08) 58%,
    rgba(3, 21, 34, 0.04) 100%
  );
}

.hero-slide__full-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 2;
}

.hero-slide__content,
.hero-slide__grid,
.hero-arrow,
.hero-dots {
  position: relative;
  z-index: 3;
}

@media (min-width: 821px) {
  .hero-slide__full-link {
    z-index: 4;
  }

  .hero-arrow,
  .hero-dots,
  .hero-actions,
  .hero-actions .btn {
    position: relative;
    z-index: 5;
  }
}

.hero-slide.content-left .hero-slide__content {
  grid-column: 1;
  justify-self: start;
}

.hero-slide.content-right .hero-slide__content {
  grid-column: 2;
  justify-self: end;
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide__content.align-left,
.hero-slide__content.align-right {
  text-align: left;
}

.hero .hero-title,
.hero .hero-copy,
.hero .section-kicker {
  position: relative;
  z-index: 3;
}

.hero .hero-title { color: #fff; }
.hero .hero-copy { color: rgba(255,255,255,.96); }
.hero .section-kicker { color: #cda55e; }

.hero-title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 3.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.hero-title.tight { line-height: 1.08; }

.hero-title-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-title-crisol {
  width: min(300px, 100%);
  margin: 0;
}

.hero-copy {
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 560px;
}

.hero-feature-line {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 24px 0 18px;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(209,162,69,.3);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-weight: 700;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex: 0 0 42px;
}

.hero-feature-label {
  display: block;
  max-width: 110px;
  color: #fff;
  font-size: .88rem;
  line-height: 1.12;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 16px 28px;
  white-space: normal;
  text-align: center;
  border-radius: 18px;
}

.hero-arrow,
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(209, 162, 69, .95);
  color: #fff;
  font-size: 0;
  line-height: 1;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 12;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.hero-arrow::before,
.carousel-arrow::before {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  transform: translateY(-1px);
}

.hero-arrow.prev::before,
.carousel-arrow.prev::before {
  content: "‹";
  transform: translate(-1px, -1px);
}

.hero-arrow.next::before,
.carousel-arrow.next::before {
  content: "›";
  transform: translate(1px, -1px);
}

.hero-arrow,
.carousel-arrow {
  font-family: Arial, Helvetica, sans-serif;
}

.hero-arrow::before,
.carousel-arrow::before {
  transform: translateY(-1px);
}

.hero-arrow:hover,
.carousel-arrow:hover {
  background: #ddb25d;
}

.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

.hero-dots,
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 30;
  margin: 0;
  padding: 0;
  background: transparent;
}

.hero-dot,
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.6);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active,
.hero-dot[aria-current="true"],
.carousel-dot.is-active {
  width: 24px;
  background: #cda55e;
}

/* HERO - CRISOL */

.slide-crisol .hero-slide__overlay {
  background: linear-gradient(
    90deg,
    rgba(3, 17, 29, 0.78) 0%,
    rgba(3, 17, 29, 0.60) 22%,
    rgba(3, 17, 29, 0.28) 46%,
    rgba(3, 17, 29, 0.08) 72%,
    rgba(3, 17, 29, 0) 100%
  );
}

.slide-crisol .hero-slide__content {
  max-width: 860px;
  padding: 72px 0;
}

.slide-crisol .section-kicker {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 1.55vw, 2.15rem);
  line-height: 1.1;
  letter-spacing: 0;
  color: #cda55e;
}

.slide-crisol .hero-title {
  margin: 0 0 24px;
}

.slide-crisol .hero-title-crisol {
  width: min(760px, 100%);
  max-width: none;
}

.slide-crisol .hero-copy {
  margin: 0 0 28px;
  max-width: 980px;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.22vw, 1.68rem);
  line-height: 1.42;
}

.slide-crisol .hero-actions {
  margin-top: 0;
}

.slide-crisol .hero-actions .btn {
  width: auto;
  min-height: 72px;
  padding: 0 30px;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}

.slide-crisol .btn-primary {
  background: #cda55e;
  color: #0a2f4b;
}

/* HERO - CONSULTORIA */

.slide-consultoria .hero-slide__content {
  max-width: 540px;
}

.slide-consultoria .section-kicker {
  font-family: Garamond, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
}

.slide-consultoria .section-kicker::after {
  content: "";
  display: block;
  width: 210px;
  height: 3px;
  background: #cda55e;
  margin-top: 8px;
}

.slide-consultoria .hero-title {
  font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif;
  font-size: clamp(1.95rem, 2.8vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 500px;
  margin-bottom: 18px;
}

.slide-consultoria .hero-title .gold {
  color: #cda55e;
}

.slide-consultoria .hero-copy {
  font-size: .95rem;
  line-height: 1.5;
  max-width: 520px;
}

.slide-consultoria .hero-feature-line {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 12px 0 22px;
  flex-wrap: nowrap;
  position: relative;
  padding-top: 16px;
}

.slide-consultoria .hero-feature-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 430px;
  max-width: 100%;
  height: 2px;
  background: #cda55e;
}

/* HERO - IMS / SOBRE */

.slide-ims .section-kicker,
.slide-sobre .section-kicker {
  display: none;
}

.slide-ims .hero-slide__content {
  max-width: 540px;
}

.slide-ims .hero-title {
  font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif;
  font-size: clamp(2.6rem, 3.8vw, 4.4rem);
  line-height: 1.04;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-ims .ims-topline {
  display: block;
  font-family: Garamond, "Times New Roman", serif;
  font-size: 1em;
  line-height: 1;
  color: #cda55e;
  letter-spacing: 0.02em;
}

.slide-ims .ims-main-title {
  display: block;
  font-size: 0.56em;
  line-height: 1.08;
  color: #fff;
  position: relative;
  padding-bottom: 16px;
}

.slide-ims .ims-main-title::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 420px;
  height: 3px;
  background: #cda55e;
  margin-top: 12px;
}

.slide-ims .hero-copy {
  font-size: 1rem;
  line-height: 1.52;
  max-width: 520px;
}

.slide-ims .hero-copy:first-of-type {
  font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.slide-ims .hero-feature-line {
  gap: 34px;
  margin: 10px 0 18px;
}

.slide-ims .feature-pill {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  font-family: Garamond, "Times New Roman", serif;
  font-size: 1.12rem;
  color: #cda55e;
}

.slide-sobre .hero-title .gold {
  color: #cda55e;
}

/* PRODUCTS */

.products {
  background: #FFFFFF !important;
  padding: 24px 0 28px;
}

.products .container {
  width: min(1360px, calc(100vw - 40px));
}

.products-slider {
  position: relative;
}

.products-slider .carousel-dots {
  display: none !important;
}

.products .section-title.small {
  color: #083a5d;
  font-family: var(--font-title);
  font-size: clamp(1.56rem, 1.8vw, 2.02rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.products-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.product-line-item {
  min-width: 0;
}

.product-line-link {
  display: block;
}

.product-line-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 6px;
  min-height: 54px;
}

.product-line-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* tamanhos exatos mais próximos da prévia */
.product-line-brand--ims img {
  max-width: 270px;
  max-height: 82px;
}

.product-line-brand--consultoria img {
  max-width: 245px;
  max-height: 78px;
}

.product-line-brand--crisol img {
  max-width: 290px;
  max-height: 82px;
}

.product-line-copy {
  margin: 0 0 6px;
  color: #26435b;
  font-size: 0.96rem;
  line-height: 1.24;
}

.product-line-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-line-cta-text {
  color: #083a5d;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.product-line-cta-arrow {
  color: #cda55e;
  font-size: 2rem;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-1px);
}

@media (min-width: 821px) {
  .products-slider .carousel-arrow {
    display: none !important;
  }
}

/* responsivo */
@media (max-width: 1100px) {
  .products-line {
    gap: 18px;
  }

  .product-line-copy {
    font-size: 0.94rem;
    line-height: 1.24;
  }

  .product-line-brand--ims img {
    max-width: 230px;
  }

  .product-line-brand--consultoria img {
    max-width: 215px;
  }

  .product-line-brand--crisol img {
    max-width: 250px;
  }
}

@media (max-width: 820px) {
  .products {
    padding: 34px 0 38px;
  }
  
  .products-slider {
  position: relative;
  padding: 0 14px;
}

.products .carousel-viewport {
  overflow: hidden;
}

.products-slider .carousel-arrow {
  width: 20px;
  height: 20px;
  font-size: 0.72rem;
  box-shadow: none;
  background: #cda55e;
  color: #fff;
  border: 0;
  z-index: 4;
}

.products-slider .carousel-arrow.prev {
  left: 0;
}

.products-slider .carousel-arrow.next {
  right: 0;
}

  .products .section-title.small {
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 5vw, 2.08rem);
  line-height: 1.02;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  text-align: center;
}

  .products-line {
  display: flex;
  gap: 0;
  align-items: stretch;
}

.product-line-item {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.product-line-link {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

  .product-line-brand {
  min-height: auto;
  margin-bottom: 8px;
}

  .product-line-brand--ims img {
    max-width: 240px;
    max-height: none;
  }

  .product-line-brand--consultoria img {
    max-width: 220px;
    max-height: none;
  }

  .product-line-brand--crisol img {
    max-width: 250px;
    max-height: none;
  }

  .product-line-copy {
  font-size: 0.96rem;
  line-height: 1.26;
  margin-bottom: 6px;
}

.product-line-cta {
  margin-top: 0;
}

  .product-line-cta-text {
  font-size: 1rem;
}

.product-line-cta-arrow {
  font-size: 1.65rem;
}
}

/* CAROUSELS */

.team-slider,
.testimonials-slider {
  position: relative;
  margin-top: 34px;
}

.team-slider {
  padding: 0 72px;
  overflow: visible;
}

.team-slider .carousel-viewport {
  overflow: hidden;
}

.team-slider .carousel-track {
  align-items: stretch;
}

.team-slider .carousel-arrow {
  top: 50%;
  width: 44px;
  height: 44px;
  z-index: 6;
}

.team-slider .carousel-arrow.prev {
  left: 12px;
}

.team-slider .carousel-arrow.next {
  right: 12px;
}

.team-card {
  flex: 0 0 calc((100% - 3 * 24px) / 4);
  width: calc((100% - 3 * 24px) / 4);
  margin-right: 24px;
}

.team-card img {
  width: 100%;
  max-width: none;
  border-radius: 26px;
  box-shadow: none;
  background: transparent;
}

.section.section--deep .section-title.small .gold {
  color: #cda55e;
}

.team-slider .carousel-dots,
.testimonials-slider .carousel-dots {
  margin-top: 26px;
  position: relative;
  z-index: 5;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}


/* RESULTS */

.results {
  background: #FFFFFF;
}

.results .container.center {
  max-width: 1120px;
}

.results .section-lead {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--bg);
  font-size: 1.42rem;
  line-height: 1.5;
  max-width: 980px;
  margin: 12px auto 0;
}

.result-grid {
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1180px;
}

.result-card {
  background: #FFFFFF;
  border: 1px solid rgba(8, 53, 86, .38);
  border-radius: 18px;
  padding: 30px 26px;
  min-height: 174px;
  display: grid;
  place-items: center;
  text-align: center;
}

.result-number {
  font-family: var(--font-title);
  font-weight: 700;
  color: #083a5d;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
}

.result-card:nth-child(3) .result-number {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.05;
  color: #083a5d;
}

.result-label {
  margin-top: 10px;
  color: #083a5d;
}

/* TESTIMONIALS */

.testimonials {
  background: linear-gradient(
    180deg,
    #0a4a73 0%,
    #073a5b 58%,
    #06334d 76%,
    #05283c 88%,
    #041d2b 100%
  );
  color: #fff;
  padding-bottom: 10px;
}

.testimonials .container.center {
  width: 100%;
  max-width: none;
}

.testimonials .section-title,
.testimonials .section-lead {
  width: min(1180px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
}

.testimonials .section-title .gold {
  color: #cda55e;
}

.testimonials .section-lead {
  font-family: var(--font-body);
  font-weight: 400;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.45;
  max-width: 980px;
  margin-top: 10px;
}

.testimonials-slider {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 26px;
  padding: 0 14px 18px;
  overflow: visible;
}

.testimonials-slider .carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.testimonials-slider .carousel-track {
  display: flex;
  align-items: flex-start;
  will-change: transform;
}

.testimonials-slider .carousel-arrow {
  top: 38%;
  width: 44px;
  height: 44px;
  z-index: 6;
}

.testimonials-slider .carousel-arrow.prev {
  left: 10px;
}

.testimonials-slider .carousel-arrow.next {
  right: 10px;
}

.testimonials .carousel-dots {
  margin-top: 30px;
  position: relative;
  z-index: 5;
}

.testimonials .section-cta-row {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  margin-bottom: 28px;
}

.testimonial-slide {
  transition: transform .45s ease, opacity .45s ease, filter .45s ease;
  opacity: .16;
  filter: blur(4px);
  transform: scale(.86);
  pointer-events: none;
}

.testimonial-slide.is-center {
  opacity: 1;
  filter: none;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-slide.is-side {
  opacity: .42;
  filter: blur(3px);
  transform: scale(.91);
}

.testimonial-slide.is-hidden-edge {
  opacity: .08;
  filter: blur(5px);
  transform: scale(.84);
}

.testimonial-slide:not(.is-center) .testimonial-meta {
  opacity: .34;
}

.testimonial-layout,
.testimonial-layout.single-video {
  display: block;
}

.testimonial-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #062a43;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
  padding: 0;
  cursor: pointer;
}

.testimonial-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.92);
}

.testimonial-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 43, 70, 0.04) 0%,
    rgba(5, 43, 70, 0.18) 100%
  );
  z-index: 1;
}

.testimonial-video .play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.testimonial-video.is-playing::before,
.testimonial-video.is-playing .play-icon {
  display: none;
}

.testimonial-video.is-playing {
  cursor: default;
}

.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.play-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(209,162,69,.92);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
}

.play-icon::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #102033;
  margin-left: 4px;
}

.testimonial-meta {
  margin: 16px auto 0;
  text-align: center;
  max-width: 460px;
}

.testimonial-name {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-role {
  margin: 0;
  color: rgba(255,255,255,.82);
}

@media (min-width: 821px) {
  .testimonial-slide {
    flex: 0 0 460px;
    width: 460px;
    margin-right: 48px;
  }
}

@media (max-width: 820px) {
  .testimonials .section-title,
  .testimonials .section-lead {
    width: min(92vw, 560px);
  }

  .testimonials .section-lead {
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .testimonials-slider {
    padding: 0 0 18px;
  }

  .testimonials-slider .carousel-arrow {
    top: 50%;
    width: 40px;
    height: 40px;
  }

  .testimonials-slider .carousel-arrow.prev {
    left: 4px;
  }

  .testimonials-slider .carousel-arrow.next {
    right: 4px;
  }

  .testimonial-slide {
    flex: 0 0 calc(100vw - 132px);
    width: calc(100vw - 132px);
    margin-right: 20px;
    opacity: .16;
    filter: blur(4px);
    transform: scale(.9);
  }
  
  .testimonial-video {
  aspect-ratio: 4 / 3;
}

.testimonial-video iframe,
.testimonial-thumb {
  width: 100%;
  height: 100%;
}

  .testimonial-slide.is-center {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }

  .testimonial-slide.is-side {
    opacity: .34;
    filter: blur(4px);
    transform: scale(.93);
  }

  .testimonial-slide.is-hidden-edge {
    opacity: .08;
    filter: blur(5px);
    transform: scale(.88);
  }

  .play-icon {
    width: 88px;
    height: 88px;
  }

  .testimonial-meta {
    max-width: 360px;
    margin-top: 16px;
  }

  .testimonial-name {
    font-size: 1.1rem;
  }

  .testimonial-role {
    font-size: .92rem;
  }
}

/* CLIENTS */

/* ===== CASES ===== */

.cases-band {
  background: #041d2b;
  padding: 0 0 30px;
}

.cases-band .container {
  width: min(1360px, calc(100vw - 40px));
}

.cases-cards-slider,
.cases-logos-slider {
  position: relative;
}

.cases-cards-slider {
  padding: 0 56px;
  margin-bottom: 30px;
}

.cases-logos-slider {
  padding: 0 56px;
}

.cases-cards-slider .carousel-viewport,
.cases-logos-slider .carousel-viewport {
  overflow: hidden;
}

.cases-cards-slider .carousel-track,
.cases-logos-slider .carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
  align-items: center;
}

.case-card {
  flex: 0 0 calc((100% - 2 * 18px) / 3);
  width: calc((100% - 2 * 18px) / 3);
  margin-right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #041d2b;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  overflow: hidden;
}

.case-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.cases-cards-slider .carousel-dots {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cases-cards-slider .carousel-arrow {
  top: 50%;
  width: 38px;
  height: 38px;
  z-index: 6;
}

.cases-cards-slider .carousel-arrow.prev {
  left: 8px;
}

.cases-cards-slider .carousel-arrow.next {
  right: 8px;
}

.cases-logos-track {
  align-items: center;
}

.case-logo-item {
  flex: 0 0 calc((100% - 4 * 20px) / 5);
  width: calc((100% - 4 * 20px) / 5);
  margin-right: 20px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-logo-item img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
}

@media (max-width: 1100px) {
  .case-card {
    flex: 0 0 calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
  }

  .case-logo-item {
    flex: 0 0 calc((100% - 3 * 18px) / 4);
    width: calc((100% - 3 * 18px) / 4);
    margin-right: 18px;
    min-height: 104px;
  }

  .case-logo-item img {
    max-height: 58px;
  }
}

@media (max-width: 820px) {
  .cases-band {
    padding: 28px 0 24px;
  }

  .cases-band .container {
    width: calc(100vw - 18px);
  }

  .cases-cards-slider {
    padding: 0 46px;
    margin-bottom: 24px;
  }

  .cases-logos-slider {
    padding: 0 22px;
  }

  .cases-cards-slider .carousel-arrow {
  width: 32px;
  height: 32px;
}

.cases-cards-slider .carousel-arrow.prev {
  left: 2px;
}

.cases-cards-slider .carousel-arrow.next {
  right: 2px;
}

  .case-card {
    flex: 0 0 100%;
    width: 100%;
    margin-right: 0;
    background: #041d2b;
    border: 1px solid rgba(255,255,255,.18);
  }

  .case-card img {
    width: 100%;
    max-width: 100%;
  }

  .case-logo-item {
    flex: 0 0 calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
    min-height: 84px;
  }

  .case-logo-item img {
    max-height: 50px;
  }
}

@media (max-width: 560px) {
  .cases-cards-slider {
    padding: 0 42px;
  }

  .cases-logos-slider {
    padding: 0 18px;
  }

  .case-logo-item {
    min-height: 78px;
  }

  .case-logo-item img {
    max-height: 46px;
  }
}

/* PAGE HERO / INTERNAL */

.page-hero {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  color: #fff;
  padding: 40px 0 70px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

.page-hero__image {
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__text p {
  color: rgba(255,255,255,.84);
  line-height: 1.75;
}

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

.info-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(10,63,99,.08);
  border: 1px solid rgba(10,63,99,.08);
}

.info-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  color: var(--bg);
}

.info-card p,
.info-card li {
  color: var(--text-soft);
  line-height: 1.7;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
}

.cta-band {
  background: linear-gradient(90deg, #06385a 0%, #052b46 100%);
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.content-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.content-link {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(10,63,99,.08);
  box-shadow: 0 14px 34px rgba(10,63,99,.06);
}

.content-link strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bg);
}

.content-link span {
  color: var(--text-soft);
}

/* FOOTER */

.site-footer {
  background: #083a5d;
  color: #fff;
  padding-top: 38px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.footer-brand img {
  width: 320px;
  max-width: 100%;
  height: auto;
}

.footer-address {
  margin-top: 22px;
  color: rgba(255,255,255,.95);
  line-height: 1.45;
  font-size: .98rem;
}

.footer-social {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f2f2f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  opacity: .95;
}

.footer-social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-column h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  font-size: .96rem;
  line-height: 1.3;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 34px;
  padding: 18px 0 22px;
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}

/* MENTORES */

.section.section--deep .section-subtitle {
  color: #ffffff;
  font-size: 1.34rem;
  line-height: 1.45;
  max-width: 980px;
  margin: 0 auto 10px;
  font-family: var(--font-body);
  font-style: normal;
}

/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3, 12, 20, .8);
  z-index: 120;
}

.modal.is-open { display: grid; }

.modal__dialog {
  width: min(960px, calc(100vw - 32px));
  background: #041f32;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.modal__close {
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
}

.modal__body {
  aspect-ratio: 16 / 9;
  background: #000;
}

.modal__body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* WHATSAPP FIXO */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  transition: transform .2s ease;
}

.floating-whatsapp img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

/* RESPONSIVO */

@media (max-width: 1100px) {
  .page-hero__grid,
  .content-links {
    grid-template-columns: 1fr 1fr;
  }

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

  .team-card {
  flex-basis: calc((100% - 2 * 24px) / 3);
  width: calc((100% - 2 * 24px) / 3);
}

  .hero-slides {
    aspect-ratio: 1536 / 1186;
    min-height: 820px;
    max-height: none;
  }

  .hero-slide__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-slide__content {
    grid-column: 1 !important;
    justify-self: start !important;
    min-height: auto;
    max-width: min(760px, 100%);
    padding: 112px 0 92px;
    justify-content: flex-start;
  }

  .slide-crisol .hero-slide__media img {
    object-position: center center;
  }

  .slide-crisol .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(3, 17, 29, 0.82) 0%,
      rgba(3, 17, 29, 0.68) 30%,
      rgba(3, 17, 29, 0.34) 58%,
      rgba(3, 17, 29, 0.10) 100%
    );
  }

  .slide-crisol .hero-slide__content {
    max-width: 980px;
    padding: 124px 0 92px;
  }

  .slide-crisol .section-kicker {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    margin-bottom: 18px;
  }

  .slide-crisol .hero-title-crisol {
    width: min(780px, 86vw);
  }

  .slide-crisol .hero-copy {
    max-width: 800px;
    font-size: clamp(1.4rem, 2.1vw, 1.95rem);
    line-height: 1.38;
    margin-bottom: 26px;
  }

  .slide-crisol .hero-actions .btn {
    min-height: 74px;
    padding: 0 34px;
    font-size: 1.16rem;
  }

  .slide-consultoria .hero-feature-line {
    flex-wrap: wrap;
    gap: 18px;
  }

  .slide-consultoria .hero-feature-line::before {
    width: 100%;
  }

  .section.section--deep .section-subtitle {
    font-size: 1.22rem;
  }

  .testimonials .section-lead {
    font-size: 1.2rem;
  }

  .results .section-lead {
    font-size: 1.24rem;
  }

  .result-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {

  .page-hero__grid,
  .products-grid,
  .page-grid,
  .content-links,
  .site-footer__grid,
  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .hero-arrow,
  .carousel-arrow {
    width: 42px;
    height: 42px;
  }

  .slide-consultoria .hero-title {
    font-size: clamp(2rem, 7.2vw, 3.1rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .slide-consultoria .hero-copy {
    font-size: .98rem;
    line-height: 1.48;
  }

  .slide-consultoria .hero-feature-line {
    margin: 14px 0 18px;
    padding-top: 14px;
    gap: 14px;
  }

  .slide-consultoria .hero-feature-item {
    width: calc(50% - 7px);
    min-width: 0;
    align-items: flex-start;
    gap: 8px;
  }

  .slide-consultoria .hero-feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .slide-consultoria .hero-feature-label {
    font-size: .78rem;
    line-height: 1.12;
    max-width: none;
  }

  .team-slider {
  padding: 0 56px;
}

.team-slider .carousel-viewport {
  overflow: hidden;
}

.team-slider .carousel-arrow {
  top: 50%;
  width: 40px;
  height: 40px;
}

.team-slider .carousel-arrow.prev {
  left: 8px;
}

.team-slider .carousel-arrow.next {
  right: 8px;
}

.team-card {
  flex: 0 0 100%;
  width: 100%;
  margin-right: 0;
}

.team-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .section.section--deep .section-subtitle {
    font-size: 1.05rem;
    line-height: 1.4;
    max-width: 92%;
  }

  .testimonials .section-lead {
    font-size: 1.02rem;
    line-height: 1.42;
    max-width: 92%;
  }

  .results .section-lead {
    font-size: 1.08rem;
    line-height: 1.45;
    max-width: 92%;
  }

  .result-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .site-footer__grid {
    gap: 28px;
  }

  .footer-brand img {
    width: 240px;
  }

  .footer-social {
    margin-top: 28px;
  }

  .footer-bottom {
    font-size: .84rem;
    line-height: 1.4;
    padding-left: 12px;
    padding-right: 12px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .floating-whatsapp img {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 767px) {
  .hero-slides {
    aspect-ratio: 1040 / 1536;
    min-height: 900px;
    max-height: none;
  }

  .hero-slide__grid {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 0;
  }

  .hero-slide__content {
    width: 100%;
    max-width: 100%;
    padding: 84px 0 94px;
    justify-content: flex-start;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 18px;
    z-index: 40;
  }

  .slide-crisol .hero-slide__media img {
    object-position: center top;
  }

  .slide-crisol .hero-slide__overlay {
    background: linear-gradient(
      180deg,
      rgba(3, 17, 29, 0.16) 0%,
      rgba(3, 17, 29, 0.34) 24%,
      rgba(3, 17, 29, 0.62) 54%,
      rgba(3, 17, 29, 0.86) 100%
    );
  }

  .slide-crisol .hero-slide__content {
    padding: 84px 0 94px;
  }

  .slide-crisol .section-kicker {
    margin-bottom: 16px;
    font-size: clamp(1.45rem, 5.4vw, 2rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .slide-crisol .hero-title {
    margin-bottom: 18px;
  }

  .slide-crisol .hero-title-crisol {
    width: min(92vw, 720px);
  }

  .slide-crisol .hero-copy {
    max-width: 100%;
    font-size: clamp(1.18rem, 4.4vw, 1.46rem);
    line-height: 1.4;
    margin-bottom: 22px;
  }

  .slide-crisol .hero-actions .btn {
    width: 100%;
    min-height: 72px;
    padding: 0 22px;
    border-radius: 18px;
    font-size: 1.04rem;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .slide-consultoria .hero-feature-item {
    width: 100%;
  }

  .slide-consultoria .hero-feature-line {
    gap: 10px;
  }

  .slide-ims .hero-title {
    margin-bottom: 14px;
  }

  .slide-ims .ims-main-title::after {
    max-width: 280px;
  }

  .slide-sobre .hero-title {
    font-size: clamp(2.1rem, 9.6vw, 2.95rem);
  }
}

@media (max-width: 560px) {
  .section { padding: 58px 0; }

  .site-header__inner { min-height: 72px; }

  .brand img { width: 134px; }

  .hero-title { font-size: 2.1rem; }

  .hero-feature-line { gap: 10px; }

  .feature-pill {
    min-height: 44px;
    padding: 0 14px;
    font-size: .9rem;
  }

  .result-card { min-height: 148px; }

  .testimonial-video,
  .testimonial-video.center {
    min-height: 220px;
  }

  .footer-bottom { font-size: .85rem; }
}
/* =========================================================
   HERO FINAL LIMPO V4
========================================================= */

/* remove a faixa entre header e hero */
body {
  padding-top: 0 !important;
  overflow-x: hidden !important;
}

main {
  margin-top: 0;
  padding-top: 82px;
}

@media (max-width: 820px) {
  main {
    padding-top: 72px;
  }
}

.hero {
  margin-top: 0 !important;
  overflow: hidden !important;
  background: #052b46 !important;
}

.hero,
.hero-slider,
.hero-slides,
.hero-slide,
.hero-slide__grid,
.hero-slide__content {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.hero .container {
  width: min(1360px, calc(100vw - 64px)) !important;
}

.hero-slides {
  position: relative !important;
}

.hero-slide {
  position: absolute !important;
  inset: 0 !important;
}

.hero-slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-title-line {
  display: block !important;
}

@media (min-width: 821px) {
  .hero,
  .hero-slider,
  .hero-slides {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-slides {
    min-height: calc(100vh - 82px) !important;
    height: calc(100vh - 82px) !important;
    max-height: calc(100vh - 82px) !important;
  }

  .hero-slide__grid {
    height: 100% !important;
    min-height: 100% !important;
    align-items: center !important;
  }

  .hero-slide__content {
    min-height: auto !important;
    justify-content: center !important;
  }

  .hero-dots {
    bottom: 14px !important;
  }
  
  .hero .hero-arrow {
  display: flex !important;
}

.hero .carousel-arrow {
  display: none !important;
}
}

/* =========================
   CONSULTORIA DESKTOP
========================= */
@media (min-width: 821px) {
  .slide-consultoria .hero-slide__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr) !important;
    align-items: center !important;
  }

  .slide-consultoria .hero-slide__content {
  grid-column: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 960px !important;
  padding-left: 34px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  transform: translateY(108px) !important;
  text-align: left !important;
}

.slide-consultoria .hero-slide__content {
  display: flex !important;
  flex-direction: column !important;
}

.slide-consultoria .section-kicker {
  order: 1 !important;
}

.slide-consultoria .hero-title {
  order: 2 !important;
}

.slide-consultoria .hero-feature-line {
  order: 3 !important;
}

.slide-consultoria .hero-copy {
  order: 4 !important;
}

.slide-consultoria .hero-actions {
  order: 5 !important;
}

  .slide-consultoria .section-kicker {
  white-space: nowrap !important;
  font-size: clamp(1.24rem, 1.28vw, 1.48rem) !important;
  line-height: 1 !important;
  margin: 0 0 16px !important;
  color: #ffffff !important;
  width: min(560px, 100%) !important;
}

  .slide-consultoria .section-kicker::after {
    width: min(560px, 100%) !important;
    height: 2px !important;
    margin-top: 10px !important;
  }

  .slide-consultoria .hero-title {
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  font-size: clamp(2.3rem, 3vw, 3.4rem) !important;
  line-height: 1.04 !important;
  margin: 0 0 22px !important;
}

  .slide-consultoria .hero-title-line:nth-child(2),
  .slide-consultoria .hero-title-line:nth-child(3) {
    white-space: nowrap !important;
  }

  .slide-consultoria .hero-feature-line {
  display: flex !important;
  align-items: center !important;
  gap: 34px !important;
  margin: 0 0 18px !important;
  padding: 0 0 14px !important;
  width: min(830px, 100%) !important;
}

  .slide-consultoria .hero-feature-line::before {
    content: none !important;
  }

  .slide-consultoria .hero-feature-line::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: min(720px, 100%) !important;
    height: 2px !important;
    background: #cda55e !important;
  }

  .slide-consultoria .hero-feature-icon {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
  }

  .slide-consultoria .hero-feature-label {
    max-width: 120px !important;
    font-size: 0.74rem !important;
    line-height: 1.08 !important;
  }
  
  .slide-consultoria .hero-feature-item:nth-child(1) .hero-feature-label {
  max-width: 78px !important;
}

  .slide-consultoria .hero-copy {
  max-width: 760px !important;
  font-size: clamp(1rem, 1.02vw, 1.08rem) !important;
  line-height: 1.42 !important;
  margin: 0 0 22px !important;
}

  .slide-consultoria .hero-actions {
    gap: 16px !important;
    margin-top: 0 !important;
  }

  .slide-consultoria .hero-actions .btn {
    width: 240px !important;
    min-height: 58px !important;
    font-size: 0.86rem !important;
    padding: 0 16px !important;
  }
  
  .slide-consultoria .btn-secondary {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.slide-consultoria .btn-secondary:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(255,255,255,.04) !important;
}
  
}

/* =========================
   CRISOL DESKTOP
========================= */
@media (min-width: 821px) {
  .slide-crisol .hero-slide__grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr) !important;
    align-items: center !important;
  }

  .slide-crisol .hero-slide__content {
  grid-column: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 900px !important;
  padding-left: 34px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  transform: translateY(132px) !important;
  text-align: left !important;
}

  .slide-crisol .section-kicker {
  white-space: nowrap !important;
  width: min(760px, 100%) !important;
  max-width: 100% !important;
  font-size: clamp(1.38rem, 1.46vw, 1.68rem) !important;
  line-height: 1.06 !important;
  margin: 0 0 18px !important;
  color: var(--gold) !important;
}

  .slide-crisol .hero-title {
    margin: 0 0 16px !important;
  }

  .slide-crisol .hero-title-crisol {
  width: min(620px, 100%) !important;
  margin: 0 0 22px !important;
}

  .slide-crisol .hero-copy {
  max-width: 700px !important;
  font-size: clamp(1.14rem, 1.12vw, 1.24rem) !important;
  line-height: 1.42 !important;
  margin: 0 0 28px !important;
}

  .slide-crisol .hero-actions .btn {
  min-width: 292px !important;
  min-height: 58px !important;
}
  
  .slide-crisol .btn-primary {
  background: var(--gold) !important;
  color: #083a5d !important;
  border: 1px solid var(--gold) !important;
}

.slide-crisol .btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

}

/* =========================
   IMS DESKTOP
========================= */
@media (min-width: 821px) {
  .slide-ims .hero-slide__grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr) !important;
    align-items: center !important;
  }

  .slide-ims .hero-slide__content {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: center !important;
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  padding-left: 0 !important;
  padding-right: 34px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 0 0 auto !important;
  transform: translateY(98px) !important;
  text-align: left !important;
}

  .slide-ims .hero-title {
    display: block !important;
    max-width: none !important;
    margin: 0 0 18px !important;
    line-height: 1.08 !important;
  }

  .slide-ims .ims-topline {
    display: block !important;
    font-family: Garamond, "Times New Roman", serif !important;
    font-size: clamp(2.4rem, 2.8vw, 3.5rem) !important;
    line-height: 1 !important;
    color: #cda55e !important;
    margin-bottom: 10px !important;
  }

  .slide-ims .ims-main-title {
    display: block !important;
    font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif !important;
    font-size: clamp(1.9rem, 2.2vw, 2.8rem) !important;
    line-height: 1.08 !important;
    color: #fff !important;
    padding-bottom: 12px !important;
  }

  .slide-ims .ims-main-title::after {
    width: min(650px, 100%) !important;
    max-width: none !important;
    height: 2px !important;
    margin-top: 10px !important;
  }

  .slide-ims .hero-copy {
  max-width: 720px !important;
  font-size: clamp(1.06rem, 1.04vw, 1.16rem) !important;
  line-height: 1.4 !important;
  margin: 0 0 16px !important;
  text-align: left !important;
}

.slide-ims .hero-copy:last-of-type {
  font-size: clamp(1.08rem, 1.08vw, 1.18rem) !important;
  line-height: 1.38 !important;
  margin: 0 0 22px !important;
}

  .slide-ims .hero-copy:first-of-type {
  font-family: var(--font-body) !important;
  font-size: clamp(1.2rem, 1.3vw, 1.42rem) !important;
  line-height: 1.42 !important;
  margin-bottom: 14px !important;
}

  .slide-ims .hero-copy:first-of-type .gold {
    color: #cda55e !important;
  }

  .slide-ims .hero-feature-line {
    gap: 34px !important;
    margin: 18px 0 18px !important;
    flex-wrap: wrap !important;
  }

  .slide-ims .feature-pill {
    font-size: clamp(1.05rem, 1.25vw, 1.28rem) !important;
    color: #cda55e !important;
  }

  .slide-ims .hero-actions {
  gap: 16px !important;
  margin-top: 6px !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

  .slide-ims .hero-actions .btn {
    width: 240px !important;
    min-height: 58px !important;
    font-size: 0.86rem !important;
    padding: 0 16px !important;
  }
  
  .slide-ims .btn-secondary {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.slide-ims .btn-secondary:hover {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  background: rgba(255,255,255,.04) !important;
}
  
}

/* =========================
   MOBILE GERAL
========================= */
@media (max-width: 820px) {
  .hero .container {
    width: calc(100vw - 34px) !important;
  }

  .hero-slides {
    position: relative !important;
    min-height: calc(100svh - 72px) !important;
    height: calc(100svh - 72px) !important;
    max-height: none !important;
    aspect-ratio: auto !important;
  }

  .hero-slide {
    width: 100% !important;
    height: 100% !important;
  }

  .hero-slide__media,
  .hero-slide__media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero-slide__grid {
  grid-template-columns: 1fr !important;
  align-items: center !important;
  height: 100% !important;
  min-height: 100% !important;
}

.hero-slide__content {
  width: 100% !important;
  max-width: 100% !important;
  min-height: auto !important;
  transform: none !important;
  padding: 0 !important;
  align-self: center !important;
}

  .hero-arrow {
    display: none !important;
  }

  .hero-dots {
    bottom: 18px !important;
    z-index: 40 !important;
  }
}

/* =========================
   CRISOL MOBILE
========================= */
@media (max-width: 820px) {
  .slide-crisol .hero-slide__media img {
    object-position: 60% top !important;
  }

  .slide-crisol .hero-slide__grid {
  padding: 116px 0 132px !important;
  align-items: center !important;
}

  .slide-crisol .hero-slide__content {
  width: min(82vw, 500px) !important;
  max-width: min(82vw, 500px) !important;
  margin: 0 auto !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

  .slide-crisol .section-kicker {
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  font-size: clamp(0.9rem, 3vw, 1.08rem) !important;
  line-height: 1.14 !important;
  margin: 0 0 18px !important;
  text-align: center !important;
  color: var(--gold) !important;
}

  .slide-crisol .hero-title {
    margin: 0 0 18px !important;
  }

  .slide-crisol .hero-title-crisol {
    width: min(78vw, 360px) !important;
    margin: 0 auto !important;
  }

  .slide-crisol .hero-copy {
  max-width: 100% !important;
  font-size: clamp(0.98rem, 3.5vw, 1.08rem) !important;
  line-height: 1.5 !important;
  margin: 0 0 28px !important;
  text-align: center !important;
}

  .slide-crisol .hero-actions {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 12px !important;
}

  .slide-crisol .hero-actions .btn {
  width: min(68vw, 300px) !important;
  min-height: 56px !important;
  font-size: 0.9rem !important;
  padding: 0 14px !important;
  border-radius: 18px !important;
  margin: 0 auto !important;
}
  
  .slide-crisol .btn-primary {
  background: var(--gold) !important;
  color: #083a5d !important;
  border: 1px solid var(--gold) !important;
}

.slide-crisol .btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}
  
}

/* =========================
   CONSULTORIA MOBILE
========================= */
@media (max-width: 820px) {
  .slide-consultoria .hero-slide__media img {
    object-position: 68% top !important;
  }

  .slide-consultoria .hero-slide__grid {
  padding: 52px 0 80px !important;
  align-items: center !important;
}

  .slide-consultoria .hero-slide__content {
  width: min(84vw, 500px) !important;
  max-width: min(84vw, 500px) !important;
  margin: 0 auto !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

  .slide-consultoria .section-kicker {
  font-size: clamp(0.82rem, 2.7vw, 0.96rem) !important;
  line-height: 1 !important;
  margin: 0 0 10px !important;
  white-space: nowrap !important;
}

  .slide-consultoria .section-kicker::after {
    width: 100% !important;
    height: 2px !important;
    margin-top: 8px !important;
  }

  .slide-consultoria .hero-title {
  width: 100% !important;
  max-width: none !important;
  font-size: clamp(1.34rem, 4.2vw, 1.82rem) !important;
  line-height: 1.08 !important;
  margin: 0 0 12px !important;
}
  .slide-consultoria .hero-title-line:nth-child(2),
  .slide-consultoria .hero-title-line:nth-child(3) {
    white-space: nowrap !important;
  }

  .slide-consultoria .hero-feature-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 0 0 14px !important;
    padding: 0 0 14px !important;
    position: relative !important;
  }

  .slide-consultoria .hero-feature-line::before {
    content: none !important;
  }

  .slide-consultoria .hero-feature-line::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #cda55e !important;
  }

  .slide-consultoria .hero-feature-item {
    width: 100% !important;
    gap: 12px !important;
    align-items: center !important;
  }

  .slide-consultoria .hero-feature-icon {
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 40px !important;
  }

  .slide-consultoria .hero-feature-label {
    max-width: none !important;
    font-size: 0.72rem !important;
    line-height: 1.08 !important;
  }

  .slide-consultoria .hero-copy {
  max-width: 100% !important;
  font-size: clamp(0.88rem, 3vw, 0.96rem) !important;
  line-height: 1.38 !important;
  margin: 0 0 14px !important;
}

  .slide-consultoria .hero-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .slide-consultoria .hero-actions .btn {
    width: min(72vw, 330px) !important;
    min-height: 56px !important;
    font-size: 0.86rem !important;
    padding: 0 14px !important;
  }
  
  .slide-consultoria .btn-secondary {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}
  
  .slide-consultoria .section-kicker,
.slide-consultoria .hero-title,
.slide-consultoria .hero-copy {
  text-align: center !important;
}

.slide-consultoria .hero-feature-line {
  align-items: flex-start !important;
}

.slide-consultoria .hero-feature-item {
  justify-content: flex-start !important;
  text-align: left !important;
}

.slide-consultoria .hero-actions {
  align-items: center !important;
}

.slide-consultoria .hero-actions .btn {
  margin: 0 auto !important;
}
  
}

/* =========================
   IMS MOBILE
========================= */
@media (max-width: 820px) {
  .slide-ims .hero-slide__media img {
    object-position: center 56% !important;
  }

  .slide-ims .hero-slide__grid {
  padding: 52px 0 80px !important;
  align-items: center !important;
}

  .slide-ims .hero-slide__content {
  width: min(82vw, 500px) !important;
  max-width: min(82vw, 500px) !important;
  margin: 0 auto !important;
  justify-self: center !important;
  align-self: center !important;
  text-align: center !important;
}

  .slide-ims .hero-title {
    display: block !important;
    max-width: none !important;
    margin: 0 0 14px !important;
    line-height: 1.08 !important;
  }

  .slide-ims .ims-topline {
  display: block !important;
  font-size: clamp(1.8rem, 5.8vw, 2.5rem) !important;
  line-height: 1 !important;
  margin-bottom: 8px !important;
  color: #cda55e !important;
  text-align: center !important;
}

  .slide-ims .ims-main-title {
  display: block !important;
  font-size: clamp(0.96rem, 4vw, 1.38rem) !important;
  line-height: 1.1 !important;
  text-align: center !important;
  padding-bottom: 10px !important;
}

  .slide-ims .ims-main-title::after {
    width: 100% !important;
    max-width: none !important;
    height: 2px !important;
    margin-top: 10px !important;
  }

  .slide-ims .hero-copy {
  max-width: 100% !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.9rem, 3.2vw, 0.98rem) !important;
  line-height: 1.34 !important;
  margin: 0 0 12px !important;
  text-align: center !important;
}

  .slide-ims .hero-copy:first-of-type {
  font-family: var(--font-body) !important;
  font-size: clamp(0.9rem, 3.2vw, 0.98rem) !important;
  line-height: 1.34 !important;
  text-align: center !important;
  margin-bottom: 12px !important;
}

  .slide-ims .hero-feature-line {
  gap: 26px !important;
  margin: 16px 0 16px !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
}

  .slide-ims .feature-pill {
  font-size: clamp(0.78rem, 3.1vw, 0.9rem) !important;
  text-align: center !important;
  justify-content: center !important;
}

  .slide-ims .hero-actions {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .slide-ims .hero-actions .btn {
    width: min(72vw, 330px) !important;
    min-height: 56px !important;
    font-size: 0.86rem !important;
    padding: 0 14px !important;
  }
  
  .slide-ims .btn-secondary {
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}
  
  .slide-ims .hero-slide__overlay {
  background: linear-gradient(
    180deg,
    rgba(3, 21, 34, 0.40) 0%,
    rgba(3, 21, 34, 0.54) 28%,
    rgba(3, 21, 34, 0.72) 60%,
    rgba(3, 21, 34, 0.86) 100%
  ) !important;
}

.slide-ims .ims-main-title,
.slide-ims .hero-copy,
.slide-ims .hero-copy:first-of-type {
  text-align: center !important;
}

.slide-ims .hero-actions {
  align-items: center !important;
}

.slide-ims .hero-actions .btn {
  margin: 0 auto !important;
}
  
}
/* =========================================================
   SOBRE FINAL + REMOÇÃO DEFINITIVA DA FAIXA
========================================================= */

.hero:first-of-type {
  margin-top: 0 !important;
}

/* ===== SOBRE DESKTOP ===== */
@media (min-width: 821px) {
  .slide-sobre {
    background-position: right center !important;
    background-size: cover !important;
  }

  .slide-sobre .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(3, 21, 34, 0.82) 0%,
      rgba(3, 21, 34, 0.74) 34%,
      rgba(3, 21, 34, 0.36) 58%,
      rgba(3, 21, 34, 0.06) 100%
    ) !important;
  }

  .slide-sobre .hero-slide__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr) !important;
    align-items: center !important;
  }

  .slide-sobre .hero-slide__content {
  grid-column: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 860px !important;
  padding-left: 34px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  transform: translateY(168px) !important;
  text-align: left !important;
}
  .slide-sobre .hero-title {
  width: min(760px, 100%) !important;
  max-width: 760px !important;
  font-size: clamp(2.3rem, 3vw, 3.4rem) !important;
  line-height: 1.04 !important;
  margin: 0 0 22px !important;
}

  .slide-sobre .hero-title-line {
    display: block !important;
  }

  .slide-sobre .hero-title-line--1,
  .slide-sobre .hero-title-line--2 {
    display: inline !important;
  }

  .slide-sobre .hero-title-line--1::after {
    content: " " !important;
  }

  .slide-sobre .hero-title .gold {
    color: #cda55e !important;
  }

  .slide-sobre .hero-copy {
  max-width: 760px !important;
  font-size: clamp(1.06rem, 1.04vw, 1.16rem) !important;
  line-height: 1.42 !important;
  margin: 0 0 18px !important;
  text-align: left !important;
}

.slide-sobre .hero-copy:first-of-type {
  font-size: clamp(1.06rem, 1.04vw, 1.16rem) !important;
  line-height: 1.42 !important;
  margin-bottom: 18px !important;
}

  .slide-sobre .hero-copy:last-of-type {
  max-width: 760px !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.08rem, 1.1vw, 1.22rem) !important;
  line-height: 1.5 !important;
  margin: 0 0 30px !important;
}

  .slide-sobre .hero-actions {
    margin-top: 0 !important;
  }

  .slide-sobre .hero-actions .btn {
    width: 290px !important;
    min-height: 58px !important;
    padding: 0 18px !important;
    font-size: 0.9rem !important;
    border-radius: 16px !important;
  }
  
  .slide-sobre .btn-primary {
  background: var(--gold) !important;
  color: #083a5d !important;
  border: 1px solid var(--gold) !important;
}

.slide-sobre .btn-primary:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}
  
}

/* ===== SOBRE MOBILE ===== */
@media (max-width: 820px) {
  .slide-sobre {
    background-position: left center !important;
    background-size: cover !important;
  }

  .slide-sobre .hero-slide__overlay {
    background: linear-gradient(
      180deg,
      rgba(3, 21, 34, 0.22) 0%,
      rgba(3, 21, 34, 0.32) 22%,
      rgba(3, 21, 34, 0.52) 52%,
      rgba(3, 21, 34, 0.72) 100%
    ) !important;
  }

  .slide-sobre .hero-slide__grid {
    padding: 86px 0 88px !important;
    align-items: start !important;
  }

  .slide-sobre .hero-slide__content {
    width: min(84vw, 520px) !important;
    max-width: min(84vw, 520px) !important;
    margin: 0 auto !important;
    justify-self: center !important;
    text-align: center !important;
  }

  .slide-sobre .hero-title {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 28px !important;
    font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif !important;
    font-size: clamp(2.2rem, 7.4vw, 3.05rem) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
  }

  .slide-sobre .hero-title-line {
    display: block !important;
  }

  .slide-sobre .hero-title .gold {
    color: #cda55e !important;
  }

  .slide-sobre .hero-copy {
    max-width: 100% !important;
    margin: 0 0 24px !important;
    font-size: clamp(0.98rem, 3.8vw, 1.14rem) !important;
    line-height: 1.48 !important;
    text-align: center !important;
    color: #fff !important;
  }

  .slide-sobre .hero-copy:last-of-type {
    margin: 0 0 34px !important;
    font-family: var(--font-body) !important;
  text-align: center !important;
    font-size: clamp(1.02rem, 4vw, 1.2rem) !important;
    line-height: 1.52 !important;
  }

  .slide-sobre .hero-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .slide-sobre .hero-actions .btn {
    width: min(62vw, 270px) !important;
    min-height: 54px !important;
    padding: 0 14px !important;
    font-size: 0.86rem !important;
    border-radius: 16px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 560px) {
  .slide-sobre .hero-title {
    font-size: clamp(2rem, 7vw, 2.78rem) !important;
  }

  .slide-sobre .hero-copy {
    font-size: clamp(0.94rem, 3.7vw, 1.04rem) !important;
  }

  .slide-sobre .hero-copy:last-of-type {
    font-size: clamp(0.98rem, 3.9vw, 1.12rem) !important;
  }

  .slide-sobre .hero-actions .btn {
    width: min(66vw, 250px) !important;
  }
}

/* ===== FORMULÁRIO FALE CONOSCO ===== */

.contact-section {
  background: #ffffff;
  padding: 44px 0 86px;
}

.contact-section .container {
  width: min(1360px, calc(100vw - 34px));
}

.contact-shell {
  background: #ffffff;
  border: 2px solid rgba(8, 53, 86, 0.78);
  border-radius: 18px;
  padding: 34px 28px 28px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(620px, 1.2fr);
  column-gap: 72px;
  align-items: start;
}

.contact-copy-side {
  min-width: 0;
  padding: 18px 0 0 6px;
}

.contact-copy-inner {
  max-width: 520px;
}

.contact-title-display {
  margin: 0 0 22px;
  color: #083a5d;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(4rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.contact-subtitle {
  margin: 0 0 16px;
  color: #083a5d;
  font-family: var(--font-body);
  font-size: clamp(2rem, 2.1vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
}

.contact-copy-text {
  margin: 0;
  max-width: 520px;
  color: #083a5d;
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.6;
}

.contact-form-side {
  min-width: 0;
  max-width: none;
  padding-left: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.contact-grid-phone {
  grid-template-columns: 150px 96px minmax(0, 1fr);
  gap: 14px;
}

.contact-field {
  position: relative;
}

.contact-label {
  position: absolute;
  top: -12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 4px;
  background: #0a3f63;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.contact-label-static {
  background: #0a3f63;
}

.contact-label.is-error {
  background: #d73a30;
  color: #fff;
}

.contact-input {
  width: 100%;
  height: 48px;
  border: 1.5px solid rgba(55, 55, 55, 0.55);
  border-radius: 2px;
  background: #ffffff;
  color: #202020;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-input:focus {
  border-color: #083a5d;
}

.contact-input-disabled {
  background: #ffffff;
  color: #202020;
}

.contact-select {
  background-image:
    linear-gradient(45deg, transparent 50%, #083a5d 50%),
    linear-gradient(135deg, #083a5d 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

.contact-textarea {
  height: 122px;
  min-height: 122px;
  resize: none;
  padding-top: 14px;
}

.contact-disclaimer {
  margin: 2px 0 0;
  max-width: 760px;
  color: #3e3e3e;
  font-size: 12.5px;
  line-height: 1.45;
}

.contact-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 4px;
}

.contact-submit {
  min-width: 180px;
  height: 52px;
  border: 1px solid #083a5d;
  border-radius: 4px;
  background: #083a5d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: #062d48;
}

.contact-disclaimer a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  color: inherit;
}

.contact-disclaimer a:hover {
  color: #cda55e;
}

@media (max-width: 1100px) {
  .contact-shell {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding: 28px 22px 24px;
  }

  .contact-copy-side {
    padding: 0;
  }

  .contact-copy-inner {
    max-width: 760px;
  }

  .contact-title-display {
    font-size: clamp(3.4rem, 8vw, 5.2rem);
    margin-bottom: 18px;
  }

  .contact-subtitle {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 26px 0 42px;
  }

  .contact-section .container {
    width: calc(100vw - 18px);
  }

  .contact-shell {
    background: #ffffff;
    border: 2px solid rgba(8, 53, 86, 0.78);
    border-radius: 18px;
    padding: 24px 16px 22px;
    row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .contact-title-display {
    font-size: clamp(2.8rem, 13vw, 4.9rem);
    line-height: 0.9;
    margin-bottom: 16px;
  }

  .contact-subtitle {
    font-size: clamp(1.1rem, 6.8vw, 2.1rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .contact-copy-text {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .contact-grid-2,
  .contact-grid-phone {
    grid-template-columns: 1fr;
  }

  .contact-input {
    height: 50px;
  }

  .contact-textarea {
    height: 160px;
    min-height: 160px;
  }

  .contact-disclaimer {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .contact-actions {
    padding-top: 6px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
    height: 56px;
    border-radius: 8px;
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .contact-title-display {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .contact-subtitle {
    font-size: clamp(1rem, 7vw, 1.7rem);
  }

  .contact-copy-text {
    font-size: 0.94rem;
  }
}

/* ===== CENTRAL DE AJUDA / FAQ ===== */

.help-center-section {
  background: #ffffff;
  padding: 56px 0 36px;
}

.help-center-section .container {
  width: min(1420px, calc(100vw - 48px));
}

.help-center-header {
  margin: 0 auto 26px;
  max-width: 1080px;
  text-align: center;
}

.help-center-title {
  margin: 0 0 14px;
  color: #0a2438;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.help-center-title .gold {
  color: #cda55e;
}

.help-center-lead {
  margin: 0 auto;
  max-width: 980px;
  color: #355067;
  font-family: var(--font-body);
  font-size: 1.12rem;
  line-height: 1.55;
}

.help-center-panel {
  max-width: 1420px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(8, 53, 86, 0.14);
  border-radius: 16px;
  overflow: hidden;
}

.help-center-content {
  min-width: 0;
}

.faq-group {
  margin: 0;
}

.faq-group + .faq-group {
  border-top: 1px solid rgba(8, 53, 86, 0.10);
}

.faq-group-title {
  display: none;
}

.faq-item {
  margin: 0;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(8, 53, 86, 0.10);
}

.faq-question {
  width: 100%;
  min-height: 84px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  color: #0a2438;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  background: #fafbfd;
}

.faq-item.is-open .faq-question {
  background: #ffffff;
  color: #0a2438;
}

.faq-icon {
  flex: 0 0 auto;
  color: #0a2438;
  font-size: 18px;
  line-height: 1;
  transition: transform .28s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 38px;
  transition:
    max-height 0.34s ease,
    opacity 0.22s ease,
    padding-top 0.34s ease,
    padding-bottom 0.34s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 520px;
  opacity: 1;
  padding-top: 0;
  padding-bottom: 26px;
}

.faq-answer p {
  margin: 0;
  max-width: 1280px;
  color: #355067;
  font-family: var(--font-body);
  font-size: 1.04rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .help-center-section .container {
    width: calc(100vw - 28px);
  }

  .help-center-title {
    font-size: clamp(2.1rem, 6vw, 3.4rem);
  }

  .help-center-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-question {
    min-height: 76px;
    padding: 0 26px;
    font-size: 1rem;
  }

  .faq-answer {
    padding-left: 26px;
    padding-right: 26px;
  }

  .faq-answer p {
    font-size: 0.98rem;
    line-height: 1.62;
  }
}

@media (max-width: 820px) {
  .help-center-section {
    padding: 44px 0 22px;
  }

  .help-center-section .container {
    width: calc(100vw - 18px);
  }

  .help-center-header {
    margin-bottom: 20px;
  }

  .help-center-title {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: 0.98;
  }

  .help-center-lead {
    max-width: 94%;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .help-center-panel {
    border-radius: 14px;
  }

  .faq-question {
    min-height: 70px;
    padding: 0 18px;
    font-size: 0.98rem;
    line-height: 1.28;
  }

  .faq-icon {
    font-size: 16px;
  }

  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item.is-open .faq-answer {
    padding-bottom: 20px;
  }

  .faq-answer p {
    font-size: 0.96rem;
    line-height: 1.54;
  }
}


/* =========================================================
   AJUSTES HOME — FORM, MENTORES, RESULTADOS E FAQ
========================================================= */

.mentors-band {
  position: relative;
  background:
    radial-gradient(circle at 16% 20%, rgba(159, 111, 25, 0.10), transparent 22%),
    radial-gradient(circle at 84% 82%, rgba(159, 82, 25, 0.12), transparent 18%),
    linear-gradient(135deg, #041d2b 0%, #04283d 62%, #08314a 78%, #9f6f19 122%, #9f5219 150%);
}

.mentors-band > .container,
.mentors-band .section-cta-row {
  position: relative;
  z-index: 1;
}

.result-card {
  border: 1px solid rgba(8, 53, 86, 0.62);
  box-shadow: 0 14px 34px rgba(8, 53, 86, 0.07);
}

.help-center-panel {
  border: 1px solid rgba(8, 53, 86, 0.20);
}

.faq-group + .faq-group {
  border-top: 1px solid rgba(8, 53, 86, 0.16);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(8, 53, 86, 0.16);
}

.contact-section {
  background: #ffffff;
  padding: 72px 0;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(620px, 1.18fr);
  gap: 0;
  background: linear-gradient(180deg, #0a3f63 0%, #052b46 100%);
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 18, 31, 0.18);
  padding: 0;
}

.contact-copy-side {
  min-width: 0;
  padding: 56px;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.contact-copy-inner {
  max-width: 520px;
}

.contact-title-display {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(3rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.contact-subtitle {
  margin: 0 0 14px;
  color: #cda55e;
  font-family: var(--font-title);
  font-size: 1.2rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 400;
}

.contact-copy-text {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

.contact-form-side {
  min-width: 0;
  max-width: none;
  padding: 40px;
  background: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

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

.contact-grid-phone {
  grid-template-columns: 170px 96px minmax(0, 1fr);
  gap: 14px;
}

.contact-field {
  position: relative;
}

.contact-label {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #5b6775;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
  white-space: normal;
}

.contact-label-static {
  background: transparent;
  color: #5b6775;
}

.contact-label.is-error {
  background: transparent;
  color: #d73a30;
}

.contact-input,
.contact-textarea,
.contact-select {
  width: 100%;
  min-height: 48px;
  height: auto;
  padding: 12px 14px;
  border: 1px solid rgba(8, 53, 86, 0.16);
  border-radius: 10px;
  background: #f7f9fb;
  color: #0d2740;
  font-family: var(--font-body);
  font-size: 0.96rem;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus,
.contact-select:focus {
  border-color: #cda55e;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(205, 165, 94, 0.12);
}

.contact-input-disabled {
  background: #eef3f7;
  color: #4b5c6b;
}

.contact-textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-disclaimer {
  font-size: 0.78rem;
  color: #5b6775;
  line-height: 1.45;
  margin: 8px 0 0;
  max-width: none;
}

.contact-disclaimer a {
  color: #083a5d;
  text-decoration: underline;
}

.contact-actions {
  padding-top: 12px;
}

.contact-submit {
  background: #cda55e;
  color: #102033;
  border: 0;
  padding: 14px 32px;
  border-radius: 14px;
  min-width: 190px;
  height: auto;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 16px 28px rgba(209, 162, 69, 0.22);
}

.contact-submit:hover {
  background: #dfb45e;
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .contact-section {
    padding: 28px 0 42px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .contact-copy-side {
    padding: 40px 22px 14px;
  }

  .contact-form-side {
    padding: 26px 22px 24px;
  }

  .contact-title-display {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
    line-height: 0.92;
    margin-bottom: 16px;
  }

  .contact-subtitle {
    font-size: clamp(1.05rem, 6vw, 1.6rem);
    margin-bottom: 14px;
  }

  .contact-copy-text {
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .contact-grid-2,
  .contact-grid-phone {
    grid-template-columns: 1fr;
  }

  .contact-input,
  .contact-textarea,
  .contact-select {
    min-height: 50px;
  }

  .contact-textarea {
    min-height: 160px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }
}


/* =========================================================
   AJUSTES V268 — VOLTA TAMANHO ANTERIOR + TEXTOS MAIORES
========================================================= */

.mentors-band {
  background:
    radial-gradient(circle at 16% 20%, rgba(209, 162, 69, 0.10), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(209, 162, 69, 0.14), transparent 20%),
    linear-gradient(135deg, #0d2740 0%, #0d2740 54%, #13334d 78%, #d1a245 145%) !important;
}

.contact-section {
  padding: 56px 0 150px !important;
}

.contact-section .container {
  width: min(1360px, calc(100vw - 34px)) !important;
}

.contact-shell {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 0.76fr) minmax(520px, 1.24fr) !important;
  column-gap: 28px !important;
  align-items: stretch !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  border: 1px solid rgba(8, 53, 86, 0.18) !important;
  background: linear-gradient(90deg, #0d2740 0%, #0d2740 42%, #ffffff 42%, #ffffff 100%) !important;
  box-shadow:
  0 0 0 1px rgba(8, 53, 86, 0.24),
  0 0 60px rgba(2, 18, 31, 0.34),
  0 0 120px rgba(2, 18, 31, 0.20) !important;
}

.contact-copy-side {
  min-width: 0 !important;
  padding: 30px 24px 26px 34px !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(209, 162, 69, 0.10), transparent 28%),
    linear-gradient(180deg, #0d2740 0%, #083a5d 100%) !important;
  display: flex !important;
  align-items: center !important;
  min-height: 100% !important;
}

.contact-copy-inner {
  max-width: 360px !important;
}

.contact-title-display {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: clamp(2.9rem, 4.1vw, 4.4rem) !important;
  line-height: 0.92 !important;
}

.contact-subtitle {
  margin: 0 0 12px !important;
  color: #d1a245 !important;
  font-size: clamp(1.04rem, 1.24vw, 1.24rem) !important;
  line-height: 1.16 !important;
}

.contact-copy-text {
  max-width: 350px !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.94rem !important;
  line-height: 1.52 !important;
}

.contact-form-side {
  min-width: 0 !important;
  padding: 18px 18px 18px 0 !important;
  background: transparent !important;
}

.contact-form {
  gap: 0 !important;
}

.contact-grid {
  gap: 8px !important;
  margin-bottom: 9px !important;
}

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

.contact-grid-phone {
  grid-template-columns: 118px 74px minmax(0, 1fr) !important;
  gap: 8px !important;
}

.contact-field {
  min-width: 0 !important;
}

.contact-label {
  position: static !important;
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 0 5px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #415262 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
  white-space: normal !important;
}

.contact-label-static {
  background: transparent !important;
}

.contact-label.is-error {
  background: transparent !important;
  color: #d73a30 !important;
}

.contact-input,
.contact-select {
  width: 100% !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 6px 10px !important;
  border: 1px solid rgba(8, 53, 86, 0.18) !important;
  border-radius: 10px !important;
  background: #f7f9fb !important;
  color: #0d2740 !important;
  font-size: 13.5px !important;
  line-height: 1.2 !important;
}

.contact-textarea {
  width: 100% !important;
  height: 64px !important;
  min-height: 64px !important;
  padding: 10px !important;
  border: 1px solid rgba(8, 53, 86, 0.18) !important;
  border-radius: 10px !important;
  background: #f7f9fb !important;
  color: #0d2740 !important;
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  resize: none !important;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: #d1a245 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(209, 162, 69, 0.12) !important;
}

.contact-select {
  padding-right: 30px !important;
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px) !important;
  background-size: 5px 5px, 5px 5px !important;
}

.contact-input-disabled {
  background: #eef3f7 !important;
  color: #4a5a6a !important;
}

.contact-disclaimer {
  margin: 4px 0 0 !important;
  max-width: none !important;
  color: #3f5060 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.contact-disclaimer a {
  color: #083a5d !important;
  text-decoration: underline !important;
}

.contact-actions {
  padding-top: 18px !important;
}

.contact-submit {
  min-width: 140px !important;
  height: 40px !important;
  padding: 0 18px !important;
  border-radius: 12px !important;
  background: #d1a245 !important;
  border: 0 !important;
  color: #102033 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}

.contact-submit:hover {
  background: #dfb45e !important;
}

.case-logo-item {
  min-height: 132px !important;
}

.case-logo-item img {
  max-height: 86px !important;
  max-width: 92% !important;
  width: auto !important;
}

@media (max-width: 1100px) {
  .contact-shell {
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    background: #ffffff !important;
  }

  .contact-copy-side {
    padding: 24px 20px 10px !important;
    border-bottom: 1px solid rgba(8, 53, 86, 0.08) !important;
  }

  .contact-copy-inner {
    max-width: 760px !important;
  }

  .contact-title-display {
    font-size: clamp(2.8rem, 7vw, 4rem) !important;
  }

  .contact-subtitle {
    font-size: clamp(1rem, 2.6vw, 1.24rem) !important;
  }

  .contact-copy-text {
    max-width: 760px !important;
    font-size: 1rem !important;
  }

  .contact-form-side {
    padding: 10px 18px 18px !important;
  }

  .case-logo-item {
    min-height: 112px !important;
  }

  .case-logo-item img {
    max-height: 70px !important;
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 20px 0 30px !important;
  }

  .contact-shell {
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
    background: #ffffff !important;
  }

  .contact-copy-side {
    padding: 24px 16px 8px !important;
  }

  .contact-title-display {
    font-size: clamp(2.6rem, 12vw, 4rem) !important;
    margin-bottom: 12px !important;
  }

  .contact-subtitle {
    font-size: clamp(1rem, 5.4vw, 1.24rem) !important;
    margin-bottom: 10px !important;
  }

  .contact-copy-text {
    font-size: 0.96rem !important;
    line-height: 1.48 !important;
  }

  .contact-form-side {
    padding: 8px 16px 16px !important;
  }

  .contact-grid-2,
  .contact-grid-phone {
    grid-template-columns: 1fr !important;
  }

  .contact-label {
    font-size: 13px !important;
  }

  .contact-input,
  .contact-select {
    height: 40px !important;
    min-height: 40px !important;
    font-size: 13px !important;
  }

  .contact-textarea {
    height: 100px !important;
    min-height: 100px !important;
    font-size: 13px !important;
  }

  .contact-disclaimer {
    font-size: 11.5px !important;
    line-height: 1.42 !important;
  }

  .contact-submit {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
  }

  .case-logo-item {
    min-height: 92px !important;
  }

  .case-logo-item img {
    max-height: 58px !important;
    max-width: 94% !important;
  }
}

@media (max-width: 560px) {
  .case-logo-item img {
    max-height: 52px !important;
  }
}


/* =========================================================
   AJUSTE V269 — SEPARAÇÃO VISUAL DO FORMULÁRIO
========================================================= */

.contact-shell {
  background: #ffffff !important;
  border-right-color: transparent !important;
}

.contact-copy-side {
  background:
    radial-gradient(circle at 18% 16%, rgba(209, 162, 69, 0.10), transparent 28%),
    linear-gradient(180deg, #0d2740 0%, #083a5d 100%) !important;
  border-right: 28px solid #ffffff !important;
}

.contact-form-side {
  background: #ffffff !important;
  padding-left: 18px !important;
}


/* =========================================================
   AJUSTE V270 — AUMENTAR APENAS TEXTOS DA ÁREA AZUL
========================================================= */

.contact-title-display {
  font-size: clamp(3.45rem, 4.6vw, 4.8rem) !important;
  line-height: 0.94 !important;
  margin-bottom: 16px !important;
}

.contact-subtitle {
  font-size: 1.46rem !important;
  line-height: 1.24 !important;
  margin-bottom: 18px !important;
}

.contact-copy-text {
  font-size: 1.28rem !important;
  line-height: 1.58 !important;
  max-width: 560px !important;
}

@media (max-width: 1100px) {
  .contact-title-display {
    font-size: clamp(3.5rem, 8.6vw, 5.5rem) !important;
  }

  .contact-subtitle {
    font-size: clamp(1.45rem, 3.8vw, 2rem) !important;
  }

  .contact-copy-text {
    font-size: 1.16rem !important;
  }
}

@media (max-width: 820px) {
  .contact-title-display {
    font-size: clamp(3.15rem, 13.5vw, 5.1rem) !important;
  }

  .contact-subtitle {
    font-size: clamp(1.28rem, 6.2vw, 1.82rem) !important;
    line-height: 1.2 !important;
  }

  .contact-copy-text {
    font-size: 1.06rem !important;
    line-height: 1.56 !important;
  }
}


/* =========================================================
   AJUSTE V300 — DIVISOR, VISÃO GERAL, POR QUE NOS ESCOLHEM E COMO TRABALHAMOS
========================================================= */

.overview-divider-section {
  display: none !important;
  background: #ffffff !important;
  padding: 6px 0 0 !important;
}

.overview-divider-section .container {
  display: flex !important;
  justify-content: center !important;
}

.overview-divider-line {
  display: block !important;
  width: min(1120px, 92vw) !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.12) 0%, rgba(205,165,94,0.95) 12%, rgba(205,165,94,0.95) 88%, rgba(205,165,94,0.12) 100%) !important;
  box-shadow: 0 0 12px rgba(205, 165, 94, 0.16) !important;
  margin: 10px auto 2px !important;
}

.overview-section {
  background: #ffffff !important;
  padding: 42px 0 88px !important;
}

.overview-section .overview-container {
  width: min(1200px, calc(100vw - 56px)) !important;
}

.overview-intro {
  max-width: 1140px !important;
  margin: 0 auto 58px !important;
}

.overview-main-title {
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  font-size: clamp(2.1rem, 2.7vw, 3rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.032em !important;
}

.overview-line {
  display: block !important;
  white-space: nowrap !important;
}

.overview-mark {
  white-space: nowrap !important;
}

.overview-mark::after {
  left: 0.06em !important;
  right: -0.05em !important;
  bottom: 0.05em !important;
  height: 0.15em !important;
}

.overview-lead {
  margin: 30px auto 0 !important;
  max-width: 1080px !important;
  font-size: 1.03rem !important;
  line-height: 1.72 !important;
}

.choose-us-section {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 11% 16%, rgba(205, 165, 94, 0.28) 0%, rgba(205, 165, 94, 0.16) 24%, transparent 48%),
    radial-gradient(circle at 82% 24%, rgba(205, 165, 94, 0.24) 0%, rgba(205, 165, 94, 0.12) 30%, transparent 56%),
    linear-gradient(135deg, #083a5d 0%, #073654 42%, #062f4c 68%, #041d2b 100%) !important;
  color: #ffffff !important;
  padding: 84px 0 92px !important;
}

.choose-us-container,
.how-work-container {
  width: min(1220px, calc(100vw - 56px)) !important;
  margin: 0 auto !important;
}

.choose-us-header,
.how-work-header {
  max-width: 980px !important;
  margin: 0 auto 44px !important;
}

.choose-us-kicker,
.how-work-kicker {
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}

.choose-us-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2.9rem, 4.5vw, 4.9rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.04em !important;
  font-weight: 700 !important;
}

.choose-us-title-main,
.choose-us-title-highlight {
  display: block !important;
}

.choose-us-title-highlight {
  color: #cda55e !important;
}

.choose-us-lead,
.how-work-lead {
  margin: 18px auto 0 !important;
  max-width: 900px !important;
  color: rgba(255,255,255,0.94) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.choose-us-grid,
.how-work-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.choose-us-grid {
  position: relative !important;
  isolation: isolate !important;
}

.choose-us-grid::before {
  content: "" !important;
  position: absolute !important;
  left: -7% !important;
  right: -7% !important;
  top: 57% !important;
  height: 7px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent 0%, rgba(205, 165, 94, 0.08) 18%, rgba(205, 165, 94, 0.46) 48%, rgba(205, 165, 94, 0.16) 76%, transparent 100%) !important;
  box-shadow: 0 0 26px rgba(205, 165, 94, 0.24) !important;
  opacity: 0.72 !important;
  transform: rotate(-7deg) scaleX(0.12) !important;
  transform-origin: left center !important;
  z-index: 0 !important;
  pointer-events: none !important;
  animation: chooseUsGrowthLine 4.6s ease-in-out infinite !important;
}

.choose-us-card,
.how-work-card {
  position: relative !important;
  min-height: 248px !important;
  padding: 28px 24px 28px !important;
  border-radius: 20px !important;
  background: rgba(4, 36, 61, 0.94) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 30px rgba(0,0,0,0.18) !important;
  overflow: hidden !important;
}

.choose-us-card::before,
.how-work-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at top center, rgba(205,165,94,0.14), transparent 48%) !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
  pointer-events: none !important;
}

.choose-us-card {
  z-index: 1 !important;
  transform-origin: bottom center !important;
  animation: chooseUsCardIn 0.85s cubic-bezier(.2,.72,.18,1) both !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease !important;
}

.choose-us-card:nth-child(1) { animation-delay: 0.05s !important; }
.choose-us-card:nth-child(2) { animation-delay: 0.18s !important; }
.choose-us-card:nth-child(3) { animation-delay: 0.31s !important; }
.choose-us-card:nth-child(4) { animation-delay: 0.44s !important; }

@keyframes chooseUsCardIn {
  0% {
    opacity: 0;
    transform: translateY(34px) scaleY(0.82) scaleX(0.96);
  }
  62% {
    opacity: 1;
    transform: translateY(-6px) scaleY(1.03) scaleX(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1) scaleX(1);
  }
}

@keyframes chooseUsGrowthLine {
  0% {
    opacity: 0;
    transform: rotate(-7deg) scaleX(0.08) translateX(-5%);
  }
  26% {
    opacity: 0.78;
  }
  58% {
    opacity: 0.72;
    transform: rotate(-7deg) scaleX(1) translateX(0);
  }
  100% {
    opacity: 0;
    transform: rotate(-7deg) scaleX(1.08) translateX(6%);
  }
}

.choose-us-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(205,165,94,0.5) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 42px rgba(0,0,0,0.24) !important;
  background: rgba(6, 45, 75, 0.98) !important;
}

.choose-us-card:hover::before {
  opacity: 1 !important;
}
@media (min-width: 1181px) {
  .choose-us-grid {
    align-items: end !important;
  }

  .choose-us-card:nth-child(1) {
    min-height: 260px !important;
  }

  .choose-us-card:nth-child(2) {
    min-height: 320px !important;
  }

  .choose-us-card:nth-child(3) {
    min-height: 380px !important;
  }

  .choose-us-card:nth-child(4) {
    min-height: 440px !important;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .choose-us-grid {
    align-items: end !important;
  }

  .choose-us-card:nth-child(1) {
    min-height: 250px !important;
  }

  .choose-us-card:nth-child(2) {
    min-height: 305px !important;
  }

  .choose-us-card:nth-child(3) {
    min-height: 360px !important;
  }

  .choose-us-card:nth-child(4) {
    min-height: 415px !important;
  }
}

.choose-us-number,
.how-work-number {
  margin: 0 0 12px !important;
  color: #cda55e !important;
  font-family: var(--font-title) !important;
  font-size: 2.4rem !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}

.choose-us-card-title,
.how-work-card-title {
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: 1.28rem !important;
  line-height: 1.16 !important;
  font-weight: 700 !important;
}

.choose-us-card-copy,
.how-work-card-copy {
  margin: 0 !important;
  color: rgba(255,255,255,0.94) !important;
  font-family: var(--font-body) !important;
  font-size: 1.06rem !important;
  line-height: 1.62 !important;
  font-weight: 400 !important;
}

.how-work-section {
  background: #083A5C !important;
  color: #ffffff !important;
  padding: 82px 0 92px !important;
}

.how-work-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2.8rem, 4.2vw, 4.55rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
  font-weight: 700 !important;
}

.how-work-title-main,
.how-work-title-highlight {
  display: inline !important;
}

.how-work-title-highlight {
  color: #cda55e !important;
}

.how-work-grid {
  margin-top: 16px !important;
}

.how-work-card {
  background: rgba(5, 41, 65, 0.9) !important;
}

@media (max-width: 1180px) {
  .overview-main-title {
    font-size: clamp(1.95rem, 2.5vw, 2.6rem) !important;
  }

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

@media (max-width: 900px) {
  .overview-line {
    white-space: normal !important;
  }

  .overview-main-title {
    font-size: clamp(1.9rem, 5.6vw, 2.42rem) !important;
  }

  .choose-us-title,
  .how-work-title {
    font-size: clamp(2.2rem, 8vw, 3.3rem) !important;
    line-height: 1.02 !important;
  }
}

@media (max-width: 820px) {
  .overview-divider-line {
    width: 88vw !important;
  }

  .overview-section {
    padding: 34px 0 70px !important;
  }

  .overview-section .overview-container,
  .choose-us-container,
  .how-work-container {
    width: calc(100vw - 32px) !important;
  }

  .overview-main-title {
    text-align: left !important;
    font-size: clamp(1.82rem, 7.8vw, 2.3rem) !important;
  }

  .overview-lead {
    margin-top: 22px !important;
    font-size: 0.96rem !important;
    line-height: 1.6 !important;
  }

  .choose-us-section,
  .how-work-section {
    padding: 64px 0 72px !important;
  }

  .choose-us-header,
  .how-work-header {
    margin-bottom: 34px !important;
  }

  .choose-us-kicker,
  .how-work-kicker {
    font-size: 0.76rem !important;
    letter-spacing: 0.18em !important;
  }

  .choose-us-grid,
  .how-work-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .choose-us-card,
  .how-work-card {
    min-height: auto !important;
    padding: 24px 20px !important;
    border-radius: 18px !important;
  }

  .choose-us-number,
  .how-work-number {
    font-size: 2rem !important;
  }

  .choose-us-card-title,
  .how-work-card-title {
    font-size: 1.18rem !important;
  }

  .choose-us-card-copy,
  .how-work-card-copy {
    font-size: 0.98rem !important;
    line-height: 1.56 !important;
  }
}


/* =========================================================
   AJUSTE V303 — VISÃO GERAL, COMO TRABALHAMOS E MENTORES
   Aplicado sobre a base v300 sem remover seções.
========================================================= */

/* Visão Geral — referência com títulos em Garamond e botão azul escuro */
.overview-section {
  background: #ffffff !important;
}

.overview-section .overview-container {
  width: min(1180px, calc(100vw - 48px)) !important;
  margin: 0 auto !important;
}

.overview-intro {
  max-width: 1120px !important;
  margin: 0 auto 58px !important;
}

.overview-main-title {
  max-width: 1120px !important;
  margin: 0 auto !important;
  text-align: center !important;
  color: #083a5d !important;
  font-family: var(--font-title) !important;
  font-weight: 700 !important;
  font-size: clamp(2.35rem, 3.55vw, 4.05rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.034em !important;
}

.overview-line {
  display: block !important;
}

.overview-mark {
  position: relative !important;
  display: inline-block !important;
  z-index: 1 !important;
}

.overview-mark::after {
  content: "" !important;
  position: absolute !important;
  left: 0.07em !important;
  right: -0.02em !important;
  bottom: 0.08em !important;
  height: 0.13em !important;
  background: #cda55e !important;
  border-radius: 999px !important;
  z-index: -1 !important;
}

.overview-lead {
  margin: 30px auto 0 !important;
  max-width: 1080px !important;
  color: #0b2d45 !important;
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  line-height: 1.68 !important;
}

.overview-lead strong,
.overview-method-copy strong {
  color: #083a5d !important;
  font-weight: 800 !important;
}

.overview-method-grid {
  display: grid !important;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr) !important;
  gap: 72px !important;
  align-items: start !important;
  margin-top: 0 !important;
}

.overview-method-title-wrap {
  min-width: 0 !important;
}

.overview-method-title {
  margin: 0 !important;
  color: #083a5d !important;
  font-family: var(--font-title) !important;
  font-weight: 700 !important;
  font-size: clamp(2.15rem, 3.2vw, 3.5rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.03em !important;
}

.overview-method-copy {
  min-width: 0 !important;
  max-width: 720px !important;
  padding-top: 2px !important;
}

.overview-method-copy p {
  margin: 0 0 18px !important;
  color: #0b2d45 !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
}

.overview-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 22px !important;
}

.overview-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 50px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  border: 1px solid #083a5d !important;
  background: #083a5d !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease !important;
}

.overview-button:hover {
  transform: translateY(-3px) !important;
  background: #cda55e !important;
  border-color: #cda55e !important;
  color: #083a5d !important;
  box-shadow: 0 16px 30px rgba(205, 165, 94, 0.24) !important;
}

/* Como Trabalhamos — animação nos blocos */
.how-work-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease !important;
  will-change: transform !important;
}

.how-work-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(205, 165, 94, 0.62) !important;
  background: rgba(8, 58, 92, 0.98) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 44px rgba(0,0,0,0.24) !important;
}

.how-work-card:hover::before {
  opacity: 1 !important;
}

/* Mentores — card inteiro clicável e borda dourada no hover */
.team-card {
  position: relative !important;
  display: block !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
}

.team-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border: 2px solid rgba(205, 165, 94, 0) !important;
  border-radius: 26px !important;
  pointer-events: none !important;
  transition: border-color 0.28s ease, box-shadow 0.28s ease !important;
}

.team-card:hover {
  transform: translateY(-6px) !important;
}

.team-card:hover::after {
  border-color: rgba(205, 165, 94, 0.98) !important;
  box-shadow: inset 0 0 0 1px rgba(205,165,94,0.18), 0 16px 34px rgba(0,0,0,0.24) !important;
}

.team-card img {
  border-radius: 26px !important;
}

@media (max-width: 1100px) {
  .overview-method-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .overview-method-copy {
    max-width: 100% !important;
  }
}

@media (max-width: 900px) {
  .overview-main-title {
    font-size: clamp(2rem, 6vw, 2.7rem) !important;
    line-height: 1.04 !important;
  }
}

@media (max-width: 820px) {
  .overview-section .overview-container {
    width: calc(100vw - 32px) !important;
  }

  .overview-intro {
    margin-bottom: 42px !important;
  }

  .overview-main-title {
    text-align: left !important;
    font-size: clamp(2rem, 8vw, 2.55rem) !important;
  }

  .overview-lead {
    margin-top: 22px !important;
    font-size: 0.96rem !important;
    line-height: 1.6 !important;
  }

  .overview-method-title {
    font-size: clamp(2rem, 8vw, 2.72rem) !important;
    line-height: 0.96 !important;
  }

  .overview-method-copy p {
    font-size: 0.96rem !important;
    line-height: 1.58 !important;
  }

  .overview-button {
    width: 100% !important;
  }
}


/* =========================================================
   AJUSTE V304 — REFINOS DE VISÃO GERAL, TEXTOS E HOVER
========================================================= */

/* Visão Geral: título centralizado no viewport inteiro, sem corte lateral */
.overview-intro {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.overview-main-title {
  width: min(1360px, calc(100vw - 32px)) !important;
  max-width: min(1360px, calc(100vw - 32px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  font-size: clamp(2.2rem, 2.72vw, 3.05rem) !important;
  line-height: 1.04 !important;
  overflow: visible !important;
}

.overview-line {
  display: block !important;
  white-space: nowrap !important;
}

/* Visão Geral: título lateral mantido em 3 linhas */
.overview-method-title {
  max-width: 430px !important;
  white-space: normal !important;
}

.overview-method-title br {
  display: block !important;
  content: "" !important;
}

/* Leads das seções solicitadas um pouco maiores */
.choose-us-lead {
  font-size: 1.14rem !important;
  line-height: 1.72 !important;
}

.how-work-lead {
  font-size: 1.14rem !important;
  line-height: 1.72 !important;
}

/* Mentores: espaço interno para a borda dourada do hover não ser cortada */
.team-slider .carousel-viewport {
  padding-top: 14px !important;
  margin-top: -14px !important;
  padding-bottom: 10px !important;
  margin-bottom: -10px !important;
}

.team-slider .carousel-track {
  padding-top: 2px !important;
}

.team-card:hover {
  transform: translateY(-5px) !important;
}

@media (max-width: 1180px) {
  .overview-main-title {
    width: min(1120px, calc(100vw - 32px)) !important;
    max-width: min(1120px, calc(100vw - 32px)) !important;
    font-size: clamp(2rem, 3.4vw, 2.72rem) !important;
  }

  .overview-line {
    white-space: normal !important;
  }
}

@media (max-width: 820px) {
  .overview-main-title {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    text-align: center !important;
    font-size: clamp(2rem, 7.4vw, 2.55rem) !important;
  }

  .overview-line {
    white-space: normal !important;
  }

  .choose-us-lead,
  .how-work-lead {
    font-size: 1.02rem !important;
    line-height: 1.62 !important;
  }

  .team-slider .carousel-viewport {
    padding-top: 12px !important;
    margin-top: -12px !important;
  }
}


/* =========================================================
   AJUSTE V305 — REFINO DE CENTRALIZAÇÃO VISÃO GERAL
========================================================= */

.overview-intro {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.overview-main-title {
  width: min(1240px, calc(100vw - 80px)) !important;
  max-width: min(1240px, calc(100vw - 80px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  font-size: clamp(2.05rem, 2.5vw, 2.85rem) !important;
  line-height: 1.05 !important;
}

.overview-method-grid {
  grid-template-columns: minmax(400px, 480px) minmax(0, 1fr) !important;
  gap: 58px !important;
}

.overview-method-title-wrap {
  max-width: 480px !important;
}

.overview-method-title {
  max-width: 480px !important;
  font-size: clamp(1.95rem, 2.55vw, 2.95rem) !important;
  line-height: 0.96 !important;
}

@media (max-width: 1180px) {
  .overview-main-title {
    width: min(1080px, calc(100vw - 48px)) !important;
    max-width: min(1080px, calc(100vw - 48px)) !important;
    font-size: clamp(1.95rem, 3.15vw, 2.55rem) !important;
  }

  .overview-method-grid {
    grid-template-columns: minmax(340px, 430px) minmax(0, 1fr) !important;
    gap: 44px !important;
  }

  .overview-method-title-wrap,
  .overview-method-title {
    max-width: 430px !important;
  }

  .overview-method-title {
    font-size: clamp(1.82rem, 2.7vw, 2.55rem) !important;
  }
}

@media (max-width: 980px) {
  .overview-method-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .overview-method-title-wrap,
  .overview-method-title {
    max-width: 520px !important;
  }
}

@media (max-width: 820px) {
  .overview-main-title {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    font-size: clamp(1.9rem, 7vw, 2.4rem) !important;
  }

  .overview-method-title,
  .overview-method-title-wrap {
    max-width: 100% !important;
  }
}


/* =========================================================
   AJUSTE V307 — CASES HOME SOBRE V305
========================================================= */

.cases-band {
  background: #041d2b !important;
  padding: 74px 0 34px !important;
  color: #ffffff !important;
}

.cases-band .container {
  width: min(1360px, calc(100vw - 40px)) !important;
}

.cases-home-header {
  max-width: 1180px !important;
  margin: 0 auto 46px !important;
}

.cases-home-title {
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-weight: 700 !important;
  font-size: clamp(2.35rem, 3.45vw, 4.25rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
}

.cases-home-title .gold {
  color: #cda55e !important;
}

.cases-home-lead {
  margin: 0 auto !important;
  max-width: 900px !important;
  color: rgba(255,255,255,0.86) !important;
  font-family: var(--font-body) !important;
  font-size: 1.08rem !important;
  line-height: 1.58 !important;
}

.cases-cards-slider {
  padding: 0 56px !important;
  margin-bottom: 34px !important;
  overflow: visible !important;
}

.cases-cards-slider .carousel-viewport {
  overflow: hidden !important;
  padding: 10px 0 18px !important;
  margin: -10px 0 -18px !important;
}

.cases-cards-slider .carousel-track {
  align-items: stretch !important;
}

.case-card {
  flex: 0 0 calc((100% - 2 * 18px) / 3) !important;
  width: calc((100% - 2 * 18px) / 3) !important;
  margin-right: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  min-height: 520px !important;
  background: #041d2b !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18) !important;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease !important;
}

.case-card:hover {
  transform: translateY(-7px) !important;
  border-color: rgba(205,165,94,0.98) !important;
  background: #06263a !important;
  box-shadow: 0 24px 54px rgba(0,0,0,0.28), 0 0 0 1px rgba(205,165,94,0.18) !important;
}

.case-card-image-wrap {
  min-height: 210px !important;
  height: 210px !important;
  padding: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #041d2b !important;
  border-bottom: 1px solid rgba(255,255,255,0.18) !important;
}

.case-card img.case-card-image,
.case-card-image {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  border-radius: 14px !important;
  display: block !important;
}

.case-card-body {
  padding: 26px 28px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}

.case-card-segment {
  margin: 0 0 14px !important;
  color: #cda55e !important;
  font-family: var(--font-body) !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
}

.case-card-title {
  margin: 0 0 16px !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: clamp(1.58rem, 1.85vw, 2.05rem) !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.case-card-result {
  margin: 0 0 18px !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: .98rem !important;
  line-height: 1.34 !important;
  font-weight: 700 !important;
}

.case-card-description {
  margin: 0 !important;
  color: rgba(255,255,255,0.88) !important;
  font-family: var(--font-body) !important;
  font-size: .98rem !important;
  line-height: 1.62 !important;
}

@media (max-width: 1100px) {
  .case-card {
    flex: 0 0 calc((100% - 18px) / 2) !important;
    width: calc((100% - 18px) / 2) !important;
  }

  .case-card-image-wrap {
    min-height: 200px !important;
    height: 200px !important;
  }
}

@media (max-width: 820px) {
  .cases-band {
    padding: 52px 0 28px !important;
  }

  .cases-band .container {
    width: calc(100vw - 18px) !important;
  }

  .cases-home-header {
    margin-bottom: 30px !important;
    padding: 0 10px !important;
  }

  .cases-home-title {
    font-size: clamp(2rem, 9vw, 3.1rem) !important;
    line-height: 1 !important;
  }

  .cases-home-lead {
    max-width: 92% !important;
    font-size: .98rem !important;
    line-height: 1.5 !important;
  }

  .cases-cards-slider {
    padding: 0 46px !important;
    margin-bottom: 24px !important;
  }

  .case-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    margin-right: 0 !important;
    min-height: auto !important;
  }

  .case-card-image-wrap {
    min-height: 190px !important;
    height: 190px !important;
    padding: 16px !important;
  }

  .case-card-body {
    padding: 22px 22px 24px !important;
  }
}

@media (max-width: 560px) {
  .cases-cards-slider {
    padding: 0 42px !important;
  }

  .case-card-image-wrap {
    min-height: 170px !important;
    height: 170px !important;
  }

  .case-card-title {
    font-size: 1.48rem !important;
  }

  .case-card-result,
  .case-card-description {
    font-size: .92rem !important;
  }
}

/* =========================================================
   AJUSTE V323 — POR QUE EMPRESÁRIOS NOS ESCOLHEM + VISÃO GERAL
========================================================= */

.choose-us-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(209, 162, 69, 0.10), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(209, 162, 69, 0.14), transparent 20%),
    linear-gradient(135deg, #0d2740 0%, #0d2740 54%, #13334d 78%, #d1a245 145%) !important;
}

.overview-method-title {
  position: relative !important;
  max-width: 520px !important;
  padding-bottom: 18px !important;
  color: #083a5d !important;
  font-size: clamp(2.18rem, 2.82vw, 3.28rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.034em !important;
}

.overview-method-title::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 132px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #cda55e 0%, rgba(205, 165, 94, 0.12) 100%) !important;
}

.overview-method-copy p:first-child {
  margin-bottom: 24px !important;
  padding: 18px 22px 18px 24px !important;
  border-left: 4px solid #cda55e !important;
  border-radius: 16px !important;
  background: linear-gradient(90deg, rgba(205, 165, 94, 0.12) 0%, rgba(205, 165, 94, 0.035) 58%, rgba(255, 255, 255, 0) 100%) !important;
  color: #083a5d !important;
  font-size: 1.06rem !important;
  line-height: 1.64 !important;
}

.overview-method-copy p:first-child strong {
  color: #083a5d !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .overview-method-title {
    max-width: 560px !important;
  }
}

@media (max-width: 820px) {
  .overview-method-title {
    max-width: 100% !important;
    padding-bottom: 16px !important;
    font-size: clamp(2rem, 8vw, 2.72rem) !important;
  }

  .overview-method-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 118px !important;
  }

  .overview-method-copy p:first-child {
    padding: 16px 18px !important;
    font-size: 0.98rem !important;
    line-height: 1.58 !important;
  }
}


/* =========================================================
   AJUSTE V324 — VISÃO GERAL: TEXTOS CENTRALIZADOS
========================================================= */

.overview-method-grid {
  display: block !important;
  max-width: 1140px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.overview-method-title-wrap {
  max-width: 1140px !important;
  margin: 0 auto 26px !important;
  text-align: center !important;
}

.overview-method-title {
  max-width: 1140px !important;
  margin: 0 auto !important;
  text-align: center !important;
  padding-bottom: 16px !important;
  font-size: clamp(2.1rem, 2.75vw, 3.05rem) !important;
  line-height: 1.03 !important;
}

.overview-method-title br:first-of-type {
  display: none !important;
}

.overview-method-title br:nth-of-type(2) {
  display: block !important;
}

.overview-method-title::after {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.overview-method-copy {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.overview-method-copy p {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left !important;
}

.overview-method-copy p:first-child {
  margin: 0 auto 24px !important;
  padding: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 820px) {
  .overview-method-grid,
  .overview-method-title-wrap,
  .overview-method-title,
  .overview-method-copy,
  .overview-method-copy p {
    max-width: 100% !important;
  }

  .overview-method-title {
    font-size: clamp(2rem, 7.4vw, 2.55rem) !important;
  }
}

/* =========================================================
   AJUSTE V325 — VISÃO GERAL MARCADOR + DEPOIMENTOS BRANCO
========================================================= */

.overview-section .overview-container {
  width: min(1360px, calc(100vw - 64px)) !important;
}

.overview-intro,
.overview-main-title,
.overview-lead,
.overview-method-grid,
.overview-method-title-wrap,
.overview-method-title,
.overview-method-copy,
.overview-method-copy p {
  max-width: 1280px !important;
}

.overview-main-title,
.overview-method-title {
  font-size: clamp(2.05rem, 2.5vw, 2.85rem) !important;
  line-height: 1.05 !important;
}

.overview-lead,
.overview-method-copy p {
  text-align: center !important;
  font-size: 1.05rem !important;
  line-height: 1.72 !important;
}

.overview-lead strong,
.overview-method-copy strong {
  color: #083a5d !important;
  font-weight: 400 !important;
  padding: 0 0.08em !important;
  background-image: linear-gradient(90deg, rgba(205, 165, 94, 0.74) 0%, rgba(205, 165, 94, 0.40) 100%) !important;
  background-repeat: no-repeat !important;
  background-position: 0 78% !important;
  background-size: 0% 52% !important;
  animation: overviewMarkerGrow 1.35s cubic-bezier(.22,.8,.22,1) 0.25s forwards !important;
}

@keyframes overviewMarkerGrow {
  from {
    background-size: 0% 52%;
  }
  to {
    background-size: 100% 52%;
  }
}

.overview-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 28px !important;
}

.testimonials {
  background: #FFFFFF !important;
  color: #083a5d !important;
}

.testimonials .section-title,
.testimonials .section-lead,
.testimonial-name,
.testimonial-role {
  color: #083a5d !important;
}

.testimonials .section-title .gold {
  color: #cda55e !important;
}

@media (max-width: 820px) {
  .overview-section .overview-container {
    width: calc(100vw - 28px) !important;
  }

  .overview-intro,
  .overview-main-title,
  .overview-lead,
  .overview-method-grid,
  .overview-method-title-wrap,
  .overview-method-title,
  .overview-method-copy,
  .overview-method-copy p {
    max-width: 100% !important;
  }

  .overview-main-title,
  .overview-method-title {
    font-size: clamp(1.9rem, 7vw, 2.4rem) !important;
  }
}

/* =========================================================
   AJUSTE V327 — VISÃO GERAL, DEPOIMENTOS E CASES
   Protocolo restrito: sem alteração no JS.
========================================================= */

/* Visão Geral — marcador animado sem negrito */
.overview-lead strong,
.overview-method-copy p:first-child strong {
  color: inherit !important;
  font-weight: 400 !important;
  position: relative !important;
  display: inline !important;
  padding: 0 0.08em !important;
  background-image: linear-gradient(90deg, rgba(205, 165, 94, 0.78) 0%, rgba(205, 165, 94, 0.52) 100%) !important;
  background-repeat: no-repeat !important;
  background-position: 0 82% !important;
  background-size: 0% 48% !important;
  animation: overviewMarkerGrowV327 1.25s cubic-bezier(.22,.8,.22,1) 0.18s forwards !important;
}

@keyframes overviewMarkerGrowV327 {
  from { background-size: 0% 48%; }
  to { background-size: 100% 48%; }
}

/* Depoimentos — bolinhas aparentes em fundo branco */
.testimonials .carousel-dots {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonials .carousel-dot {
  background: rgba(8, 58, 93, 0.34) !important;
  opacity: 1 !important;
}

.testimonials .carousel-dot.is-active {
  background: #cda55e !important;
}

/* Cases — imagem preenchendo a área, sem sombra e resultado em múltiplas linhas */
.case-card,
.case-card:hover {
  box-shadow: none !important;
}

.case-card:hover {
  transform: translateY(-7px) !important;
}

.case-card-image-wrap {
  padding: 0 !important;
  overflow: hidden !important;
  background: #041d2b !important;
}

.case-card img.case-card-image,
.case-card-image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.case-card-result {
  display: block !important;
  white-space: pre-line !important;
  line-height: 1.42 !important;
}


/* =========================================================
   AJUSTE V329 — TÍTULOS SEM NEGRITO + MARCADOR VISÃO GERAL
========================================================= */

@keyframes overview-marker-grow {
  0% {
    transform: scaleX(0);
    opacity: 0.18;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.overview-highlight {
  position: relative !important;
  display: inline !important;
  font-weight: 400 !important;
  z-index: 0 !important;
}

.overview-highlight::before {
  content: "" !important;
  position: absolute !important;
  left: -0.16em !important;
  right: -0.16em !important;
  bottom: 0.04em !important;
  height: 0.92em !important;
  background: rgba(205, 165, 94, 0.62) !important;
  border-radius: 0.12em !important;
  z-index: -1 !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  animation: overview-marker-grow 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

.slide-ims .ims-main-title,
.slide-consultoria .hero-title,
.slide-consultoria .hero-title .gold,
.slide-sobre .hero-title,
.slide-sobre .hero-title .gold,
.products .section-title.small,
.products .section-title.small .gold,
.choose-us-title,
.choose-us-title-main,
.choose-us-title-highlight,
.overview-main-title,
.overview-main-title .overview-mark,
.overview-method-title,
.how-work-title,
.how-work-title-highlight,
.results .section-title.small,
.results .section-title.small .gold,
.mentors-band .section-title.small,
.mentors-band .section-title.small .gold,
.testimonials .section-title.small,
.testimonials .section-title.small .gold,
.cases-home-title,
.cases-home-title .gold,
.help-center-title,
.help-center-title .gold {
  font-weight: 400 !important;
}

.products .section-title.small .gold,
.choose-us-title-highlight,
.how-work-title-highlight,
.results .section-title.small .gold,
.mentors-band .section-title.small .gold,
.testimonials .section-title.small .gold,
.cases-home-title .gold,
.help-center-title .gold {
  color: #cda55e !important;
}


/* =========================================================
   AJUSTE V330 — TÍTULOS MAIORES + MARCADOR VISÃO GERAL
   Protocolo restrito: sem alteração no JS.
========================================================= */

.products .section-title.small,
.results .section-title.small,
.mentors-band .section-title.small,
.testimonials .section-title.small {
  font-size: clamp(2.08rem, 2.62vw, 2.92rem) !important;
}

.overview-highlight {
  position: relative !important;
  display: inline !important;
  padding: 0 0.08em !important;
  font-weight: 400 !important;
  background-image: linear-gradient(90deg, rgba(205, 165, 94, 0.88) 0%, rgba(205, 165, 94, 0.68) 100%) !important;
  background-repeat: no-repeat !important;
  background-position: 0 78% !important;
  background-size: 0% 0.86em !important;
  animation: overviewMarkerGrowV330 1.18s cubic-bezier(.22,.8,.22,1) 0.12s forwards !important;
  z-index: auto !important;
}

.overview-highlight::before {
  content: none !important;
}

@keyframes overviewMarkerGrowV330 {
  from {
    background-size: 0% 0.86em;
  }

  to {
    background-size: 100% 0.86em;
  }
}

/* =========================================================
   AJUSTE V341 — BANNER I.M.S
   Escopo restrito ao banner I.M.S da home.
========================================================= */
@media (min-width: 821px) {
  .slide-ims .hero-slide__content {
    transform: translate(35px, 98px) !important;
    max-width: 700px !important;
  }

  .slide-ims .ims-main-title,
  .slide-ims .hero-copy {
    color: #083a5d !important;
  }

  .slide-ims .btn-secondary {
    color: #083a5d !important;
    border-color: #083a5d !important;
    border-width: 2px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .slide-ims .btn-secondary:hover {
    color: #083a5d !important;
    border-color: #083a5d !important;
    background: rgba(8, 58, 93, 0.06) !important;
  }
}

/* =========================================================
   AJUSTE V349 — BANNER CRISOL
   Gradiente um pouco mais escuro para melhorar a leitura do texto.
========================================================= */
@media (min-width: 821px) {
  .slide-crisol .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(3, 17, 29, 0.88) 0%,
      rgba(3, 17, 29, 0.76) 24%,
      rgba(3, 17, 29, 0.50) 48%,
      rgba(3, 17, 29, 0.22) 72%,
      rgba(3, 17, 29, 0.04) 100%
    ) !important;
  }
}

/* =========================================================
   AJUSTE V352 — BANNER CONSULTORIA
   Escopo restrito ao banner Consultoria da home.
========================================================= */
@media (min-width: 821px) {
  .slide-consultoria .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.82) 24%,
      rgba(255, 255, 255, 0.56) 48%,
      rgba(255, 255, 255, 0.24) 72%,
      rgba(255, 255, 255, 0.04) 100%
    ) !important;
  }

  .slide-consultoria .section-kicker,
  .slide-consultoria .hero-title,
  .slide-consultoria .hero-copy,
  .slide-consultoria .hero-feature-label {
    color: #083a5d !important;
  }

  .slide-consultoria .btn-secondary {
    color: #083a5d !important;
    border-color: #083a5d !important;
    border-width: 2px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .slide-consultoria .btn-secondary:hover {
    color: #083a5d !important;
    border-color: #083a5d !important;
    background: rgba(8, 58, 93, 0.06) !important;
    box-shadow: none !important;
  }
}

/* =========================================================
   AJUSTE V353 — BANNERS CONSULTORIA E I.M.S
   Escopo restrito aos gradientes dos banners solicitados.
========================================================= */
@media (min-width: 821px) {
  .slide-consultoria .hero-slide__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(8, 58, 92, 0.20) 0%,
        rgba(8, 58, 92, 0.15) 24%,
        rgba(8, 58, 92, 0.10) 48%,
        rgba(8, 58, 92, 0.05) 72%,
        rgba(8, 58, 92, 0.00) 100%
      ),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.76) 24%,
        rgba(255, 255, 255, 0.50) 48%,
        rgba(255, 255, 255, 0.20) 72%,
        rgba(255, 255, 255, 0.03) 100%
      ) !important;
  }

  .slide-ims .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.24) 0%,
      rgba(255, 255, 255, 0.16) 32%,
      rgba(255, 255, 255, 0.08) 64%,
      rgba(255, 255, 255, 0.02) 100%
    ) !important;
  }
}

/* =========================================================
   AJUSTE V356 — BANNER I.M.S
   Gradiente branco invertido: mais forte à direita e suave para a esquerda.
========================================================= */
@media (min-width: 821px) {
  .slide-ims .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.22) 28%,
      rgba(255, 255, 255, 0.50) 52%,
      rgba(255, 255, 255, 0.76) 76%,
      rgba(255, 255, 255, 0.88) 100%
    ) !important;
  }
}

/* =========================================================
   AJUSTE V357 — BANNER CONSULTORIA, I.M.S E TÍTULOS DOS CARDS
   Escopo restrito aos itens solicitados.
========================================================= */
@media (min-width: 821px) {
  .slide-consultoria .hero-slide__overlay {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 24%,
      rgba(255, 255, 255, 0.80) 48%,
      rgba(255, 255, 255, 0.52) 72%,
      rgba(255, 255, 255, 0.14) 100%
    ) !important;
  }
}

.slide-ims .ims-topline,
.slide-ims .feature-pill {
  color: #083a5d !important;
}

.choose-us-card-title,
.how-work-card-title {
  font-weight: 400 !important;
}

/* =========================================================
   AJUSTE V359 — VISÃO GERAL, PILARES E RESULTADOS COMPACTOS
   Escopo restrito aos ajustes solicitados.
========================================================= */

/* Visão geral: remover detalhes dourados e evitar corte do título */
.overview-divider-section,
.overview-divider-line {
  display: none !important;
}

.overview-section {
  background: #ffffff !important;
  padding-top: 40px !important;
  padding-bottom: 72px !important;
  overflow: hidden !important;
}

.overview-section .overview-container {
  width: min(1320px, calc(100vw - 72px)) !important;
  max-width: none !important;
}

.overview-intro,
.overview-main-title,
.overview-lead,
.overview-method-grid,
.overview-method-title-wrap,
.overview-method-title,
.overview-method-copy,
.overview-method-copy p {
  max-width: 100% !important;
}

.overview-intro {
  margin: 0 auto 56px !important;
  overflow: visible !important;
}

.overview-main-title {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  color: #083a5d !important;
  text-align: center !important;
  font-size: clamp(2.05rem, 2.42vw, 2.85rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.overview-line {
  display: block !important;
  white-space: normal !important;
  max-width: 100% !important;
}

.overview-mark,
.overview-highlight {
  color: inherit !important;
  background: none !important;
  background-image: none !important;
  animation: none !important;
  padding: 0 !important;
  font-weight: 400 !important;
  box-shadow: none !important;
}

.overview-mark::after,
.overview-highlight::before,
.overview-highlight::after,
.overview-method-title::after {
  content: none !important;
  display: none !important;
}

.overview-lead,
.overview-method-copy p {
  color: #083a5d !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.overview-lead {
  max-width: 1180px !important;
  margin: 28px auto 0 !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

.overview-method-grid {
  display: block !important;
  max-width: 1160px !important;
  margin: 0 auto !important;
}

.overview-method-title-wrap {
  margin: 0 auto 26px !important;
  text-align: center !important;
}

.overview-method-title {
  margin: 0 auto !important;
  padding-bottom: 0 !important;
  color: #083a5d !important;
  text-align: center !important;
  font-size: clamp(2rem, 2.55vw, 3rem) !important;
  line-height: 1.04 !important;
  font-weight: 400 !important;
}

.overview-method-copy {
  margin: 0 auto !important;
}

.overview-method-copy p:first-child,
.overview-method-copy p {
  margin: 0 auto !important;
  max-width: 1120px !important;
  font-size: 1.02rem !important;
  line-height: 1.72 !important;
}

.overview-actions {
  justify-content: center !important;
  margin-top: 28px !important;
}

/* Por que somos a melhor escolha: transformar cards em linhas de pilar */
.choose-us-section {
  padding: 78px 0 84px !important;
}

.choose-us-container {
  width: min(1180px, calc(100vw - 56px)) !important;
}

.choose-us-header {
  margin-bottom: 42px !important;
}

.choose-us-pillar-list,
.choose-us-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 18px !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}

.choose-us-grid::before {
  content: none !important;
  display: none !important;
}

.choose-us-card.choose-us-pillar-row,
.choose-us-pillar-row {
  display: grid !important;
  grid-template-columns: 168px minmax(0, 1fr) !important;
  gap: 18px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  animation: none !important;
  transform: none !important;
  transition: transform 0.28s ease !important;
}

.choose-us-card.choose-us-pillar-row::before,
.choose-us-pillar-row::before {
  content: none !important;
  display: none !important;
}

.choose-us-card.choose-us-pillar-row:hover,
.choose-us-pillar-row:hover {
  transform: translateY(-4px) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.choose-us-pillar-badge {
  min-height: 132px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(7, 45, 72, 0.98) 0%, rgba(3, 34, 55, 0.98) 100%) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 28px rgba(0,0,0,0.16) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  position: relative !important;
}

.choose-us-pillar-badge::after {
  content: "" !important;
  position: absolute !important;
  right: -18px !important;
  top: 50% !important;
  width: 18px !important;
  height: 2px !important;
  background: rgba(205, 165, 94, 0.72) !important;
  transform: translateY(-50%) !important;
}

.choose-us-trophy {
  display: block !important;
  color: #cda55e !important;
  font-size: 2.2rem !important;
  line-height: 1 !important;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.20)) !important;
}

.choose-us-pillar-badge .choose-us-number,
.choose-us-pillar-row .choose-us-number {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: 2.7rem !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.choose-us-card-content {
  min-height: 132px !important;
  padding: 24px 30px !important;
  border-radius: 18px !important;
  background: rgba(4, 36, 61, 0.94) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 28px rgba(0,0,0,0.16) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.choose-us-pillar-row:hover .choose-us-card-content,
.choose-us-pillar-row:hover .choose-us-pillar-badge {
  border-color: rgba(205,165,94,0.54) !important;
}

.choose-us-card-title,
.how-work-card-title {
  font-weight: 400 !important;
}

.choose-us-pillar-row .choose-us-card-title {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: 1.45rem !important;
  line-height: 1.15 !important;
  font-weight: 400 !important;
}

.choose-us-pillar-row .choose-us-card-copy {
  margin: 0 !important;
  color: rgba(255,255,255,0.92) !important;
  font-size: 1.02rem !important;
  line-height: 1.55 !important;
}

/* Resultados: blocos mais compactos */
.results {
  padding-top: 58px !important;
  padding-bottom: 58px !important;
}

.results .container.center {
  max-width: 980px !important;
}

.result-grid {
  max-width: 900px !important;
  margin-top: 28px !important;
  grid-template-columns: repeat(2, minmax(260px, 430px)) !important;
  gap: 18px 22px !important;
  justify-content: center !important;
}

.result-card {
  min-height: 132px !important;
  padding: 22px 24px !important;
  border-radius: 16px !important;
}

.result-number,
.result-card:nth-child(3) .result-number {
  font-size: clamp(2rem, 3.2vw, 2.9rem) !important;
  line-height: 1 !important;
}

.result-label {
  margin-top: 8px !important;
  font-size: 0.95rem !important;
}

@media (max-width: 1100px) {
  .overview-section .overview-container,
  .choose-us-container {
    width: min(1080px, calc(100vw - 44px)) !important;
  }

  .overview-main-title {
    font-size: clamp(1.9rem, 3.2vw, 2.45rem) !important;
  }
}

@media (max-width: 820px) {
  .overview-section {
    padding: 34px 0 62px !important;
  }

  .overview-section .overview-container,
  .choose-us-container {
    width: calc(100vw - 28px) !important;
  }

  .overview-main-title,
  .overview-method-title {
    text-align: center !important;
    font-size: clamp(1.72rem, 7vw, 2.28rem) !important;
    line-height: 1.08 !important;
  }

  .overview-lead,
  .overview-method-copy p:first-child,
  .overview-method-copy p {
    font-size: 0.96rem !important;
    line-height: 1.58 !important;
  }

  .choose-us-section {
    padding: 60px 0 66px !important;
  }

  .choose-us-pillar-list,
  .choose-us-grid {
    max-width: 100% !important;
    gap: 14px !important;
  }

  .choose-us-card.choose-us-pillar-row,
  .choose-us-pillar-row {
    grid-template-columns: 104px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .choose-us-pillar-badge,
  .choose-us-card-content {
    min-height: 118px !important;
    border-radius: 16px !important;
  }

  .choose-us-card-content {
    padding: 18px 18px !important;
  }

  .choose-us-pillar-badge::after {
    right: -12px !important;
    width: 12px !important;
  }

  .choose-us-trophy {
    font-size: 1.62rem !important;
  }

  .choose-us-pillar-badge .choose-us-number,
  .choose-us-pillar-row .choose-us-number {
    font-size: 2rem !important;
  }

  .choose-us-pillar-row .choose-us-card-title {
    font-size: 1.16rem !important;
  }

  .choose-us-pillar-row .choose-us-card-copy {
    font-size: 0.9rem !important;
    line-height: 1.48 !important;
  }

  .result-grid {
    max-width: 520px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .result-card {
    min-height: 118px !important;
    padding: 20px 18px !important;
  }
}

@media (max-width: 480px) {
  .choose-us-card.choose-us-pillar-row,
  .choose-us-pillar-row {
    grid-template-columns: 86px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  .choose-us-card-content {
    padding: 16px 14px !important;
  }

  .choose-us-pillar-row .choose-us-card-copy {
    font-size: 0.86rem !important;
  }
}


/* =========================================================
   AJUSTES FINAIS HOME — VERSÃO 360
   ========================================================= */

.choose-us-section {
  background:
    radial-gradient(circle at 18% 14%, rgba(205,165,94,0.18) 0%, rgba(205,165,94,0.06) 24%, transparent 48%),
    radial-gradient(circle at 84% 84%, rgba(205,165,94,0.16) 0%, rgba(205,165,94,0.06) 22%, transparent 44%),
    linear-gradient(135deg, #031a2a 0%, #052844 28%, #07345a 56%, #021523 100%) !important;
  padding: 88px 0 96px !important;
}

.choose-us-grid.choose-us-donut-layout {
  display: grid !important;
  grid-template-columns: minmax(260px, 1fr) minmax(380px, 520px) minmax(260px, 1fr) !important;
  gap: 34px !important;
  align-items: center !important;
  margin-top: 42px !important;
}

.choose-us-grid.choose-us-donut-layout::before {
  display: none !important;
}

.choose-us-side {
  display: grid !important;
  gap: 28px !important;
}

.choose-us-center {
  display: flex !important;
  justify-content: center !important;
}

.choose-us-donut-shell {
  position: relative !important;
  width: min(100%, 480px) !important;
  aspect-ratio: 1 / 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  animation: chooseUsDonutIn 1.1s cubic-bezier(.19,1,.22,1) both !important;
}

.choose-us-donut-shell::before,
.choose-us-donut-shell::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  width: 64px !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.08), rgba(205,165,94,0.88)) !important;
  transform: translateY(-50%) !important;
  box-shadow: 0 0 12px rgba(205,165,94,0.3) !important;
}

.choose-us-donut-shell::before { left: -12px !important; }
.choose-us-donut-shell::after {
  right: -12px !important;
  transform: translateY(-50%) scaleX(-1) !important;
}

.choose-us-donut {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  background:
    conic-gradient(from -90deg,
      #103f69 0deg 88deg,
      rgba(255,255,255,0) 88deg 92deg,
      #0b3354 92deg 178deg,
      rgba(255,255,255,0) 178deg 182deg,
      #0e3a60 182deg 268deg,
      rgba(255,255,255,0) 268deg 272deg,
      #114a79 272deg 358deg,
      rgba(255,255,255,0) 358deg 360deg) !important;
  box-shadow:
    inset 0 0 0 2px rgba(205,165,94,0.92),
    0 28px 60px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.05) !important;
  overflow: hidden !important;
}

.choose-us-donut::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 78% 24%, rgba(255,255,255,0.14), transparent 19%),
    radial-gradient(circle at 30% 76%, rgba(255,255,255,0.16), transparent 22%),
    radial-gradient(circle at 72% 74%, rgba(255,255,255,0.12), transparent 18%),
    repeating-linear-gradient(128deg, rgba(255,255,255,0.10) 0 2px, rgba(255,255,255,0) 2px 12px),
    repeating-linear-gradient(35deg, rgba(255,255,255,0.06) 0 1px, rgba(255,255,255,0) 1px 15px) !important;
  opacity: 0.50 !important;
  mix-blend-mode: screen !important;
  animation: chooseUsMarbleShift 9s linear infinite !important;
}

.choose-us-donut::after {
  content: "" !important;
  position: absolute !important;
  inset: 28% !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 50%, rgba(9,34,54,0.98), rgba(2,15,24,1) 72%) !important;
  box-shadow: inset 0 0 0 2px rgba(205,165,94,0.84), 0 0 28px rgba(0,0,0,0.22) !important;
}

.choose-us-donut-label {
  position: absolute !important;
  z-index: 2 !important;
  color: #f5e9d6 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(1.5rem, 2vw, 2.05rem) !important;
  line-height: 1 !important;
  font-weight: 400 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.24) !important;
  animation: chooseUsLabelFade 1.1s ease both !important;
}

.choose-us-donut-label--tl { top: 25% !important; left: 17% !important; animation-delay: .28s !important; }
.choose-us-donut-label--tr { top: 25% !important; right: 13% !important; animation-delay: .42s !important; }
.choose-us-donut-label--bl { bottom: 23% !important; left: 13% !important; animation-delay: .56s !important; }
.choose-us-donut-label--br { bottom: 23% !important; right: 13% !important; animation-delay: .70s !important; }

.choose-us-info-card {
  min-height: 236px !important;
  padding: 28px 26px 28px !important;
  border-radius: 26px !important;
  background: linear-gradient(180deg, rgba(4,31,52,0.96), rgba(5,26,44,0.92)) !important;
  border: 1px solid rgba(205,165,94,0.34) !important;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}

.choose-us-info-card .choose-us-number {
  margin-bottom: 14px !important;
  font-size: 2.2rem !important;
}

.choose-us-info-card .choose-us-card-title {
  font-size: 1.42rem !important;
  font-weight: 400 !important;
  margin-bottom: 14px !important;
}

.choose-us-info-card .choose-us-card-copy {
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
}

.choose-us-side .choose-us-info-card:nth-child(1) { animation-delay: .06s !important; }
.choose-us-side .choose-us-info-card:nth-child(2) { animation-delay: .22s !important; }

@keyframes chooseUsDonutIn {
  0% { opacity: 0; transform: scale(0.88) rotate(-12deg); }
  65% { opacity: 1; transform: scale(1.03) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes chooseUsLabelFade {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes chooseUsMarbleShift {
  0% { transform: rotate(0deg) scale(1.05); }
  50% { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1.05); }
}

.overview-lead {
  font-size: 1.18rem !important;
  line-height: 1.82 !important;
  max-width: 1120px !important;
}

.overview-method-copy {
  max-width: 820px !important;
}

.overview-method-copy p {
  font-size: 1.16rem !important;
  line-height: 1.82 !important;
}

.result-grid {
  max-width: 1060px !important;
  gap: 34px !important;
  margin-top: 42px !important;
}

.result-card {
  padding: 30px 22px !important;
}

.case-card-segment {
  margin-bottom: 12px !important;
  font-size: .86rem !important;
}

.case-card-result {
  font-size: 1.02rem !important;
}

.case-card-description {
  font-size: 1rem !important;
}

@media (max-width: 1180px) {
  .choose-us-grid.choose-us-donut-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .choose-us-center {
    order: -1 !important;
  }

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

  .choose-us-donut-shell {
    width: min(100%, 430px) !important;
  }
}

@media (max-width: 820px) {
  .choose-us-section {
    padding: 72px 0 78px !important;
  }

  .choose-us-side {
    grid-template-columns: 1fr !important;
  }

  .choose-us-donut-shell {
    width: min(100%, 340px) !important;
  }

  .choose-us-donut-shell::before,
  .choose-us-donut-shell::after {
    display: none !important;
  }

  .choose-us-donut-label {
    font-size: 1.28rem !important;
  }

  .choose-us-donut-label--tl { top: 23% !important; left: 14% !important; }
  .choose-us-donut-label--tr { top: 23% !important; right: 11% !important; }
  .choose-us-donut-label--bl { bottom: 22% !important; left: 12% !important; }
  .choose-us-donut-label--br { bottom: 22% !important; right: 12% !important; }

  .overview-lead {
    font-size: 1.08rem !important;
  }

  .overview-method-copy p {
    font-size: 1.05rem !important;
  }

  .result-grid {
    gap: 24px !important;
  }
}

/* =========================================================
   AJUSTES FINAIS HOME — VERSÃO 362
   Escopo: gráfico da roda, largura dos blocos e parágrafo da visão geral.
========================================================= */

/* Por que somos a melhor escolha: roda sem textura e sem animação */
.choose-us-container {
  width: min(1360px, calc(100vw - 56px)) !important;
}

.choose-us-grid.choose-us-donut-layout {
  grid-template-columns: minmax(330px, 390px) minmax(440px, 500px) minmax(330px, 390px) !important;
  gap: 44px !important;
  align-items: center !important;
  max-width: 1360px !important;
}

.choose-us-donut-shell {
  width: min(100%, 500px) !important;
  animation: none !important;
  transform: none !important;
}

.choose-us-donut-shell::before,
.choose-us-donut-shell::after {
  width: 72px !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.10), rgba(205,165,94,0.92)) !important;
  animation: none !important;
}

.choose-us-donut-shell::before { left: -28px !important; }
.choose-us-donut-shell::after { right: -28px !important; }

.choose-us-donut {
  background:
    conic-gradient(from -90deg,
      #0d3b62 0deg 88.5deg,
      transparent 88.5deg 91.5deg,
      #0b3152 91.5deg 178.5deg,
      transparent 178.5deg 181.5deg,
      #0d375b 181.5deg 268.5deg,
      transparent 268.5deg 271.5deg,
      #10456f 271.5deg 358.5deg,
      transparent 358.5deg 360deg) !important;
  box-shadow:
    inset 0 0 0 2px rgba(205,165,94,0.96),
    0 28px 58px rgba(0,0,0,0.24),
    0 0 0 1px rgba(255,255,255,0.035) !important;
  animation: none !important;
  transform: none !important;
}

.choose-us-donut::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  border-radius: 50% !important;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(205,165,94,0.92) calc(50% - 1px), rgba(205,165,94,0.92) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(205,165,94,0.92) calc(50% - 1px), rgba(205,165,94,0.92) calc(50% + 1px), transparent calc(50% + 1px)) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  animation: none !important;
  transform: none !important;
  -webkit-mask: radial-gradient(circle, transparent 0 28%, #000 28.2% 100%);
  mask: radial-gradient(circle, transparent 0 28%, #000 28.2% 100%);
}

.choose-us-donut::after {
  inset: 28% !important;
  z-index: 3 !important;
  background: #031a2a !important;
  box-shadow: inset 0 0 0 2px rgba(205,165,94,0.90), 0 0 30px rgba(0,0,0,0.24) !important;
}

.choose-us-donut-label {
  z-index: 4 !important;
  color: #f6eee0 !important;
  animation: none !important;
  transform: none !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.22) !important;
}

.choose-us-donut-label--tl { top: 26% !important; left: 17% !important; }
.choose-us-donut-label--tr { top: 26% !important; right: 13% !important; }
.choose-us-donut-label--bl { bottom: 23% !important; left: 12% !important; }
.choose-us-donut-label--br { bottom: 23% !important; right: 12% !important; }

.choose-us-info-card {
  min-height: 252px !important;
  padding: 30px 30px 30px !important;
  overflow: visible !important;
  animation: none !important;
  transform: none !important;
}

.choose-us-info-card .choose-us-card-copy {
  font-size: 1.06rem !important;
  line-height: 1.66 !important;
}

.choose-us-card:hover {
  transform: none !important;
}

/* Visão geral: igualar o segundo parágrafo ao primeiro */
.overview-method-copy {
  max-width: 1120px !important;
}

.overview-method-copy p,
.overview-method-copy p:first-child {
  max-width: 1120px !important;
  font-size: 1.18rem !important;
  line-height: 1.82 !important;
}

@media (max-width: 1180px) {
  .choose-us-grid.choose-us-donut-layout {
    grid-template-columns: 1fr !important;
    max-width: 980px !important;
    gap: 28px !important;
  }

  .choose-us-center {
    order: -1 !important;
  }

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

  .choose-us-donut-shell {
    width: min(100%, 460px) !important;
  }
}

@media (max-width: 820px) {
  .choose-us-container {
    width: calc(100vw - 28px) !important;
  }

  .choose-us-side {
    grid-template-columns: 1fr !important;
  }

  .choose-us-donut-shell {
    width: min(100%, 340px) !important;
  }

  .choose-us-donut-shell::before,
  .choose-us-donut-shell::after {
    display: none !important;
  }

  .choose-us-info-card {
    min-height: 0 !important;
    padding: 26px 24px !important;
  }

  .overview-method-copy p,
  .overview-method-copy p:first-child {
    font-size: 1.08rem !important;
    line-height: 1.64 !important;
  }
}

/* =========================================================
   AJUSTES FINAIS HOME — VERSÃO 364
   Escopo: gráfico da roda, case APROEST e arquivos dos mentores.
========================================================= */

.choose-us-donut-shell {
  width: min(100%, 500px) !important;
  overflow: visible !important;
  animation: none !important;
  transform: none !important;
}

.choose-us-donut-shell::before,
.choose-us-donut-shell::after {
  width: 82px !important;
  height: 2px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.10), rgba(205,165,94,0.88), rgba(205,165,94,0.10)) !important;
  animation: none !important;
}

.choose-us-donut-shell::before { left: -36px !important; }
.choose-us-donut-shell::after { right: -36px !important; }

.choose-us-donut {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: 0 30px 62px rgba(0,0,0,0.22), 0 0 72px rgba(23,89,137,0.30) !important;
  overflow: visible !important;
  animation: none !important;
  transform: none !important;
}

.choose-us-donut::before,
.choose-us-donut::after {
  content: none !important;
  display: none !important;
}

.choose-us-donut-svg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: visible !important;
  z-index: 1 !important;
}

.choose-us-donut-piece {
  fill: url(#donutBlueGradient) !important;
  stroke: #cda55e !important;
  stroke-width: 2.35 !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
  filter: drop-shadow(0 0 5px rgba(205,165,94,0.16)) !important;
  transition: fill .34s ease, filter .34s ease, transform .34s ease, opacity .34s ease !important;
  transform-box: fill-box !important;
  transform-origin: center !important;
}

.choose-us-donut-segment {
  cursor: pointer !important;
  transform-box: fill-box !important;
  transform-origin: center !important;
}

.choose-us-donut-segment:hover .choose-us-donut-piece {
  fill: url(#donutGoldGradient) !important;
  filter: drop-shadow(0 0 20px rgba(255,216,127,0.58)) brightness(1.06) !important;
  animation: chooseUsGoldPulse 1.35s ease-in-out infinite alternate !important;
}

.choose-us-donut-label {
  z-index: 5 !important;
  color: #f3bf5c !important;
  font-family: var(--font-title) !important;
  font-size: clamp(1.75rem, 2.2vw, 2.25rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.32), 0 0 16px rgba(205,165,94,0.22) !important;
  animation: none !important;
  pointer-events: none !important;
}

.choose-us-donut-label--tl,
.choose-us-donut-label--tr,
.choose-us-donut-label--bl,
.choose-us-donut-label--br {
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
}

.choose-us-donut-label--tl { top: 34% !important; left: 33% !important; }
.choose-us-donut-label--tr { top: 34% !important; left: 67% !important; }
.choose-us-donut-label--bl { top: 66% !important; left: 33% !important; }
.choose-us-donut-label--br { top: 66% !important; left: 67% !important; }

@keyframes chooseUsGoldPulse {
  0% { opacity: .88; filter: drop-shadow(0 0 12px rgba(255,216,127,0.36)) brightness(1.02); }
  100% { opacity: 1; filter: drop-shadow(0 0 24px rgba(255,216,127,0.68)) brightness(1.12); }
}

@media (max-width: 1180px) {
  .choose-us-donut-shell {
    width: min(100%, 460px) !important;
  }
}

@media (max-width: 820px) {
  .choose-us-donut-shell {
    width: min(100%, 340px) !important;
  }

  .choose-us-donut-shell::before,
  .choose-us-donut-shell::after {
    display: none !important;
  }

  .choose-us-donut-label {
    font-size: 1.34rem !important;
  }

  .choose-us-donut-label--tl { top: 34% !important; left: 33% !important; }
  .choose-us-donut-label--tr { top: 34% !important; left: 67% !important; }
  .choose-us-donut-label--bl { top: 66% !important; left: 33% !important; }
  .choose-us-donut-label--br { top: 66% !important; left: 67% !important; }
}

/* =========================================================
   AJUSTES FINAIS HOME — VERSÃO 366
   Escopo: encaixe das palavras dentro da rosca dos quatro pilares.
   ========================================================= */

.choose-us-donut-label {
  display: inline-block !important;
  width: max-content !important;
  max-width: 116px !important;
  white-space: nowrap !important;
  font-size: clamp(1.38rem, 1.72vw, 1.86rem) !important;
  letter-spacing: -0.025em !important;
  color: #f3bf5c !important;
  text-align: center !important;
  transform: translate(-50%, -50%) !important;
  transform-origin: center center !important;
  transition: color .28s ease, text-shadow .28s ease, filter .28s ease !important;
}

.choose-us-donut-label--tr,
.choose-us-donut-label--bl {
  font-size: clamp(1.26rem, 1.48vw, 1.64rem) !important;
  letter-spacing: -0.04em !important;
  max-width: 126px !important;
}

.choose-us-donut-label--tl {
  top: 34.5% !important;
  left: 32.4% !important;
}

.choose-us-donut-label--tr {
  top: 34.5% !important;
  left: 64.6% !important;
}

.choose-us-donut-label--bl {
  top: 65.7% !important;
  left: 35.5% !important;
}

.choose-us-donut-label--br {
  top: 65.7% !important;
  left: 66.5% !important;
}

.choose-us-donut:has(.choose-us-donut-segment--tl:hover) .choose-us-donut-label--tl,
.choose-us-donut:has(.choose-us-donut-segment--tr:hover) .choose-us-donut-label--tr,
.choose-us-donut:has(.choose-us-donut-segment--bl:hover) .choose-us-donut-label--bl,
.choose-us-donut:has(.choose-us-donut-segment--br:hover) .choose-us-donut-label--br {
  color: #ffe39a !important;
  filter: brightness(1.08) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.34), 0 0 22px rgba(255,216,127,0.50) !important;
}

@media (max-width: 1180px) {
  .choose-us-donut-label {
    font-size: clamp(1.32rem, 3.05vw, 1.72rem) !important;
  }

  .choose-us-donut-label--tr,
  .choose-us-donut-label--bl {
    font-size: clamp(1.18rem, 2.72vw, 1.50rem) !important;
  }

  .choose-us-donut-label--tl { top: 34.5% !important; left: 32.4% !important; }
  .choose-us-donut-label--tr { top: 34.5% !important; left: 64.6% !important; }
  .choose-us-donut-label--bl { top: 65.7% !important; left: 35.5% !important; }
  .choose-us-donut-label--br { top: 65.7% !important; left: 66.5% !important; }
}

@media (max-width: 820px) {
  .choose-us-donut-label {
    font-size: clamp(1.02rem, 6vw, 1.30rem) !important;
    max-width: 92px !important;
    letter-spacing: -0.02em !important;
  }

  .choose-us-donut-label--tr,
  .choose-us-donut-label--bl {
    font-size: clamp(0.92rem, 5.35vw, 1.14rem) !important;
    max-width: 102px !important;
    letter-spacing: -0.04em !important;
  }

  .choose-us-donut-label--tl { top: 34.3% !important; left: 32.3% !important; }
  .choose-us-donut-label--tr { top: 34.3% !important; left: 64.4% !important; }
  .choose-us-donut-label--bl { top: 65.9% !important; left: 35.6% !important; }
  .choose-us-donut-label--br { top: 65.9% !important; left: 66.6% !important; }
}

@media (max-width: 420px) {
  .choose-us-donut-label {
    font-size: 1.06rem !important;
  }

  .choose-us-donut-label--tr,
  .choose-us-donut-label--bl {
    font-size: 0.94rem !important;
  }

  .choose-us-donut-label--tl { left: 32.2% !important; }
  .choose-us-donut-label--tr { left: 64.2% !important; }
  .choose-us-donut-label--bl { left: 35.8% !important; }
  .choose-us-donut-label--br { left: 66.8% !important; }
}



/* =========================================================
   AJUSTES FINAIS HOME — VERSÃO 367
   Escopo: reconstrução completa do gráfico central dos quatro pilares.
   ========================================================= */

.choose-us-donut-shell {
  width: min(100%, 506px) !important;
  overflow: visible !important;
}

.choose-us-donut-shell::before,
.choose-us-donut-shell::after {
  width: 84px !important;
  height: 1.5px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.08), rgba(205,165,94,0.84), rgba(205,165,94,0.08)) !important;
  box-shadow: 0 0 10px rgba(205,165,94,0.24) !important;
}

.choose-us-donut-shell::before { left: -34px !important; }
.choose-us-donut-shell::after { right: -34px !important; }

.choose-us-donut {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.choose-us-donut::before,
.choose-us-donut::after,
.choose-us-donut-label {
  content: none !important;
  display: none !important;
}

.choose-us-donut-svg {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  overflow: visible !important;
  filter: drop-shadow(0 26px 56px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 34px rgba(20, 86, 131, 0.22)) !important;
}

.choose-us-donut-segment {
  cursor: pointer !important;
  transform-origin: 250px 250px !important;
  transition: transform 0.34s ease !important;
}

.choose-us-donut-piece {
  stroke: #cda55e !important;
  stroke-width: 2.15 !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
  filter: url(#chooseUsSegmentGlow) !important;
  transition: fill 0.34s ease, stroke 0.34s ease, opacity 0.34s ease, filter 0.34s ease !important;
}

.choose-us-donut-segment--ordem .choose-us-donut-piece { fill: url(#chooseUsSegTL) !important; }
.choose-us-donut-segment--progresso .choose-us-donut-piece { fill: url(#chooseUsSegTR) !important; }
.choose-us-donut-segment--cultura .choose-us-donut-piece { fill: url(#chooseUsSegBR) !important; }
.choose-us-donut-segment--lideranca .choose-us-donut-piece { fill: url(#chooseUsSegBL) !important; }

.choose-us-donut-text {
  fill: #f2bf63 !important;
  font-family: var(--font-title) !important;
  font-weight: 400 !important;
  font-size: 43px !important;
  line-height: 1 !important;
  text-anchor: middle !important;
  dominant-baseline: middle !important;
  letter-spacing: -0.025em !important;
  paint-order: stroke fill !important;
  stroke: rgba(0, 0, 0, 0.08) !important;
  stroke-width: 0.65px !important;
  filter: url(#chooseUsTextGlow) !important;
  transition: fill 0.34s ease, filter 0.34s ease, opacity 0.34s ease !important;
  pointer-events: none !important;
}

.choose-us-donut-text--progresso { font-size: 38px !important; }
.choose-us-donut-text--lideranca { font-size: 35px !important; }

.choose-us-donut-segment:hover,
.choose-us-donut-segment.is-active {
  transform: translateY(-2px) scale(1.018) !important;
}

.choose-us-donut-segment:hover .choose-us-donut-piece,
.choose-us-donut-segment.is-active .choose-us-donut-piece {
  fill: url(#chooseUsGoldHover) !important;
  stroke: #f1cf84 !important;
  filter: url(#chooseUsSegmentGlowStrong) !important;
}

.choose-us-donut-segment:hover .choose-us-donut-text,
.choose-us-donut-segment.is-active .choose-us-donut-text {
  fill: #fff0bf !important;
  filter: drop-shadow(0 0 10px rgba(255, 224, 152, 0.42)) !important;
}

.choose-us-info-card {
  transition: border-color 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease !important;
}

.choose-us-info-card.is-linked-hover {
  border-color: rgba(205, 165, 94, 0.78) !important;
  box-shadow: 0 22px 52px rgba(0,0,0,0.26), inset 0 0 0 1px rgba(205,165,94,0.22), 0 0 26px rgba(205,165,94,0.14) !important;
  transform: translateY(-4px) !important;
}

.choose-us-info-card.is-linked-hover::before {
  opacity: 1 !important;
}

@media (max-width: 1180px) {
  .choose-us-donut-shell {
    width: min(100%, 470px) !important;
  }
}

@media (max-width: 820px) {
  .choose-us-donut-shell {
    width: min(100%, 344px) !important;
  }

  .choose-us-donut-shell::before,
  .choose-us-donut-shell::after {
    display: none !important;
  }

  .choose-us-donut-text {
    font-size: 31px !important;
  }

  .choose-us-donut-text--progresso {
    font-size: 27px !important;
  }

  .choose-us-donut-text--lideranca {
    font-size: 25px !important;
  }
}

@media (max-width: 420px) {
  .choose-us-donut-shell {
    width: min(100%, 324px) !important;
  }

  .choose-us-donut-text {
    font-size: 29px !important;
  }

  .choose-us-donut-text--progresso {
    font-size: 25px !important;
  }

  .choose-us-donut-text--lideranca {
    font-size: 23px !important;
  }
}

/* =========================================================
   AJUSTE V369 — COMO TRABALHAMOS MAIS AZUL
   Mantém o gradiente institucional com dourado apenas como detalhe.
   Os cards usam a mesma base azul do fundo da linha.
========================================================= */

.how-work-section {
  --how-work-base-bg: #073A5C;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(205, 165, 94, 0.16) 0%, rgba(205, 165, 94, 0.07) 24%, transparent 54%),
    radial-gradient(circle at 88% 16%, rgba(205, 165, 94, 0.12) 0%, rgba(205, 165, 94, 0.05) 28%, transparent 58%),
    radial-gradient(circle at 76% 88%, rgba(205, 165, 94, 0.10) 0%, rgba(205, 165, 94, 0.04) 30%, transparent 60%),
    linear-gradient(135deg, #083A5C 0%, #073A5C 42%, #062F4C 72%, #041D2B 100%) !important;
}

.how-work-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(115deg, transparent 0%, rgba(205, 165, 94, 0.05) 36%, rgba(255, 231, 176, 0.07) 50%, rgba(205, 165, 94, 0.04) 64%, transparent 100%) !important;
  opacity: 0.48 !important;
}

.how-work-section > .container {
  position: relative !important;
  z-index: 1 !important;
}

.how-work-card {
  background: var(--how-work-base-bg) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 34px rgba(0,0,0,0.18) !important;
}

.how-work-card::before {
  background: radial-gradient(circle at top center, rgba(205, 165, 94, 0.08), transparent 54%) !important;
}

.how-work-card:hover {
  background: var(--how-work-base-bg) !important;
  border-color: rgba(205, 165, 94, 0.54) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 44px rgba(0,0,0,0.24), 0 0 20px rgba(205,165,94,0.08) !important;
}

/* =========================================================
   AJUSTE V370 — COMO TRABALHAMOS + SUBTÍTULOS PADRONIZADOS
========================================================= */

.how-work-section {
  --how-work-base-bg: #083A5C !important;
  background: #083A5C !important;
}

.how-work-section::before {
  content: none !important;
  display: none !important;
}

.how-work-card {
  background: #083A5C !important;
}

.choose-us-lead,
.how-work-lead,
.cases-home-lead,
.help-center-lead {
  font-family: var(--font-body) !important;
  font-size: 1.14rem !important;
  line-height: 1.72 !important;
  font-weight: 400 !important;
}

@media (max-width: 820px) {
  .choose-us-lead,
  .how-work-lead,
  .cases-home-lead,
  .help-center-lead {
    font-size: 1.02rem !important;
    line-height: 1.62 !important;
  }
}

/* =========================================================
   AJUSTE V371 — GRADIENTE COMO MENTORES + SUBTÍTULOS PADRONIZADOS
========================================================= */

.how-work-section {
  --how-work-base-bg: #041d2b !important;
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 16% 20%, rgba(159, 111, 25, 0.10), transparent 22%),
    radial-gradient(circle at 84% 82%, rgba(159, 82, 25, 0.12), transparent 18%),
    linear-gradient(135deg, #041d2b 0%, #04283d 62%, #08314a 78%, #9f6f19 122%, #9f5219 150%) !important;
}

.how-work-section::before {
  content: none !important;
  display: none !important;
}

.how-work-section > .container {
  position: relative !important;
  z-index: 1 !important;
}

.how-work-card {
  background:
    radial-gradient(circle at 16% 20%, rgba(159, 111, 25, 0.08), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(159, 82, 25, 0.09), transparent 20%),
    linear-gradient(135deg, #041d2b 0%, #04283d 62%, #08314a 78%, #9f6f19 122%, #9f5219 150%) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 34px rgba(0,0,0,0.18) !important;
}

.how-work-card:hover {
  background:
    radial-gradient(circle at 16% 20%, rgba(159, 111, 25, 0.10), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(159, 82, 25, 0.12), transparent 20%),
    linear-gradient(135deg, #041d2b 0%, #04283d 62%, #08314a 78%, #9f6f19 122%, #9f5219 150%) !important;
  border-color: rgba(205, 165, 94, 0.54) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 44px rgba(0,0,0,0.24), 0 0 20px rgba(205,165,94,0.08) !important;
}

.choose-us-lead,
.how-work-lead,
.results .section-lead,
.mentors-band .section-subtitle,
.testimonials .section-lead,
.cases-home-lead,
.help-center-lead {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 1.34rem !important;
  line-height: 1.45 !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (max-width: 820px) {
  .choose-us-lead,
  .how-work-lead,
  .results .section-lead,
  .mentors-band .section-subtitle,
  .testimonials .section-lead,
  .cases-home-lead,
  .help-center-lead {
    font-size: 1.02rem !important;
    line-height: 1.42 !important;
    max-width: 92% !important;
  }
}


/* =========================================================
   AJUSTES FINAIS HOME — VERSÃO 372
   Escopo: reconstrução da seção de diferenciais com fidelidade máxima à referência.
   ========================================================= */

.choose-us-section {
  padding: 72px 0 84px !important;
  background: radial-gradient(circle at 50% 50%, rgba(14, 63, 104, 0.12) 0%, rgba(14, 63, 104, 0.06) 34%, transparent 58%), #001428 !important;
}

.choose-us-container {
  width: min(1380px, calc(100vw - 48px)) !important;
}

.choose-us-frame {
  position: relative !important;
  padding: 34px 26px 34px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(70, 114, 154, 0.35) !important;
  background: radial-gradient(circle at 50% 46%, rgba(12, 62, 104, 0.18) 0%, rgba(5, 31, 53, 0.14) 32%, transparent 64%), linear-gradient(180deg, #00172c 0%, #001a31 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 24px 54px rgba(0,0,0,0.18) !important;
  overflow: hidden !important;
}

.choose-us-header {
  position: relative !important;
  max-width: none !important;
  margin-bottom: 22px !important;
  text-align: center !important;
}

.choose-us-kicker {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px !important;
  padding: 0 112px !important;
  color: #d3a64e !important;
  font-size: 0.94rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.34em !important;
  text-transform: uppercase !important;
}

.choose-us-kicker::before,
.choose-us-kicker::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  width: 92px !important;
  height: 1px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.16), rgba(205,165,94,0.82), rgba(205,165,94,0.16)) !important;
  transform: translateY(-50%) !important;
}

.choose-us-kicker::before { left: 0 !important; }
.choose-us-kicker::after { right: 0 !important; }

.choose-us-kicker::selection,
.choose-us-title::selection {
  background: rgba(205,165,94,0.22) !important;
}

.choose-us-kicker::marker {
  content: none !important;
}

.choose-us-kicker > span {
  display: none !important;
}

.choose-us-kicker + .choose-us-title {
  margin-top: 0 !important;
}

.choose-us-kicker:after { right: 0 !important; }

.choose-us-kicker:before { left: 0 !important; }

.choose-us-kicker {
  --diamond-size: 10px;
}

.choose-us-kicker::after,
.choose-us-kicker::before {
  box-shadow: 0 0 10px rgba(205,165,94,0.16) !important;
}

.choose-us-kicker::before {
  left: 0 !important;
}

.choose-us-kicker::after {
  right: 0 !important;
}

.choose-us-kicker::selection { background: transparent !important; }

.choose-us-kicker-diamond,
.choose-us-header::before {
  content: "" !important;
  position: absolute !important;
  top: 16px !important;
  left: 50% !important;
  width: 10px !important;
  height: 10px !important;
  background: linear-gradient(135deg, #cda55e, #d1a245) !important;
  transform: translateX(-50%) rotate(45deg) !important;
  box-shadow: 0 0 12px rgba(205,165,94,0.22) !important;
}

.choose-us-title {
  margin: 0 !important;
  color: #f3eee8 !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2.55rem, 3.75vw, 4rem) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-wrap: balance !important;
}

.choose-us-title-main,
.choose-us-title-highlight,
.choose-us-lead {
  display: none !important;
}

.choose-us-title-shine {
  position: relative !important;
  display: block !important;
  width: 248px !important;
  height: 14px !important;
  margin: 16px auto 0 !important;
}

.choose-us-title-shine::before {
  content: "" !important;
  position: absolute !important;
  inset: 6px 0 auto !important;
  height: 1.5px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0.02), rgba(205,165,94,0.52), rgba(255,227,154,0.98) 50%, rgba(205,165,94,0.52), rgba(205,165,94,0.02)) !important;
}

.choose-us-title-shine::after {
  content: "" !important;
  position: absolute !important;
  top: 3px !important;
  left: 50% !important;
  width: 18px !important;
  height: 8px !important;
  border-radius: 999px !important;
  transform: translateX(-50%) !important;
  background: radial-gradient(circle, rgba(255,238,185,1) 0%, rgba(255,214,114,0.96) 38%, rgba(255,214,114,0.06) 100%) !important;
  filter: blur(0.2px) !important;
  box-shadow: 0 0 18px rgba(255, 224, 143, 0.44) !important;
}

.choose-us-stage {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 304px minmax(420px, 500px) 304px !important;
  justify-content: center !important;
  column-gap: 104px !important;
  align-items: center !important;
  min-height: 560px !important;
  margin-top: 8px !important;
}

.choose-us-connectors {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  pointer-events: none !important;
  overflow: visible !important;
}

.choose-us-connector-group path {
  fill: none !important;
  stroke: rgba(205,165,94,0.92) !important;
  stroke-width: 2px !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: stroke 0.28s ease, filter 0.28s ease !important;
}

.choose-us-connector-group circle {
  fill: #d3a64e !important;
  transition: fill 0.28s ease, filter 0.28s ease !important;
}

.choose-us-connector-group.is-active path,
.choose-us-connector-group:hover path {
  stroke: #ffe39a !important;
  filter: drop-shadow(0 0 10px rgba(255, 227, 154, 0.28)) !important;
}

.choose-us-connector-group.is-active circle,
.choose-us-connector-group:hover circle {
  fill: #ffe39a !important;
  filter: drop-shadow(0 0 10px rgba(255, 227, 154, 0.42)) !important;
}

.choose-us-side {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  gap: 28px !important;
}

.choose-us-center {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.choose-us-info-card {
  position: relative !important;
  min-height: 188px !important;
  padding: 26px 28px 28px !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(5, 35, 58, 0.98) 0%, rgba(4, 29, 49, 0.98) 100%) !important;
  border: 1px solid rgba(193,125,9,0.56) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 30px rgba(0,0,0,0.2) !important;
  transform: none !important;
}

.choose-us-info-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 26px !important;
  right: 26px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(205,165,94,0), rgba(255,224,143,0.95), rgba(205,165,94,0)) !important;
  opacity: 0.9 !important;
}

.choose-us-card-heading {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin-bottom: 12px !important;
}

.choose-us-card-name {
  margin: 0 !important;
  color: #efc15f !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2rem, 2.1vw, 2.3rem) !important;
  font-weight: 400 !important;
  line-height: 0.98 !important;
}

.choose-us-card-divider {
  display: block !important;
  width: 1px !important;
  align-self: stretch !important;
  min-height: 48px !important;
  background: rgba(205,165,94,0.7) !important;
}

.choose-us-card-subtitle {
  margin: 1px 0 0 !important;
  color: #f4f1ea !important;
  font-size: 0.98rem !important;
  line-height: 1.18 !important;
  text-align: left !important;
  white-space: normal !important;
}

.choose-us-card-accent {
  display: block !important;
  width: 42px !important;
  height: 2px !important;
  margin-bottom: 18px !important;
  background: linear-gradient(90deg, #cda55e, #efc15f) !important;
}

.choose-us-card-copy {
  margin: 0 !important;
  color: rgba(244, 241, 234, 0.92) !important;
  font-size: 1rem !important;
  line-height: 1.52 !important;
}

.choose-us-number,
.choose-us-card-title {
  display: none !important;
}

.choose-us-info-card.is-linked-hover {
  border-color: rgba(255, 227, 154, 0.86) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 22px 32px rgba(0,0,0,0.24), 0 0 18px rgba(255,227,154,0.08) !important;
}

.choose-us-donut-shell {
  position: relative !important;
  width: min(100%, 500px) !important;
  aspect-ratio: 1 / 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.choose-us-donut-shell::before,
.choose-us-donut-shell::after {
  content: none !important;
  display: none !important;
}

.choose-us-donut {
  width: 100% !important;
  height: 100% !important;
  background: transparent !important;
  overflow: visible !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.choose-us-donut::before,
.choose-us-donut::after,
.choose-us-donut-label {
  content: none !important;
  display: none !important;
}

.choose-us-donut-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  overflow: visible !important;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.18)) !important;
}

.choose-us-donut-segment {
  cursor: pointer !important;
  transform-origin: 250px 250px !important;
  transition: transform 0.28s ease !important;
}

.choose-us-donut-piece {
  stroke: #cda55e !important;
  stroke-width: 2.1 !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
  filter: url(#chooseUsDonutGlow) !important;
  transition: fill 0.28s ease, stroke 0.28s ease, filter 0.28s ease !important;
}

.choose-us-donut-segment--ordem .choose-us-donut-piece { fill: url(#chooseUsDonutTL) !important; }
.choose-us-donut-segment--progresso .choose-us-donut-piece { fill: url(#chooseUsDonutTR) !important; }
.choose-us-donut-segment--cultura .choose-us-donut-piece { fill: url(#chooseUsDonutBR) !important; }
.choose-us-donut-segment--lideranca .choose-us-donut-piece { fill: url(#chooseUsDonutBL) !important; }

.choose-us-donut-text {
  fill: #efc15f !important;
  font-family: var(--font-title) !important;
  font-weight: 400 !important;
  font-size: 42px !important;
  line-height: 1 !important;
  text-anchor: middle !important;
  dominant-baseline: middle !important;
  letter-spacing: -0.02em !important;
  paint-order: stroke fill !important;
  stroke: rgba(0,0,0,0.14) !important;
  stroke-width: 0.5px !important;
  pointer-events: none !important;
  transition: fill 0.28s ease, filter 0.28s ease !important;
}

.choose-us-donut-text--progresso { font-size: 37px !important; }
.choose-us-donut-text--lideranca { font-size: 35px !important; }

.choose-us-donut-segment.is-active,
.choose-us-donut-segment:hover {
  transform: scale(1.015) !important;
}

.choose-us-donut-segment.is-active .choose-us-donut-piece,
.choose-us-donut-segment:hover .choose-us-donut-piece {
  fill: url(#chooseUsDonutHover) !important;
  stroke: #ffe39a !important;
  filter: url(#chooseUsDonutGlowStrong) !important;
}

.choose-us-donut-segment.is-active .choose-us-donut-text,
.choose-us-donut-segment:hover .choose-us-donut-text {
  fill: #fff2c8 !important;
  filter: drop-shadow(0 0 8px rgba(255, 227, 154, 0.3)) !important;
}

@media (max-width: 1220px) {
  .choose-us-stage {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
    min-height: 0 !important;
  }

  .choose-us-center {
    order: -1 !important;
  }

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

  .choose-us-connectors {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .choose-us-section {
    padding: 54px 0 66px !important;
  }

  .choose-us-container {
    width: calc(100vw - 24px) !important;
  }

  .choose-us-frame {
    padding: 28px 14px 26px !important;
    border-radius: 20px !important;
  }

  .choose-us-header::before {
    top: 13px !important;
  }

  .choose-us-kicker {
    padding: 0 62px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.24em !important;
    margin-bottom: 16px !important;
  }

  .choose-us-kicker::before,
  .choose-us-kicker::after {
    width: 46px !important;
  }

  .choose-us-title {
    font-size: clamp(1.7rem, 7.2vw, 2.4rem) !important;
  }

  .choose-us-title-shine {
    width: 180px !important;
    margin-top: 12px !important;
  }

  .choose-us-side {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .choose-us-info-card {
    min-height: 0 !important;
    padding: 22px 20px 22px !important;
  }

  .choose-us-card-heading {
    gap: 10px !important;
  }

  .choose-us-card-name {
    font-size: 1.84rem !important;
  }

  .choose-us-card-subtitle {
    font-size: 0.9rem !important;
  }

  .choose-us-card-copy {
    font-size: 0.95rem !important;
  }

  .choose-us-donut-shell {
    width: min(100%, 360px) !important;
  }

  .choose-us-donut-text {
    font-size: 31px !important;
  }

  .choose-us-donut-text--progresso { font-size: 27px !important; }
  .choose-us-donut-text--lideranca { font-size: 26px !important; }
}

@media (max-width: 420px) {
  .choose-us-donut-shell {
    width: min(100%, 326px) !important;
  }

  .choose-us-donut-text {
    font-size: 28px !important;
  }

  .choose-us-donut-text--progresso { font-size: 24px !important; }
  .choose-us-donut-text--lideranca { font-size: 23px !important; }
}

/* =========================================================
   AJUSTE V373 — BANNER I.M.S
   Remove o gradiente branco e usa a nova imagem v3.
========================================================= */
@media (min-width: 821px) {
  .slide-ims .hero-slide__overlay {
    background: transparent !important;
  }
}

/* =========================================================
   AJUSTE V375 — GRÁFICO DOS QUATRO PILARES
   Escopo: somente o desenho vetorial da rosca central.
========================================================= */

.choose-us-donut-shell {
  width: min(100%, 500px) !important;
}

.choose-us-donut-svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  overflow: visible !important;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.18)) !important;
}

.choose-us-donut-piece {
  stroke: #d4a64f !important;
  stroke-width: 1.65 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
  filter: url(#chooseUsDonutGlow) !important;
}

.choose-us-donut-segment {
  transform: none !important;
  transform-origin: 250px 250px !important;
}

.choose-us-donut-segment:hover,
.choose-us-donut-segment.is-active {
  transform: none !important;
}

.choose-us-donut-text {
  fill: #d8a64d !important;
  font-family: var(--font-title) !important;
  font-weight: 400 !important;
  font-size: 34px !important;
  line-height: 1 !important;
  text-anchor: middle !important;
  dominant-baseline: middle !important;
  letter-spacing: -0.035em !important;
  paint-order: normal !important;
  stroke: transparent !important;
  stroke-width: 0 !important;
  filter: none !important;
  pointer-events: none !important;
}

.choose-us-donut-text--progresso {
  font-size: 31px !important;
  letter-spacing: -0.045em !important;
}

.choose-us-donut-text--lideranca {
  font-size: 30px !important;
  letter-spacing: -0.045em !important;
}

.choose-us-donut-segment--ordem .choose-us-donut-piece,
.choose-us-donut-segment--ordem:hover .choose-us-donut-piece,
.choose-us-donut-segment--ordem.is-active .choose-us-donut-piece {
  fill: url(#chooseUsDonutTL) !important;
}

.choose-us-donut-segment--progresso .choose-us-donut-piece,
.choose-us-donut-segment--progresso:hover .choose-us-donut-piece,
.choose-us-donut-segment--progresso.is-active .choose-us-donut-piece {
  fill: url(#chooseUsDonutTR) !important;
}

.choose-us-donut-segment--lideranca .choose-us-donut-piece,
.choose-us-donut-segment--lideranca:hover .choose-us-donut-piece,
.choose-us-donut-segment--lideranca.is-active .choose-us-donut-piece {
  fill: url(#chooseUsDonutBL) !important;
}

.choose-us-donut-segment--cultura .choose-us-donut-piece,
.choose-us-donut-segment--cultura:hover .choose-us-donut-piece,
.choose-us-donut-segment--cultura.is-active .choose-us-donut-piece {
  fill: url(#chooseUsDonutBR) !important;
}

.choose-us-donut-segment:hover .choose-us-donut-piece,
.choose-us-donut-segment.is-active .choose-us-donut-piece {
  stroke: #e0b45e !important;
  filter: url(#chooseUsDonutGlowStrong) !important;
}

.choose-us-donut-segment:hover .choose-us-donut-text,
.choose-us-donut-segment.is-active .choose-us-donut-text {
  fill: #e0b45e !important;
  filter: none !important;
}

@media (max-width: 820px) {
  .choose-us-donut-shell {
    width: min(100%, 360px) !important;
  }

  .choose-us-donut-text {
    font-size: 25px !important;
  }

  .choose-us-donut-text--progresso {
    font-size: 23px !important;
  }

  .choose-us-donut-text--lideranca {
    font-size: 22px !important;
  }
}

@media (max-width: 420px) {
  .choose-us-donut-shell {
    width: min(100%, 326px) !important;
  }
}


/* =========================================================
   AJUSTE V376 — SEÇÃO QUATRO PILARES
   Escopo: título original, fundo #001B2E, remoção do frame externo e títulos dos cards sem duplicidade.
========================================================= */

.choose-us-section {
  background: #001B2E !important;
}

.choose-us-frame {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.choose-us-header {
  max-width: 1080px !important;
  margin: 0 auto 34px !important;
}

.choose-us-header::before,
.choose-us-kicker::before,
.choose-us-kicker::after,
.choose-us-title-shine,
.choose-us-title-shine::before,
.choose-us-title-shine::after {
  content: none !important;
  display: none !important;
}

.choose-us-kicker {
  display: block !important;
  padding: 0 !important;
  margin: 0 0 18px !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.32em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.choose-us-title {
  margin: 0 auto 22px !important;
  max-width: 980px !important;
  color: #ffffff !important;
  font-family: var(--font-title) !important;
  font-size: clamp(3rem, 5vw, 5.35rem) !important;
  font-weight: 400 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.055em !important;
  text-align: center !important;
  text-transform: none !important;
}

.choose-us-title-highlight {
  display: inline !important;
  color: #cda55e !important;
}

.choose-us-lead {
  display: block !important;
  margin: 0 auto !important;
  max-width: 980px !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 1.18rem !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

.choose-us-card-heading {
  display: block !important;
  margin-bottom: 16px !important;
}

.choose-us-card-name {
  color: #efc15f !important;
  font-family: var(--font-title) !important;
  font-size: clamp(2rem, 2.1vw, 2.3rem) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
}

.choose-us-card-divider,
.choose-us-card-subtitle {
  display: none !important;
}

@media (max-width: 820px) {
  .choose-us-frame {
    padding: 28px 14px 26px !important;
  }

  .choose-us-header {
    margin-bottom: 26px !important;
  }

  .choose-us-kicker {
    padding: 0 !important;
    margin-bottom: 14px !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.22em !important;
  }

  .choose-us-title {
    font-size: clamp(2.2rem, 10.2vw, 3.25rem) !important;
    line-height: 0.96 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 18px !important;
  }

  .choose-us-lead {
    max-width: 92% !important;
    font-size: 1.02rem !important;
    line-height: 1.42 !important;
  }

  .choose-us-card-name {
    font-size: 1.84rem !important;
    line-height: 1.06 !important;
  }
}


/* =========================================================
   AJUSTE V377 — QUATRO PILARES
   Escopo: subtítulo sem negrito, fundo com degradê dourado e hover conectado entre gráfico e cards.
========================================================= */

.choose-us-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(209, 162, 69, 0.10), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(209, 162, 69, 0.14), transparent 20%),
    linear-gradient(135deg, #001B2E 0%, #001B2E 54%, #052a42 78%, #d1a245 145%) !important;
}

.choose-us-lead {
  font-weight: 400 !important;
}

.choose-us-info-card,
.choose-us-donut-piece,
.choose-us-donut-text,
.choose-us-connector-group path,
.choose-us-connector-group circle {
  transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, fill 0.32s ease, stroke 0.32s ease, filter 0.32s ease, color 0.32s ease !important;
}

.choose-us-info-card:hover,
.choose-us-info-card.is-linked-hover {
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 227, 154, 0.20), transparent 34%),
    linear-gradient(135deg, rgba(0, 27, 46, 0.98) 0%, rgba(8, 58, 92, 0.98) 44%, rgba(205, 165, 94, 0.26) 100%) !important;
  border-color: rgba(255, 227, 154, 0.88) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 36px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(205, 165, 94, 0.16) !important;
}

.choose-us-info-card:hover::before,
.choose-us-info-card.is-linked-hover::before {
  opacity: 1 !important;
  background: linear-gradient(90deg, rgba(205,165,94,0), rgba(255,227,154,1), rgba(205,165,94,0)) !important;
}

.choose-us-donut-segment:hover .choose-us-donut-piece,
.choose-us-donut-segment.is-active .choose-us-donut-piece {
  fill: url(#chooseUsDonutHover) !important;
  stroke: #ffe39a !important;
  filter: url(#chooseUsDonutGlowStrong) !important;
}

.choose-us-donut-segment:hover .choose-us-donut-text,
.choose-us-donut-segment.is-active .choose-us-donut-text {
  fill: #fff2c8 !important;
  filter: drop-shadow(0 0 8px rgba(255, 227, 154, 0.24)) !important;
}

.choose-us-connector-group.is-active path,
.choose-us-connector-group:hover path {
  stroke: #ffe39a !important;
  filter: drop-shadow(0 0 10px rgba(255, 227, 154, 0.28)) !important;
}

.choose-us-connector-group.is-active circle,
.choose-us-connector-group:hover circle {
  fill: #ffe39a !important;
  filter: drop-shadow(0 0 10px rgba(255, 227, 154, 0.36)) !important;
}


/* =========================================================
   AJUSTE V382 — TELEFONE FORMATADO + TEXTO DOS MENTORES
   Escopo: máscara do campo de número e overlay textual dos cards de mentores.
========================================================= */

.team-card {
  position: relative !important;
  background: #052b46 !important;
}

.team-card img {
  position: relative !important;
  z-index: 0 !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 26px !important;
}

.team-card::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 54% !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(5, 43, 70, 0) 0%, rgba(4, 29, 43, 0.68) 38%, rgba(4, 29, 43, 0.95) 100%) !important;
}

.team-card::after {
  z-index: 4 !important;
}

.team-card-content {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding: 0 18px 18px !important;
  text-align: left !important;
  pointer-events: none !important;
}

.team-card-name,
.team-card-surname {
  display: block !important;
  font-family: var(--font-title) !important;
  font-size: clamp(1.45rem, 1.75vw, 1.85rem) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.015em !important;
}

.team-card-name {
  color: #ffffff !important;
}

.team-card-surname {
  color: #cda55e !important;
  margin-top: 2px !important;
}

.team-card-divider {
  display: block !important;
  width: 100% !important;
  height: 2px !important;
  margin: 10px 0 8px !important;
  background: #cda55e !important;
}

.team-card-description {
  display: block !important;
  width: 100% !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(0.72rem, 0.78vw, 0.86rem) !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
}

.contact-field[data-field="celular"] .contact-input::placeholder {
  color: rgba(91, 103, 117, 0.72) !important;
  opacity: 1 !important;
}

@media (max-width: 820px) {
  .team-card-content {
    padding: 0 20px 20px !important;
  }

  .team-card-name,
  .team-card-surname {
    font-size: clamp(1.7rem, 7vw, 2.25rem) !important;
  }

  .team-card-description {
    font-size: clamp(0.84rem, 3.4vw, 1rem) !important;
    line-height: 1.36 !important;
  }
}


/* =========================================================
   AJUSTES V384 — MENTORES + BANNERS CRISOL/CONSULTORIA
   Escopo: peso do nome, descrição maior e remoção do gradiente dos banners.
========================================================= */

.team-card-name,
.team-card-surname {
  font-weight: 400 !important;
}

.team-card-description {
  font-size: clamp(0.86rem, 0.92vw, 1rem) !important;
  line-height: 1.34 !important;
}

.slide-crisol .hero-slide__overlay,
.slide-consultoria .hero-slide__overlay {
  display: none !important;
  background: transparent !important;
}

@media (max-width: 820px) {
  .team-card-description {
    font-size: clamp(0.96rem, 3.8vw, 1.12rem) !important;
    line-height: 1.34 !important;
  }
}


/* =========================================================
   AJUSTES V385 — CTAs, MOBILE FORM E BANNERS
   Escopo: botões nas linhas indicadas, formulário mobile azul e texto IMS mobile azul escuro.
========================================================= */

.section-inline-cta {
  display: flex !important;
  justify-content: center !important;
  margin-top: 22px !important;
}

.choose-us-inline-cta,
.how-work-inline-cta {
  position: relative !important;
  z-index: 2 !important;
}

.choose-us-inline-cta .section-cta-button,
.how-work-inline-cta .section-cta-button {
  min-width: 292px !important;
  min-height: 56px !important;
  border-radius: 16px !important;
}

@media (max-width: 820px) {
  .section-inline-cta {
    margin-top: 18px !important;
  }

  .choose-us-inline-cta .section-cta-button,
  .how-work-inline-cta .section-cta-button {
    width: min(84vw, 330px) !important;
    min-width: 0 !important;
  }

  .contact-shell {
    background:
      radial-gradient(circle at 18% 16%, rgba(209, 162, 69, 0.10), transparent 28%),
      linear-gradient(180deg, #0d2740 0%, #083a5d 100%) !important;
    border-color: rgba(205, 165, 94, 0.26) !important;
  }

  .contact-copy-side {
    background: transparent !important;
    border-right: 0 !important;
  }

  .contact-form-side {
    background: transparent !important;
    padding: 8px 16px 18px !important;
  }

  .contact-label,
  .contact-label-static {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .contact-disclaimer {
    color: rgba(255, 255, 255, 0.82) !important;
  }

  .contact-disclaimer a {
    color: #cda55e !important;
  }

  .slide-ims .ims-main-title,
  .slide-ims .hero-copy,
  .slide-ims .hero-copy:first-of-type,
  .slide-ims .hero-copy:last-of-type {
    color: #083a5d !important;
  }
}

/* =========================================================
   AJUSTES V386 — IMS MOBILE + FORMULÁRIO MOBILE
   Escopo: remover gradiente do IMS mobile, texto azul escuro e formulário com apenas a área textual em azul.
========================================================= */

@media (max-width: 820px) {
  .slide-ims .hero-slide__overlay {
    display: none !important;
    background: transparent !important;
  }

  .slide-ims .ims-main-title,
  .slide-ims .hero-copy,
  .slide-ims .hero-copy:first-of-type,
  .slide-ims .hero-copy:last-of-type {
    color: #083a5d !important;
  }

  .contact-shell {
    background: #ffffff !important;
    border-color: rgba(8, 53, 86, 0.18) !important;
  }

  .contact-copy-side {
    background: linear-gradient(180deg, #0d2740 0%, #083a5d 100%) !important;
    border-right: 0 !important;
  }

  .contact-form-side {
    background: #ffffff !important;
    padding: 8px 16px 18px !important;
  }

  .contact-label,
  .contact-label-static {
    color: #5b6775 !important;
  }

  .contact-input,
  .contact-select,
  .contact-textarea,
  .contact-input-disabled {
    background: #ffffff !important;
    color: #0d2740 !important;
    border-color: rgba(8, 53, 86, 0.16) !important;
    box-shadow: none !important;
  }

  .contact-input:focus,
  .contact-select:focus,
  .contact-textarea:focus {
    background: #ffffff !important;
    border-color: #cda55e !important;
    box-shadow: 0 0 0 4px rgba(205, 165, 94, 0.12) !important;
  }

  .contact-disclaimer {
    color: #5b6775 !important;
  }

  .contact-disclaimer a {
    color: #083a5d !important;
  }
}

/* =========================================================
   AJUSTES V387 — BANNER CONSULTORIA MOBILE
   Escopo: trocar o texto branco do banner Consultoria para azul escuro no mobile.
========================================================= */

@media (max-width: 820px) {
  .slide-consultoria .section-kicker,
  .slide-consultoria .hero-title,
  .slide-consultoria .hero-copy,
  .slide-consultoria .hero-feature-label {
    color: #083a5d !important;
  }
}

/* =========================================================
   AJUSTES V388 — BOTÕES SECUNDÁRIOS DOS BANNERS IMS E CONSULTORIA
   Escopo: trocar "Entender o I.M.S" e "Falar com especialista" de dourado para azul escuro.
========================================================= */

.slide-ims .hero-actions .btn-secondary,
.slide-consultoria .hero-actions .btn-secondary {
  color: #083a5d !important;
  border-color: #083a5d !important;
  background: transparent !important;
  box-shadow: none !important;
}

.slide-ims .hero-actions .btn-secondary:hover,
.slide-consultoria .hero-actions .btn-secondary:hover {
  color: #083a5d !important;
  border-color: #083a5d !important;
  background: rgba(8, 58, 93, 0.06) !important;
  box-shadow: none !important;
}


/* =========================================================
   AJUSTES V393 — PRODUTOS, CTA E ORDEM DOS BANNERS
   Escopo: linha de produtos, texto de referência e CTA do método.
========================================================= */

.products .products-intro {
  max-width: 1040px;
  margin: 0 auto 34px;
}

.products .section-title.small {
  margin-bottom: 26px !important;
  font-size: clamp(2rem, 2.7vw, 3rem) !important;
  line-height: 1.08 !important;
}

.products-intro-copy {
  max-width: 940px;
  margin: 0 auto;
  color: #083a5d;
  font-family: var(--font-title);
  font-size: clamp(1.14rem, 1.55vw, 1.5rem);
  line-height: 1.38;
  letter-spacing: 0.025em;
}

.products-intro-copy + .products-intro-copy {
  margin-top: 24px;
}

.products-intro-copy--audience {
  max-width: 840px;
}

.products-line {
  align-items: end !important;
}

.product-line-link {
  display: flex !important;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.product-line-brand {
  width: 100%;
  min-height: 96px !important;
  margin-bottom: 8px !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-line-brand img {
  margin-left: auto;
  margin-right: auto;
}

.product-line-brand--ims img {
  max-width: 250px !important;
  max-height: 82px !important;
}

.product-line-brand--consultoria img {
  max-width: 260px !important;
  max-height: 86px !important;
}

.product-line-brand--crisol img {
  max-width: 290px !important;
  max-height: 86px !important;
}

.product-line-copy {
  display: none !important;
}

.product-line-cta {
  margin-top: 2px;
}

.products-method-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.products-method-button {
  min-width: 280px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--gold) !important;
  border-radius: 14px;
  background: var(--gold) !important;
  color: #083a5d !important;
  box-shadow: 0 16px 28px rgba(209, 162, 69, 0.22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.products-method-button:hover {
  background: transparent !important;
  color: #083a5d !important;
  border-color: #083a5d !important;
  box-shadow: none !important;
}

@media (max-width: 820px) {
  .products .products-intro {
    margin-bottom: 28px;
  }

  .products .section-title.small {
    max-width: 26ch !important;
    margin-bottom: 20px !important;
  }

  .products-intro-copy {
    max-width: 92%;
    font-size: clamp(1.06rem, 4.6vw, 1.32rem);
    line-height: 1.36;
  }

  .products-intro-copy + .products-intro-copy {
    margin-top: 18px;
  }

  .product-line-brand {
    min-height: 88px !important;
  }

  .products-method-button {
    width: min(92vw, 330px);
    min-width: 0;
  }
}


/* =========================================================
   AJUSTE V394 — CENTRALIZAÇÃO DA LINHA DE PRODUTOS
========================================================= */
@media (min-width: 821px) {
  .products-line {
    max-width: 1120px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-items: center !important;
    align-items: center !important;
  }
}

.products-line {
  justify-items: center !important;
}

.product-line-item {
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
}

.product-line-link {
  align-items: center !important;
  text-align: center !important;
}

.product-line-brand {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

.product-line-cta {
  align-self: center !important;
  justify-content: center !important;
}


/* =========================================================
   AJUSTE V395 — ESPAÇAMENTO PRODUTOS, FONTE INTRO E LINK SOBRE
   Escopo: apenas linha de produtos e textos introdutórios.
========================================================= */
.products-intro-copy {
  font-family: var(--font-body) !important;
  letter-spacing: 0 !important;
}

@media (min-width: 821px) {
  .products-line {
    max-width: 1360px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    column-gap: 0 !important;
    justify-items: center !important;
    align-items: end !important;
  }

  .product-line-item {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .product-line-link {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }

  .product-line-brand {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* =========================================================
   AJUSTE V396 — CTAs, HOVERS, BANNERS E TEXTOS DA LINHA DE SOLUÇÕES
   Escopo: reposicionamento dos CTAs indicados, animações solicitadas,
   remoção dos botões secundários nos banners e redução dos textos introdutórios.
========================================================= */

.choose-us-stage + .choose-us-inline-cta,
.how-work-grid + .how-work-inline-cta {
  width: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 34px auto 0 !important;
  text-align: center !important;
}

.choose-us-inline-cta .section-cta-button,
.how-work-inline-cta .section-cta-button,
.mentors-band .section-cta-row .section-cta-button,
.testimonials .section-cta-row .section-cta-button,
.cases-band .section-cta-row .section-cta-button,
.help-center-section .section-cta-row .section-cta-button {
  border: 1px solid var(--gold) !important;
  background: var(--gold) !important;
  color: #083a5d !important;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease !important;
}

.choose-us-inline-cta .section-cta-button:hover,
.how-work-inline-cta .section-cta-button:hover,
.mentors-band .section-cta-row .section-cta-button:hover,
.testimonials .section-cta-row .section-cta-button:hover,
.cases-band .section-cta-row .section-cta-button:hover,
.help-center-section .section-cta-row .section-cta-button:hover,
.overview-button:hover {
  background: transparent !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

.overview-button {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease !important;
}

.contact-disclaimer a {
  transition: color .22s ease, text-shadow .22s ease, text-decoration-color .22s ease !important;
}

.contact-disclaimer a:hover {
  color: var(--gold) !important;
  text-decoration-color: var(--gold) !important;
  text-shadow: 0 0 10px rgba(205, 165, 94, 0.22) !important;
}

.products-intro-copy {
  max-width: 860px !important;
  font-size: clamp(1rem, 1.18vw, 1.16rem) !important;
  line-height: 1.42 !important;
}

.products-intro-copy + .products-intro-copy {
  margin-top: 14px !important;
}

.products-intro-copy--audience {
  max-width: 780px !important;
  font-size: clamp(0.98rem, 1.08vw, 1.10rem) !important;
}

@media (max-width: 820px) {
  .choose-us-stage + .choose-us-inline-cta,
  .how-work-grid + .how-work-inline-cta {
    margin-top: 26px !important;
  }

  .products-intro-copy {
    max-width: 92% !important;
    font-size: clamp(0.92rem, 3.8vw, 1.02rem) !important;
    line-height: 1.42 !important;
  }

  .products-intro-copy + .products-intro-copy {
    margin-top: 12px !important;
  }
}



/* =========================================================
   AJUSTE V397 — TEXTOS, PRODUTO IMS FINAL E REVEAL DA HOME
   Escopo: igualar tamanho dos textos da linha de soluções e
   adicionar animação de entrada inspirada na página I.M.S.
========================================================= */

.products-intro-copy,
.products-intro-copy--audience {
  font-size: clamp(1rem, 1.18vw, 1.16rem) !important;
  line-height: 1.42 !important;
}

[data-home-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s ease, transform .72s ease;
  will-change: opacity, transform;
}

[data-home-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-home-reveal="delay-1"] { transition-delay: .08s; }
[data-home-reveal="delay-2"] { transition-delay: .16s; }
[data-home-reveal="delay-3"] { transition-delay: .24s; }
[data-home-reveal="delay-4"] { transition-delay: .32s; }

@media (max-width: 820px) {
  .products-intro-copy,
  .products-intro-copy--audience {
    font-size: clamp(0.92rem, 3.8vw, 1.02rem) !important;
    line-height: 1.42 !important;
  }
}

/* =========================================================
   AJUSTE V408 — BOLINHA GRADIENTE DOURADA QUE SEGUE O MOUSE
   Escopo: efeito visual apenas nas linhas azul royal/azul escuro da Home.
   Rodapé removido do efeito.
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .choose-us-section,
  .how-work-section,
  .mentors-band,
  .testimonials,
  .cases-band {
    --mouse-x: 50%;
    --mouse-y: 50%;
    --mouse-glow-opacity: 0;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate !important;
  }

  .choose-us-section::after,
  .how-work-section::after,
  .mentors-band::after,
  .testimonials::after,
  .cases-band::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    background: radial-gradient(
      circle 330px at var(--mouse-x) var(--mouse-y),
      rgba(193, 125, 9, 0.46) 0%,
      rgba(193, 125, 9, 0.34) 18%,
      rgba(193, 125, 9, 0.18) 38%,
      rgba(193, 125, 9, 0.075) 58%,
      rgba(193, 125, 9, 0) 76%
    ) !important;
    opacity: var(--mouse-glow-opacity) !important;
    transition: opacity 0.34s ease !important;
    mix-blend-mode: screen !important;
    will-change: opacity, background !important;
  }

  .choose-us-section > .container,
  .how-work-section > .container,
  .mentors-band > .container,
  .mentors-band > .section-cta-row,
  .testimonials > .container,
  .cases-band > .container {
    position: relative !important;
    z-index: 1 !important;
  }
}

/* =========================================================
   AJUSTE V417 — BANNER I.M.S
   Escopo: somente banner I.M.S no hero.
   Desktop com degradê branco da direita para a esquerda;
   mobile acompanhando o mesmo contraste visual do desktop.
========================================================= */

@media (min-width: 821px) {
  .slide-ims .hero-slide__overlay {
    display: block !important;
    background: linear-gradient(
      270deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.90) 22%,
      rgba(255, 255, 255, 0.70) 44%,
      rgba(255, 255, 255, 0.36) 68%,
      rgba(255, 255, 255, 0.00) 100%
    ) !important;
  }

  .slide-ims .ims-main-title,
  .slide-ims .hero-copy,
  .slide-ims .hero-copy:first-of-type,
  .slide-ims .hero-copy:last-of-type {
    color: #083a5d !important;
  }
}

@media (max-width: 820px) {
  .slide-ims .hero-slide__overlay {
    display: block !important;
    background: linear-gradient(
      270deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.90) 22%,
      rgba(255, 255, 255, 0.70) 44%,
      rgba(255, 255, 255, 0.36) 68%,
      rgba(255, 255, 255, 0.00) 100%
    ) !important;
  }

  .slide-ims .ims-topline,
  .slide-ims .ims-main-title,
  .slide-ims .hero-copy,
  .slide-ims .hero-copy:first-of-type,
  .slide-ims .hero-copy:last-of-type,
  .slide-ims .feature-pill {
    color: #083a5d !important;
  }
}


/* =========================================================
   AJUSTE V418 — FUNDOS, CASES E ÊNFASES
   Escopo: remover brilho que seguia o mouse, aplicar gradiente dourado
   suave nos fundos escuros, ocultar linha dos cards da seção "Por que somos"
   e transformar as logos de cases em esteira contínua de 110s.
========================================================= */

.choose-us-section,
.how-work-section,
.mentors-band,
.testimonials,
.cases-band {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

.choose-us-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(205, 165, 94, 0.14) 0%, rgba(205, 165, 94, 0.06) 30%, transparent 58%),
    radial-gradient(circle at 86% 78%, rgba(205, 165, 94, 0.13) 0%, rgba(205, 165, 94, 0.05) 28%, transparent 56%),
    linear-gradient(135deg, #001B2E 0%, #052842 48%, #073A5C 76%, #041D2B 100%) !important;
}

.how-work-section,
.mentors-band {
  background:
    radial-gradient(circle at 18% 20%, rgba(205, 165, 94, 0.13) 0%, rgba(205, 165, 94, 0.055) 28%, transparent 56%),
    radial-gradient(circle at 84% 82%, rgba(205, 165, 94, 0.12) 0%, rgba(205, 165, 94, 0.05) 26%, transparent 54%),
    linear-gradient(135deg, #041d2b 0%, #04283d 54%, #08314a 78%, #061f31 100%) !important;
}

.testimonials {
  background:
    radial-gradient(circle at 16% 18%, rgba(205, 165, 94, 0.12) 0%, rgba(205, 165, 94, 0.05) 30%, transparent 58%),
    radial-gradient(circle at 86% 80%, rgba(205, 165, 94, 0.11) 0%, rgba(205, 165, 94, 0.045) 28%, transparent 56%),
    linear-gradient(180deg, #0a4a73 0%, #073a5b 56%, #06334d 74%, #05283c 88%, #041d2b 100%) !important;
}

.cases-band {
  background:
    radial-gradient(circle at 18% 18%, rgba(205, 165, 94, 0.11) 0%, rgba(205, 165, 94, 0.045) 30%, transparent 58%),
    radial-gradient(circle at 84% 84%, rgba(205, 165, 94, 0.10) 0%, rgba(205, 165, 94, 0.04) 28%, transparent 56%),
    linear-gradient(135deg, #041d2b 0%, #05263b 54%, #07314d 78%, #041d2b 100%) !important;
}

.choose-us-section::after,
.how-work-section::after,
.mentors-band::after,
.testimonials::after,
.cases-band::after {
  content: none !important;
  display: none !important;
}

.choose-us-card-accent {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
}

.gold,
.choose-us-title-highlight,
.how-work-title-highlight {
  font-style: italic !important;
}

.cases-logos-slider .carousel-viewport {
  overflow: hidden !important;
}

.cases-logos-track--marquee {
  display: flex !important;
  align-items: center !important;
  width: max-content !important;
  transition: none !important;
  will-change: transform !important;
  animation: casesLogosMarquee 110s linear infinite !important;
}

.cases-logos-track--marquee .case-logo-item {
  flex: 0 0 220px !important;
  width: 220px !important;
  min-height: 118px !important;
  margin-right: 22px !important;
}

@keyframes casesLogosMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .cases-logos-track--marquee .case-logo-item {
    flex-basis: 190px !important;
    width: 190px !important;
    margin-right: 20px !important;
  }
}

@media (max-width: 560px) {
  .cases-logos-track--marquee .case-logo-item {
    flex-basis: 148px !important;
    width: 148px !important;
    margin-right: 18px !important;
  }
}

/* =========================================================
   AJUSTE V420 — IMS MOBILE + DEPOIMENTOS
   Escopo: degradê vertical no IMS mobile e fundo branco nos depoimentos.
========================================================= */

@media (max-width: 820px) {
  .slide-ims .hero-slide__overlay {
    display: block !important;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.90) 22%,
      rgba(255, 255, 255, 0.70) 44%,
      rgba(255, 255, 255, 0.36) 68%,
      rgba(255, 255, 255, 0.00) 100%
    ) !important;
  }
}

.testimonials {
  background: #FFFFFF !important;
  color: #083a5d !important;
}

.testimonials .section-title,
.testimonials .section-lead,
.testimonial-name,
.testimonial-role {
  color: #083a5d !important;
}

.testimonials .section-title .gold,
.testimonials .section-title.small .gold {
  color: #cda55e !important;
}

/* =========================================================
   AJUSTE V439 — TREINO COGNITIVO NA HOME
   Escopo: novo banner no fim do hero, produto na linha com 4 itens,
   novo item no menu Soluções e link no rodapé.
========================================================= */

@media (min-width: 821px) {
  .slide-treino-cognitivo .hero-slide__overlay {
    display: block !important;
    background: linear-gradient(
      90deg,
      rgba(2, 18, 31, 0.92) 0%,
      rgba(4, 29, 43, 0.86) 26%,
      rgba(5, 43, 70, 0.66) 48%,
      rgba(5, 43, 70, 0.26) 72%,
      rgba(5, 43, 70, 0.04) 100%
    ) !important;
  }

  .slide-treino-cognitivo .hero-slide__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr) !important;
    align-items: center !important;
  }

  .slide-treino-cognitivo .hero-slide__content {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    width: 100% !important;
    max-width: 760px !important;
    padding-left: 34px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    transform: translateY(108px) !important;
    text-align: left !important;
  }

  .slide-treino-cognitivo .section-kicker {
    width: min(620px, 100%) !important;
    margin: 0 0 16px !important;
    color: var(--gold) !important;
    font-size: clamp(1.16rem, 1.24vw, 1.42rem) !important;
    line-height: 1.05 !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
  }

  .slide-treino-cognitivo .section-kicker::after {
    content: "" !important;
    display: block !important;
    width: min(520px, 100%) !important;
    height: 2px !important;
    margin-top: 10px !important;
    background: var(--gold) !important;
  }

  .slide-treino-cognitivo .hero-title {
    width: min(720px, 100%) !important;
    max-width: 720px !important;
    margin: 0 0 18px !important;
    font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif !important;
    font-size: clamp(2.15rem, 2.65vw, 3.2rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.02em !important;
  }

  .slide-treino-cognitivo .hero-copy {
    max-width: 650px !important;
    margin: 0 0 24px !important;
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: clamp(1rem, 1.02vw, 1.12rem) !important;
    line-height: 1.46 !important;
  }

  .slide-treino-cognitivo .hero-actions {
    margin-top: 0 !important;
  }

  .slide-treino-cognitivo .hero-actions .btn {
    width: 270px !important;
    min-height: 58px !important;
    padding: 0 18px !important;
    border-radius: 16px !important;
    font-size: 0.9rem !important;
  }

  .slide-treino-cognitivo .btn-primary {
    background: var(--gold) !important;
    color: #083a5d !important;
    border: 1px solid var(--gold) !important;
  }

  .slide-treino-cognitivo .btn-primary:hover {
    background: transparent !important;
    color: var(--gold) !important;
    border-color: var(--gold) !important;
    box-shadow: none !important;
  }

  .product-line-brand--treino-cognitivo img {
    max-width: 260px !important;
    max-height: 86px !important;
  }
}

@media (max-width: 820px) {
  .slide-treino-cognitivo .hero-slide__overlay {
    display: block !important;
    background: linear-gradient(
      90deg,
      rgba(2, 18, 31, 0.94) 0%,
      rgba(4, 29, 43, 0.86) 35%,
      rgba(5, 43, 70, 0.58) 68%,
      rgba(5, 43, 70, 0.22) 100%
    ) !important;
  }

  .slide-treino-cognitivo .hero-slide__grid {
    padding: 64px 0 86px !important;
    align-items: center !important;
  }

  .slide-treino-cognitivo .hero-slide__content {
    width: min(84vw, 500px) !important;
    max-width: min(84vw, 500px) !important;
    margin: 0 auto !important;
    justify-self: center !important;
    align-self: center !important;
    text-align: center !important;
  }

  .slide-treino-cognitivo .section-kicker {
    margin: 0 0 12px !important;
    color: var(--gold) !important;
    font-size: clamp(0.78rem, 2.7vw, 0.96rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.04em !important;
    text-align: center !important;
  }

  .slide-treino-cognitivo .section-kicker::after {
    content: "" !important;
    display: block !important;
    width: min(300px, 100%) !important;
    height: 2px !important;
    margin: 8px auto 0 !important;
    background: var(--gold) !important;
  }

  .slide-treino-cognitivo .hero-title {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 14px !important;
    font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif !important;
    font-size: clamp(1.54rem, 5.1vw, 2.1rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
  }

  .slide-treino-cognitivo .hero-copy {
    max-width: 100% !important;
    margin: 0 0 18px !important;
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: clamp(0.88rem, 3vw, 0.98rem) !important;
    line-height: 1.42 !important;
    text-align: center !important;
  }

  .slide-treino-cognitivo .hero-actions {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 0 !important;
  }

  .slide-treino-cognitivo .hero-actions .btn {
    width: min(72vw, 320px) !important;
    min-height: 56px !important;
    padding: 0 14px !important;
    border-radius: 18px !important;
    font-size: 0.86rem !important;
    margin: 0 auto !important;
  }

  .product-line-brand--treino-cognitivo img {
    max-width: 240px !important;
    max-height: none !important;
  }
}



/* =========================================================
   PÁGINA CASES — V1
   Arquivo independente da home. Mantém cabeçalho, formulário
   e rodapé com a mesma base visual.
========================================================= */

.cases-page main {
  padding-top: 82px;
}

.cases-page-hero {
  position: relative;
  min-height: clamp(540px, calc(100vh - 82px), 760px);
  background: #052b46;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cases-page-hero__media,
.cases-page-hero__video,
.cases-page-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cases-page-hero__media {
  z-index: 0;
  background: #052b46;
}

.cases-page-hero__video {
  object-fit: cover;
  object-position: center center;
  display: block;
}

.cases-page-hero__video--tablet {
  display: none;
}

.cases-page-hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 46%, rgba(205, 165, 94, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(3, 17, 29, 0.88) 0%, rgba(3, 17, 29, 0.72) 38%, rgba(3, 17, 29, 0.34) 68%, rgba(3, 17, 29, 0.10) 100%);
}

.cases-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: 86px 0 92px;
  text-align: center;
}

.cases-page-hero__kicker {
  margin: 0 0 18px;
  color: #cda55e;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cases-page-hero__title {
  margin: 0 auto 20px;
  max-width: 980px;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.cases-page-hero__lead {
  margin: 0 auto;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.62;
}

.cases-page-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
  padding: 74px 0 88px;
}

.cases-page-section .container {
  width: min(1420px, calc(100vw - 48px));
}

.cases-page-heading {
  margin: 0 auto 42px;
  max-width: 980px;
}

.cases-page-kicker {
  margin: 0 0 12px;
  color: #cda55e;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cases-page-title {
  margin: 0;
  color: #083a5d;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 3.7vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.cases-page-title .gold,
.cases-page-title em.gold {
  color: #cda55e;
  font-style: italic;
  font-weight: 400;
}

.cases-page-lead {
  margin: 16px auto 0;
  max-width: 780px;
  color: #355067;
  font-size: 1.04rem;
  line-height: 1.62;
}

.cases-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.cases-page-card {
  min-width: 0;
}

.cases-page-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(8, 53, 86, 0.13);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(2, 18, 31, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cases-page-card__link:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 165, 94, 0.72);
  box-shadow: 0 24px 56px rgba(2, 18, 31, 0.14);
}

.cases-page-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #052b46;
  overflow: hidden;
}

.cases-page-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .35s ease;
}

.cases-page-card__link:hover .cases-page-card__image img {
  transform: scale(1.035);
}

.cases-page-card__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 20px 20px;
}

.cases-page-card__title {
  margin: 0;
  color: #0d2740;
  font-family: var(--font-title);
  font-size: clamp(1.32rem, 1.5vw, 1.74rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.cases-page-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background: #cda55e;
  color: #102033;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}

.cases-page-card__link:hover .cases-page-card__button {
  background: #083a5d;
  color: #ffffff;
}

.cases-page .contact-section {
  padding-top: 72px !important;
}

@media (max-width: 1180px) {
  .cases-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  .cases-page-hero__video--desktop {
    display: none;
  }

  .cases-page-hero__video--tablet {
    display: block;
  }

  .cases-page-hero {
    min-height: 620px;
  }

  .cases-page-hero__overlay {
    background:
      radial-gradient(circle at 50% 38%, rgba(205, 165, 94, 0.14), transparent 34%),
      linear-gradient(180deg, rgba(3, 17, 29, 0.42) 0%, rgba(3, 17, 29, 0.66) 48%, rgba(3, 17, 29, 0.88) 100%);
  }
}

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

@media (max-width: 820px) {
  .cases-page main {
    padding-top: 72px;
  }

  .cases-page-hero {
    min-height: calc(100svh - 72px);
    align-items: flex-end;
  }

  .cases-page-hero__content {
    width: min(92vw, 620px);
    padding: 90px 0 72px;
  }

  .cases-page-hero__kicker {
    margin-bottom: 14px;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
  }

  .cases-page-hero__title {
    font-size: clamp(2.28rem, 10.8vw, 4rem);
    line-height: 0.98;
  }

  .cases-page-hero__lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .cases-page-section {
    padding: 52px 0 58px;
  }

  .cases-page-section .container {
    width: calc(100vw - 24px);
  }

  .cases-page-heading {
    margin-bottom: 28px;
  }

  .cases-page-title {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .cases-page-lead {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .cases-page-grid {
    gap: 18px;
  }

  .cases-page-card__body {
    padding: 18px 16px 18px;
  }

  .cases-page-card__title {
    font-size: 1.36rem;
  }

  .cases-page-card__button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .cases-page-grid {
    grid-template-columns: 1fr;
  }

  .cases-page-hero__content {
    padding-bottom: 58px;
  }

  .cases-page-card__image {
    aspect-ratio: 16 / 8.8;
  }
}


/* V2: caminhos de assets corrigidos no HTML/JS para funcionar na raiz ou dentro da pasta /cases. */

/* =========================================================
   AJUSTES CASES V4 — SOMENTE ALTERAÇÕES SOLICITADAS
========================================================= */

.cases-page-hero {
  min-height: clamp(400px, 52vh, 540px) !important;
}

.cases-page-hero__content {
  padding: 56px 0 62px !important;
}

.cases-page-hero__title {
  font-weight: 400 !important;
  line-height: 1.02 !important;
}

.cases-page-hero__title-line {
  display: block !important;
}

.cases-page-hero__title em.gold {
  color: #cda55e !important;
  font-style: italic !important;
  font-weight: 400 !important;
}

.cases-page-kicker {
  color: #083a5d !important;
}

.cases-page-title,
.cases-page-title-plain {
  font-weight: 400 !important;
}

.cases-page-card__link {
  border-color: rgba(8, 53, 86, 0.46) !important;
}

@media (max-width: 1100px) {
  .cases-page-hero {
    min-height: 460px !important;
  }
}

@media (max-width: 820px) {
  .cases-page-hero {
    min-height: 520px !important;
  }

  .cases-page-hero__content {
    padding: 70px 0 58px !important;
  }
}

@media (max-width: 560px) {
  .cases-page-hero {
    min-height: 500px !important;
  }

  .cases-page-hero__content {
    padding: 62px 0 52px !important;
  }
}

/* =========================================================
   CASES v5 — ajuste do menu Sobre Nós com três cards
   Escopo: manter o mega menu Sobre Nós com 3 cards,
   seguindo o modelo da Central de Ajuda.
========================================================= */
.mega-menu--about {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(930px, calc(100vw - 48px));
}

@media (max-width: 820px) {
  .mega-menu--about {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
}
