*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button,
[role="button"],
.btn {
  outline: none !important;
}

:root {
  --azul: #1c2545;
  --branco: #ffffff;
  --cinza-texto: #2c2c2c;
  --radius-card: 32px;
  --radius-section: 28px;
  --radius-pill: 999px;
  --nav-cta-width: 269px;
  --nav-cta-right: clamp(48px, 3.9vw, 75px);
  --nav-menu-cta-gap: 36px;
  --container-min: 420px;
  --container-max: 1440px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Geist', sans-serif;
  background: #fff;
  color: var(--cinza-texto);
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

body.page-transitioning {
  opacity: 0;
  pointer-events: none;
}

/* ─── NAVBAR ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(2.5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
}

.nav-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: var(--azul);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s;
}

.nav-menu a:hover {
  opacity: .68;
}

.nav-cta {
  display: none;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--azul);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  width: min(84vw, 360px);
  height: 100svh;
  padding: 24px;
  background: #fff;
  box-shadow: 24px 0 60px rgba(17, 24, 52, .16);
  transform: translateX(-104%);
  transition: transform .24s ease;
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
}

.mobile-menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
}

.mobile-menu-panel__top img {
  height: 36px;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #eef2fb;
  color: var(--azul);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-links a {
  display: block;
  border-bottom: 1px solid #edf0f6;
  color: var(--azul);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  padding: 18px 0;
  text-decoration: none;
}

.mobile-menu-socials {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

.mobile-menu-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-socials img {
  width: 25px;
  height: 25px;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 205;
  border: 0;
  background: rgba(17, 24, 52, .34);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.mobile-menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ==================== BUTTON COMPONENT ==================== */
/**
 * @file default.css (Button Component Section)
 * @description Standardized, high-fidelity CTA button styles for Global 384.
 * Handles the two themes (Light and Dark) and two states (Default and Hover)
 * according to the Figma component specifications.
 * 
 * @component Button
 * @variant btn--light  - White background, dark blue gradient text, beige/gold arrow circle.
 *                        Hover: dark blue gradient background, white text, white arrow circle.
 * @variant btn--dark   - Dark blue gradient background, white text, white arrow circle with beige arrow.
 *                        Hover: Lighter blue background, white text, white arrow circle.
 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: var(--radius-pill);
  height: 61px;
  width: min(100%, 269px);
  padding: 0 12px 0 24px;
  cursor: pointer;
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: 0.36px;
  text-decoration: none;
  text-align: left;
  white-space: nowrap;
  isolation: isolate;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
  transform: scale(1.025);
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: none;
}

.btn__label {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn .arrow-circle {
  position: relative;
  z-index: 1;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  /* Clips the arrow during hover animation */
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn .arrow-circle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  display: block;
}

/* Exit-right, enter-left arrow loop animation on hover */
@keyframes arrowSlide {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(30px);
  }

  50.01% {
    transform: translateX(-30px);
  }

  100% {
    transform: translateX(0);
  }
}

