: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; }

.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);
}

.mega-menu {
  position: fixed;
  left: 50%;
  top: calc(var(--header-height) + 10px);
  transform: translateX(-50%);
  width: min(1020px, calc(100vw - 72px));
  background: rgba(255, 255, 255, 0.985);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(2, 18, 31, 0.18);
  padding: 18px 22px 20px;
  display: grid;
  gap: 18px;
  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(1060px, calc(100vw - 72px));
  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--4col {
    width: min(980px, calc(100vw - 60px));
  }
}

@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__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 {
  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: 1.2rem;
  cursor: pointer;
  z-index: 12;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.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: 1.2rem;
  cursor: pointer;
  z-index: 12;
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.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: 36px 0 42px;
}

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

.products-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  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: 10px;
  min-height: 64px;
}

.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 12px;
  color: #26435b;
  font-size: 0.96rem;
  line-height: 1.34;
}

.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);
}

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

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

  .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: 48px 0 56px;
  }

  .products .section-title.small {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }

  .products-line {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-line-item {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .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.98rem;
    line-height: 1.48;
    margin-bottom: 14px;
  }

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

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

/* CAROUSELS */

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

.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;
}

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

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

/* RESULTS */

.results {
  background: #FFFFFF;
}

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

.results .section-lead {
  font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif;
  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: var(--bg);
  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;
}

.result-label {
  margin-top: 10px;
  color: var(--text-soft);
}

/* TESTIMONIALS */

.testimonials {
  background: linear-gradient(180deg, #0a4a73 0%, #073a5b 100%);
  color: #fff;
}

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

.testimonials .section-lead {
  font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.45;
  max-width: 980px;
  margin: 10px auto 0;
}

.testimonials-slider {
  margin-top: 26px;
  padding-bottom: 18px;
}

.testimonials .carousel-dots {
  margin-top: 24px;
  position: relative;
  top: 6px;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1fr 2.05fr 1fr;
  gap: 26px;
  align-items: center;
}

.testimonial-layout.single-video {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-template-columns: none;
}

.testimonial-video {
  width: min(100%, 760px);
  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-top: 16px;
  text-align: center;
}

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

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

/* CLIENTS */

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

.cases-band {
  background: #052b46;
  padding: 34px 0 30px;
}

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

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

.cases-cards-slider {
  margin-bottom: 26px;
}

.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;
}