.btn:is(:hover, :focus-visible) .arrow-circle svg {
  animation: arrowSlide 0.34s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Light Variant */
.btn--light {
  background: #ffffff;
  color: var(--azul);
  box-shadow: 0 4px 24px rgba(17, 24, 52, 0.05);
}

.btn--light .btn__label {
  background: linear-gradient(170.89deg, #263157 26.863%, #111834 96.563%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn--light .arrow-circle {
  background: linear-gradient(201deg, #ecdec3 41%, #9b876b 150%);
  color: #ffffff;
}

.btn--light::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -9px;
  left: -115%;
  width: 115%;
  height: 79px;
  border-radius: 39.5px;
  background: linear-gradient(165.25deg, #263157 26.863%, #111834 96.563%);
  transition: left 0.34s cubic-bezier(0.4, 0, 0.2, 1), transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--light:is(:hover, :focus-visible)::before {
  left: 50%;
  transform: translateX(-50%);
}

.btn--light:is(:hover, :focus-visible) .btn__label {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffffff;
}

.btn--light:is(:hover, :focus-visible) .arrow-circle {
  background: #ffffff;
  color: #9b876b;
}

/* Dark Variant */
.btn--dark {
  background: linear-gradient(165.25deg, #263157 26.863%, #111834 96.563%);
  color: #ffffff;
}

.btn--dark .btn__label {
  color: #ffffff;
}

.btn--dark .arrow-circle {
  background: #ffffff;
  color: #9b876b;
}

.btn--dark::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -9px;
  left: -115%;
  width: 115%;
  height: 79px;
  border-radius: 39.5px;
  background: #323f6a;
  transition: left 0.34s cubic-bezier(0.4, 0, 0.2, 1), transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--dark:is(:hover, :focus-visible)::before {
  left: 50%;
  transform: translateX(-50%);
}

.btn--dark:is(:hover, :focus-visible) .btn__label {
  color: #ffffff;
}

.btn--dark:is(:hover, :focus-visible) .arrow-circle {
  background: #ffffff;
  color: #9b876b;
}


@media (min-width: 1024px) {
  .nav {
    height: 149px;
    padding: 0;
  }

  .nav-logo {
    position: absolute;
    left: clamp(56px, 4.43vw, 85px);
    top: 89px;
  }

  .nav-logo img {
    height: 40px;
  }



  /* Nav positioning for CTA */
  .nav-cta {
    position: absolute;
    top: 78px;
    right: var(--nav-cta-right);
  }

  .mobile-menu-toggle,
  .mobile-menu-panel,
  .mobile-menu-backdrop {
    display: none;
  }
}

@media (min-width: 1600px) {
  .nav-menu {
    position: absolute;
    right: calc(var(--nav-cta-right) + var(--nav-cta-width) + var(--nav-menu-cta-gap));
    top: 96px;
    display: flex;
    gap: 57px;
    transform: none;
  }

  .nav-menu a {
    font-size: 18px;
  }
}


/* ─── REGULATORY ACCORDION ─── */
.regulatory-section {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
  padding: 96px 0;
  background: #f5f5f5;
  box-shadow: 0 0 0 100vmax #f5f5f5;
  clip-path: inset(0 -100vmax);
  color: #3a3a3a;
}

.regulatory-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 740px;
  margin-bottom: 74px;
}

.regulatory-heading h2 {
  font-size: clamp(34px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.389;
  letter-spacing: .72px;
  text-transform: uppercase;
}

.regulatory-heading p,
.regulatory-copy p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: .36px;
}

.regulatory-copy strong {
  font-weight: 600;
}

.regulatory-grid {
  display: grid;
  grid-template-columns: 438px minmax(0, 1fr);
  gap: 91px;
  align-items: end;
}

.regulatory-copy {
  display: flex;
  flex-direction: column;
  gap: 60px;
}



.regulatory-accordion {
  display: flex;
  align-items: stretch;
  gap: 32px;
  min-width: 0;
  width: 100%;
}

.regulatory-card {
  display: flex;
  min-height: 372px;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 64px;
  transition: flex-grow 0.4s cubic-bezier(0.4, 0, 0.2, 1), flex-basis 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulatory-card.is-open {
  flex-grow: 1;
  flex-basis: 709px;
}

.regulatory-card__tab {
  position: relative;
  width: 64px;
  min-height: 372px;
  border: 0;
  border-left: 1px solid #3a3a3a;
  background: transparent;
  color: #3a3a3a;
  cursor: pointer;
  display: block;
  padding: 0;
}

.regulatory-card__tab-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  gap: 30px;
  width: max-content;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
}

.regulatory-card__tab-inner span {
  display: block;
  min-width: 315px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: .96px;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.regulatory-card__tab-inner strong {
  display: block;
  color: #b49b78;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: .48px;
  white-space: nowrap;
}

.regulatory-card__body {
  position: relative;
  display: none;
  width: 100%;
  min-height: 372px;
  overflow: visible;
  background: transparent;
}

.regulatory-card__body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/figma-regulatory-card-bg.png") center / 100% 100% no-repeat;
  pointer-events: none;
}

.regulatory-card.is-open .regulatory-card__tab {
  display: none;
}

.regulatory-card.is-open .regulatory-card__body {
  display: grid;
  grid-template-columns: 218px 1fr;
}

.regulatory-card__media {
  position: relative;
  z-index: 1;
  min-height: 372px;
  border-radius: 25px 0 0 25px;
  overflow: hidden;
}

.regulatory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.regulatory-card__media--image {
  background:
    linear-gradient(213deg, rgba(236, 222, 195, .72) 41%, rgba(155, 135, 107, .72) 150%),
    #c5a880;
}

.regulatory-card__media--placeholder {
  background:
    linear-gradient(213deg, rgba(236, 222, 195, .78) 41%, rgba(155, 135, 107, .82) 150%),
    linear-gradient(135deg, #e5e7eb, #f7f8fb);
}

.regulatory-card__content {
  position: relative;
  z-index: 1;
  padding: 75px 58px 56px 42px;
  background: transparent;
}

.regulatory-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  border-radius: 0 25px 0 0;
}

.regulatory-card__content::after {
  content: "";
  position: absolute;
  right: 134px;
  bottom: 0;
  width: 134px;
  height: 62px;
  z-index: -1;
  background: #f5f5f5;
  border-radius: 0 0 25px 0;
  box-shadow: 50px -62px 0 0 #f5f5f5;
}

.regulatory-card__content span {
  display: block;
  margin-bottom: 24px;
  color: #3a3a3a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.389;
  letter-spacing: .96px;
  text-transform: uppercase;
}

.regulatory-card__content p {
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.389;
  letter-spacing: .36px;
}

.regulatory-card__content strong {
  position: absolute;
  right: 54px;
  bottom: 0;
  color: #b49b78;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.389;
  letter-spacing: .96px;
}

@media (max-width: 1180px) {
  .regulatory-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .regulatory-copy {
    max-width: 680px;
  }

  .regulatory-accordion {
    flex-direction: column;
    gap: 16px;
  }

  .regulatory-card,
  .regulatory-card__body {
    width: 100%;
    min-height: auto;
  }

  .regulatory-card {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
  }

  .regulatory-card__tab {
    display: flex;
    position: relative;
    width: 100%;
    min-height: 76px;
    border: 1px solid #d9dee8;
    border-radius: 20px;
    justify-content: space-between;
    padding: 0 22px;
  }

  .regulatory-card__tab-inner {
    position: static;
    width: 100%;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 18px;
  }

  .regulatory-card__tab-inner span {
    min-width: 0;
    font-size: 14px;
    white-space: normal;
  }

  .regulatory-card.is-open .regulatory-card__body {
    grid-template-columns: 180px 1fr;
  }

  .regulatory-card__content {
    padding: 36px 32px 72px;
  }
}

@media (max-width: 640px) {
  .regulatory-section {
    width: min(calc(100% - 32px), var(--container-max));
    padding: 72px 0;
  }

  .regulatory-heading {
    margin-bottom: 44px;
  }

  .regulatory-heading h2 {
    font-size: 28px;
  }

  .regulatory-heading p,
  .regulatory-copy p,
  .regulatory-card__content p {
    font-size: 16px;
  }

  .regulatory-copy {
    gap: 32px;
  }



  .regulatory-card__tab {
    display: none !important;
  }

  .regulatory-card__body {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .regulatory-card__media {
    min-height: 220px;
    border-radius: 25px 25px 0 0;
  }

  .regulatory-card__content {
    padding: 28px 24px 76px;
  }
}

/* ─── GRUPO CRONOS ─── */
.cronos-section {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
  padding: 96px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  background: #f5f5f5;
  box-shadow: 0 0 0 100vmax #f5f5f5;
  clip-path: inset(0 -100vmax);
  color: #3a3a3a;
}

.cronos-copy {
  width: 556px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cronos-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 10px 20px;
  border: 1.5px solid rgba(58, 58, 58, .03);
  border-radius: 62px;
  background: rgba(58, 58, 58, .03);
  color: #2c2c2c;
  font-size: 12px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cronos-copy h2 {
  width: 569px;
  color: #3a3a3a;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.389;
  letter-spacing: .72px;
  text-transform: uppercase;
}

.cronos-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: .36px;
}



.cronos-cards {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cronos-card {
  position: relative;
  width: 394px;
  height: 430px;
  border-radius: 25px;
  overflow: hidden;
  padding: 35px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  color: #fff;
}

.cronos-card--tech {
  background:
    radial-gradient(circle at -18% 121%, rgba(59, 54, 255, .9), rgba(59, 54, 255, 0) 38%),
    radial-gradient(circle at 124% -18%, rgba(59, 54, 255, .8), rgba(59, 54, 255, 0) 36%),
    #1e1d41;
}

.cronos-card--global {
  background: linear-gradient(128deg, #1c2545 27%, #111834 97%);
}

.cronos-card__logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.cronos-card__logo--cronos {
  gap: 8px;
}

.cronos-card__mark {
  width: 46.5px;
  height: 31px;
}

.cronos-card__wordmark {
  width: 134.294px;
  height: 20.331px;
}

.cronos-card__global-logo {
  width: 174.065px;
  height: 31px;
}

.cronos-card__line {
  position: absolute;
  z-index: 1;
  right: -122px;
  bottom: -177px;
  width: 365px;
  height: 555px;
  pointer-events: none;
}

.cronos-card__body {
  position: relative;
  z-index: 2;
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cronos-card__body p {
  width: 324px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  letter-spacing: .36px;
}

.cronos-card__body strong {
  font-weight: 600;
}

.cronos-card__body a {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.389;
  letter-spacing: .3px;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .cronos-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .cronos-copy,
  .cronos-copy h2 {
    width: 100%;
    max-width: 680px;
  }

  .cronos-cards {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .cronos-section {
    width: min(calc(100% - 32px), var(--container-max));
    padding: 72px 0;
  }

  .cronos-copy h2 {
    font-size: 30px;
  }

  .cronos-text {
    font-size: 16px;
  }

  .cronos-card {
    width: 100%;
  }

  .cronos-card__body p {
    width: 100%;
  }
}

/* ─── SVG CUTOUT DEMO ─── */
.cutout-demo-section {
  padding-top: 64px;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}

.cutout-demo-card {
  position: relative;
  width: min(calc(100% - 32px), var(--container-max));
  min-height: 680px;
  margin: 8px auto 16px;
  border-radius: var(--radius-card) var(--radius-card) 0 var(--radius-card);
  overflow: hidden;
  flex: none;
  isolation: isolate;
}

.cutout-demo-card::before,
.cutout-demo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("../images/Subtract.svg") center / 100% 100% no-repeat;
  mask: url("../images/Subtract.svg") center / 100% 100% no-repeat;
}

.cutout-demo-card::before {
  background: url("../images/global-384-hero-cover.jpg") center / cover no-repeat;
}

.cutout-demo-card::after {
  background: linear-gradient(110deg, rgba(17, 24, 52, .78), rgba(17, 24, 52, .24) 48%, rgba(17, 24, 52, .05));
}

.cutout-demo-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 40px 24px 90px;
  color: #fff;
  font-family: 'Geist', sans-serif;
}

.cutout-demo-content span {
  display: block;
  margin-bottom: 20px;
  color: #ecdec3;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.cutout-demo-content h1 {
  margin-bottom: 22px;
  font-size: 54px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.cutout-demo-content p {
  max-width: 520px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .cutout-demo-card {
    min-height: 680px;
  }
}

@media (min-width: 1024px) {
  .cutout-demo-section {
    padding-top: 149px;
  }

  .cutout-demo-card {
    width: min(calc(100% - 160px), var(--container-max));
    min-height: 776px;
    margin: 12px auto 40px;
    border-radius: 0;
    overflow: visible;
  }

  .cutout-demo-content {
    max-width: 650px;
    padding: 122px 160px;
  }
}

/* ─── PAGE SECTIONS ─── */
.page-section {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
  padding: 92px 0;
}

.section-eyebrow {
  color: #9b876b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  color: var(--azul);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-copy {
  color: #4b5563;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.split-section {
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.split-section__content {
  display: grid;
  gap: 28px;
}

.split-section__media {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(220px, 0.88fr) minmax(260px, 1fr);
  align-items: stretch;
}

.split-section__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius-section);
  object-fit: cover;
}

.split-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.platform {
  background: #f7f8fb;
  width: 100%;
  padding: 96px 0;
}

.platform__inner,
.group-section,
.comparison__inner,
.audiences__inner,
.cta__inner,
.faq__inner {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
}

.platform__header,
.audiences__header,
.comparison__header,
.faq__header {
  max-width: 920px;
  margin-bottom: 44px;
}

.platform__grid,
.audiences__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.audience-card,
.company-card {
  border-radius: var(--radius-section);
  background: #fff;
}

.feature-card {
  min-height: 320px;
  padding: 32px;
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #eef2fb;
  color: var(--azul);
  font-size: 18px;
  font-weight: 600;
}

.feature-card h3,
.audience-card h3,
.company-card h3 {
  color: var(--azul);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 14px;
}

.feature-card p,
.audience-card p,
.company-card p {
  color: #5b6472;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}

.group-section {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding: 96px 0;
  align-items: center;
}

.group-section__content {
  display: grid;
  gap: 26px;
}

.group-section__cards {
  display: grid;
  gap: 18px;
}

.company-card {
  padding: 32px;
}

.company-card--primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(28, 37, 69, .96), rgba(17, 24, 52, .98)),
    url("../images/global-384-hero-cover.jpg") center / cover;
  border-color: rgba(255, 255, 255, .18);
}

.company-card--primary h3,
.company-card--primary p {
  color: #fff;
}

.comparison {
  background: var(--azul);
  color: #fff;
  padding: 96px 0;
}

.comparison .section-title,
.comparison .section-copy {
  color: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius-section);
  background: rgba(255, 255, 255, .06);
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
  text-align: left;
}

.comparison-table th {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
}

.comparison-table td:nth-child(2),
.comparison-table th:nth-child(2) {
  color: #f4dfbd;
  background: rgba(197, 168, 128, .12);
}

.audiences {
  padding: 96px 0;
}

.audience-card {
  overflow: hidden;
}

.audience-card__media {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(28, 37, 69, .88), rgba(155, 135, 107, .54)),
    url("../images/perfil-global-384.jpg") center / cover;
}

.audience-card__body {
  padding: 28px;
}

.cta {
  padding: 96px 0;
  color: #fff;
}

.cta__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  min-height: 420px;
  padding: 56px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(100deg, rgba(17, 24, 52, .96), rgba(17, 24, 52, .62)),
    url("../images/global-384-hero-cover.jpg") center / cover;
}

.cta__content {
  max-width: 880px;
}

.cta h2 {
  font-size: clamp(36px, 5vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 28px;
}

.cta h2 strong {
  color: #f4dfbd;
  font-weight: 600;
}

/* pill-button styles removed, using global .btn */

.faq {
  padding: 96px 0 32px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.faq details {
  border: 1px solid #e3e8f2;
  border-radius: 22px;
  background: #fff;
  padding: 0 24px;
}

.faq summary {
  color: var(--azul);
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
  padding: 24px 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  color: #5b6472;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  padding: 0 0 24px;
}

@media (max-width: 1180px) {

  .split-section,
  .group-section,
  .split-section__media,
  .platform__grid,
  .audiences__grid {
    grid-template-columns: 1fr;
  }

  .split-section__media img {
    min-height: 320px;
  }
}

@media (max-width: 480px) {

  .page-section,
  .platform__inner,
  .group-section,
  .comparison__inner,
  .audiences__inner,
  .cta__inner,
  .faq__inner {
    width: min(calc(100% - 32px), var(--container-max));
  }

  .page-section,
  .platform,
  .group-section,
  .comparison,
  .audiences,
  .cta,
  .faq {
    padding: 64px 0;
  }

  .cta__inner {
    min-height: 360px;
    padding: 32px 24px;
  }

  .pill-button {
    width: 100%;
  }
}

/* ─── FOOTER ─── */
footer {
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
  padding: 48px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo img {
  height: 36px;
}

.footer-info {
  font-size: 15px;
  font-weight: 300;
  color: var(--azul);
  line-height: 1.6;
  text-align: inherit;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  text-decoration: none;
}

.social-btn:hover {
  opacity: .8;
}

.social-btn img {
  width: 22px;
  height: 22px;
}

.footer-copy {
  font-size: 14px;
  font-weight: 300;
  color: var(--azul);
  text-align: center;
}

@media (min-width: 1024px) {
  footer {
    width: min(calc(100% - 160px), var(--container-max));
    padding: 56px 0 48px;
    gap: 68px;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    text-align: left;
  }

  .footer-left {
    align-items: flex-start;
    gap: 34px;
    max-width: 528px;
  }

  .footer-socials {
    gap: 35px;
    margin-top: 38px;
  }

  .social-btn {
    width: 59px;
    height: 59px;
  }

  .social-btn img {
    width: 35px;
    height: 35px;
  }

  .footer-copy {
    margin-top: 8px;
    text-align: left;
  }
}

@media (min-width: 452px) {

  .nav,
  .hero-card,
  footer {
    min-width: var(--container-min);
  }
}

@media (max-width: 1023px) {

  footer,
  .footer-copy {
    text-align: center;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
  }
}

/* ─── MODAL OVERLAY ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: 28px;
  padding: 40px 32px;
  width: 100%;
  max-width: 460px;
  position: relative;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #555;
  transition: background .15s;
}

.modal-close:hover {
  background: #e0e0e0;
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azul);
  opacity: .6;
  margin-bottom: 10px;
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--azul);
  line-height: 1.3;
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--azul);
  letter-spacing: .3px;
}

.field input {
  height: 48px;
  border: 1.5px solid #e0e3ed;
  border-radius: 12px;
  padding: 0 16px;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--cinza-texto);
  outline: none;
  transition: border-color .15s;
}

.field input:focus {
  border-color: var(--azul);
}

.field input.error {
  border-color: #e5484d;
}

.field-error {
  font-size: 11px;
  color: #e5484d;
  font-weight: 400;
  min-height: 14px;
}

.modal-submit {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: var(--azul);
  color: #fff;
  border: none;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.modal-submit:hover {
  opacity: .88;
}

.modal-submit:active {
  transform: scale(.98);
}

.modal-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}

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

.modal-submit.loading .spinner {
  display: block;
}

.modal-submit.loading .btn-label {
  display: none;
}

/* ─── FEEDBACK MODAL ─── */
.modal-feedback {
  text-align: center;
  padding: 48px 32px;
}

.feedback-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.feedback-icon.success {
  background: #e8f9ed;
}

.feedback-icon.error {
  background: #fde8e8;
}

.feedback-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--azul);
  margin-bottom: 10px;
}

.feedback-msg {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
  margin-bottom: 28px;
}

.feedback-btn {
  height: 48px;
  border-radius: 999px;
  background: var(--azul);
  color: #fff;
  border: none;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 0 32px;
  cursor: pointer;
  transition: opacity .2s;
}

.feedback-btn:hover {
  opacity: .85;
}

/* ─── BREADCRUMBS ─── */
.breadcrumb-container {
  display: none !important;
  width: min(calc(100% - 48px), var(--container-max));
  margin: 0 auto;
  padding: 120px 0 20px;
  font-family: 'Google Sans Flex', 'Geist', sans-serif;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #5b6472;
}

.breadcrumb-item a {
  color: #9b876b;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: var(--azul);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  margin-right: 8px;
  color: #d9dee8;
}

.breadcrumb-item--active {
  color: var(--azul);
  font-weight: 600;
}

/* Muted/inactive links pointing to nowhere */
.link-muted,
.link-muted:hover {
  opacity: 0.45 !important;
  color: inherit !important;
  cursor: not-allowed !important;
  text-decoration: none !important;
  transform: none !important;
}