.case-card {
  flex: 0 0 calc((100% - 2 * 14px) / 3);
  margin-right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

  .cases-cards-slider {
    padding: 0 52px;
    margin-bottom: 22px;
  }

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

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

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

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

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

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

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

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

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

/* 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 * 18px) / 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-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .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;
  }

  .team-card {
  flex-basis: 78%;
}

  .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;
  }
}

/* =========================
   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: start !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 860px !important;
  padding-left: 24px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !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(1rem, 1.04vw, 1.08rem) !important;
    line-height: 1.42 !important;
    margin: 0 0 14px !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-size: clamp(0.84rem, 3vw, 0.92rem) !important;
  line-height: 1.34 !important;
  margin: 0 0 10px !important;
}
  .slide-ims .hero-copy:first-of-type {
  font-size: clamp(0.9rem, 3.2vw, 0.98rem) !important;
  line-height: 1.34 !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 .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(102px) !important;
  text-align: left !important;
}

  .slide-sobre .hero-title {
    width: min(880px, 100%) !important;
    max-width: none !important;
    margin: 0 0 28px !important;
    font-family: "Baskerville Old Face", Baskerville, "Times New Roman", serif !important;
    font-size: clamp(2.15rem, 2.35vw, 3rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !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;
    margin: 0 0 26px !important;
    font-size: clamp(1rem, 1.04vw, 1.14rem) !important;
    line-height: 1.46 !important;
    color: #fff !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 .container {
  width: min(1280px, calc(100vw - 34px));
}

.contact-shell {
  border: 2px solid rgba(8, 53, 86, 0.78);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 30px 20px 24px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  column-gap: 60px;
  align-items: start;
}

.contact-title-side {
  width: 260px;
  max-width: 260px;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 22px;
  padding-left: 4px;
}

.contact-title-display {
  margin: 0;
  width: 100%;
  max-width: 260px;
  color: #083a5d;
  font-family: var(--font-title);
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.contact-form-side {
  min-width: 0;
  max-width: 980px;
  padding-left: 8px;
}

.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: 140px 96px minmax(0, 1fr);
  gap: 12px;
}

.contact-field {
  position: relative;
}

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

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

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

.contact-input {
  width: 100%;
  height: 40px;
  border: 1.6px solid rgba(40, 40, 40, 0.78);
  border-radius: 2px;
  background: #FFFFFF;
  color: #202020;
  padding: 9px 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: 104px;
  min-height: 104px;
  resize: none;
  padding-top: 14px;
}

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

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

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

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

@media (max-width: 1100px) {
  .contact-shell {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 72px;
    padding: 26px 16px 22px;
  }

  .contact-title-display {
    font-size: clamp(2.5rem, 4.6vw, 4.1rem);
  }

  .contact-form-side {
    max-width: 100%;
  }

  .contact-grid-phone {
    grid-template-columns: 1fr 92px 1.2fr;
  }
}

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

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

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 14px 20px;
  }

  .contact-title-side {
    padding-top: 0;
    padding-left: 0;
  }

  .contact-title-display {
    font-size: clamp(2.6rem, 10vw, 4rem);
    line-height: 0.94;
  }

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

  .contact-input {
    height: 42px;
  }

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

  .contact-disclaimer {
    max-width: 100%;
  }
}

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

.help-center-section {
  background: #FFFFFF;
  padding: 34px 0 18px;
}

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

.help-center-shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 160px;
  align-items: start;
}

.help-center-sidebar {
  position: sticky;
  top: 110px;
  max-width: 150px;
}

.help-center-title {
  margin: 0;
  color: #0a2438;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 4.4vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.help-center-divider {
  width: 140px;
  height: 3px;
  background: #cda55e;
  margin: 18px 0 18px;
}

.help-center-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.help-center-nav a {
  color: #1f2e3a;
  font-family: var(--font-title);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  padding-left: 14px;
  transition: transform 0.18s ease, color 0.18s ease;
}

.help-center-nav a::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  color: #1f2e3a;
}

.help-center-nav a:hover {
  color: #0b4a73;
  transform: translateX(3px);
}

.help-center-nav a.is-active {
  color: #cda55e;
}

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

.faq-group {
  margin-bottom: 34px;
  scroll-margin-top: 120px;
}

.faq-group-title {
  margin: 0 0 14px;
  color: #0a2438;
  font-family: var(--font-title);
  font-size: clamp(2rem, 2.8vw, 2.4rem);
  line-height: 1.05;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  width: 100%;
  min-height: 46px;
  border: 1px solid #0b4a73;
  border-radius: 6px;
  background: #0b4a73;
  color: #fff;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-item.is-open .faq-question {
  background: #f3f1ee;
  color: #0b4a73;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 14px;
  transition: transform .28s ease;
}

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

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

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

.faq-answer p {
  margin: 0;
  max-width: none;
  width: 100%;
  color: #5d6670;
  font-size: 1rem;
  line-height: 1.45;
}

.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: 980px) {
  .help-center-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .help-center-sidebar {
    position: static;
    top: auto;
    max-width: 100%;
    width: 100%;
  }
}

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

  .help-center-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .help-center-sidebar {
    position: static;
    top: auto;
    max-width: 100%;
    width: 100%;
    margin-bottom: 8px;
  }

  .help-center-title {
    font-size: clamp(2.2rem, 11vw, 3.6rem);
    line-height: 0.92;
    margin-bottom: 8px;
  }

  .help-center-divider {
    width: 120px;
    margin: 14px 0 16px;
  }

  .help-center-nav {
    gap: 10px;
    margin-bottom: 8px;
  }

  .help-center-nav a {
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .faq-group {
    scroll-margin-top: 92px;
  }

  .faq-group-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1;
    margin: 0 0 14px;
  }

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

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

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