/* Auto-concatenated for fewer render-blocking requests. Source of truth: variables/base/components/sections. Regenerated by scripts/build-site-css.js */

/* ===== variables.css ===== */
:root {
  --color-navy: #000a4a;
  --color-dark: #070235;
  --color-red: #ff332f;
  --color-orange: #ff7c41;
  --color-bg: #f7f9fb;
  --color-gray: #47464f;
  --color-text: #191c1e;
  --color-light: #f4f4f4;
  --color-border: #e2e8f0;
  --color-team-bg: #e0dddc;
  --color-footer: #070235;
  --color-white: #ffffff;
  --font-headline: "Stack Sans Headline", sans-serif;
  --font-text: "Stack Sans Text", sans-serif;
  --container: 1440px;
  --content-padding: clamp(24px, 5vw, 64px);
  --section-padding: clamp(48px, 6vw, 96px);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
  --shadow-btn: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --nav-height: 137.94px;
  --transition: 0.25s ease;
}

/* ===== base.css ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--content-padding);
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gray);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-team-bg);
  display: inline-block;
}

.section-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.27;
  letter-spacing: -0.3px;
  color: var(--color-text);
}

.section-title--navy {
  color: var(--color-navy);
}

.section-title--center {
  text-align: center;
}

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

/* ===== components.css ===== */
/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(247, 249, 251, 0.94);
  border-bottom: 1px solid rgba(200, 197, 208, 0.3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.nav__logo img {
  display: block;
  height: 121.97px;
  width: auto;
  max-width: none;
  max-height: none;
}

.nav__logo-text {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-navy);
  letter-spacing: -0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .nav__logo {
    justify-self: start;
  }

  .nav__links {
    justify-self: center;
  }

  .nav__cta {
    justify-self: end;
  }
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: var(--color-gray);
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-navy);
}

.nav__link--active {
  border-bottom: 2px solid var(--color-red);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.28px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), opacity var(--transition);
}

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

.btn--primary {
  padding: 16px 44px;
  background: var(--color-red);
  color: var(--color-white);
}

.btn--outline {
  padding: 16px 61px;
  border: 1px solid var(--color-light);
  color: var(--color-light);
  background: transparent;
}

.btn--outline-dark {
  padding: 16px 48px;
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow-btn);
}

.btn--navy {
  padding: 16px 0;
  width: 252px;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.btn--nav {
  padding: 10px 24px;
  background: var(--color-red);
  color: var(--color-white);
  white-space: nowrap;
}

.btn--cta-red {
  padding: 20px 48px;
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

.btn--cta-white {
  padding: 20px 48px;
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow-btn);
}

/* Marquee */
.marquee {
  overflow: hidden;
  padding: 12px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: rgba(200, 197, 208, 0.1);
}

.marquee--orange {
  background: linear-gradient(90deg, var(--color-red) 0%, var(--color-orange) 100%);
}

.marquee--empty {
  padding: 0;
  height: 25px;
}

.marquee--navy {
  background: var(--color-navy);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 69px;
  padding-right: 69px;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-light);
  white-space: nowrap;
}

.marquee__dot {
  width: 12px;
  height: 15px;
  background: var(--color-light);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.marquee--orange .marquee__text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-light);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.glass-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
}

.glass-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.glass-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-text);
  margin-top: 16px;
}

.glass-card__desc {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray);
  opacity: 0.8;
  margin-top: 8px;
}

/* Team card */
.team-card {
  flex: 0 0 336px;
  scroll-snap-align: start;
}

.team-card__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  background: var(--color-white);
  object-fit: cover;
  object-position: center top;
}

.team-card__name {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--color-dark);
  margin-top: 16px;
}

.team-card__role {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 4px;
}

.team-card__body {
  margin-top: 8px;
  width: 100%;
}

.team-card__bio {
  width: 100%;
  max-width: 341px;
  height: 40px;
  min-height: 40px;
  margin: 0;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.team-card.is-expanded .team-card__bio {
  display: block;
  height: auto;
  min-height: 40px;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.team-card__languages {
  display: block;
  margin-top: 20px;
}

.team-card__languages-label {
  color: var(--color-orange);
}

.team-card__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  color: var(--color-navy);
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.team-card.has-overflow .team-card__toggle {
  display: inline-flex;
}

.team-card__toggle-icon {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform var(--transition);
}

.team-card.is-expanded .team-card__toggle-icon {
  transform: rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .team-card__toggle:hover {
    opacity: 0.7;
  }
}

/* Article card */
a.article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.article-card__image {
  width: 100%;
  height: 198px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-navy) 0%, #4259f0 100%);
}

.article-card__meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-top: 15px;
}

.article-card__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-navy);
  margin-top: 15px;
}

.article-card__excerpt {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-gray);
  margin-top: 8px;
}

/* FAQ */
.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: var(--color-gray);
  cursor: pointer;
  list-style: none;
}

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

.faq-item__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  transition: transform var(--transition);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 24px 24px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: var(--color-gray);
}

/* Carousel controls */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-nav__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.carousel-nav__btn:hover {
  opacity: 0.85;
}

.carousel-nav__btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-white);
}

.carousel-nav__btn--prev svg {
  transform: rotate(180deg);
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 66px;
  height: 67px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
}

@media (max-width: 767px) {
  .whatsapp-btn {
    width: 56px;
    height: 56px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

.whatsapp-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn svg {
  width: 36px;
  height: 36px;
  fill: white;
}

/* Form */
.form-card {
  background: var(--color-white);
  box-shadow: 0 6px 80px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 51px);
}

.form-group {
  margin-bottom: 24px;
}

.form-input {
  width: 100%;
  padding: 19px;
  border: 1.6px solid rgba(66, 80, 102, 0.4);
  box-shadow: 0 3px 6px rgba(66, 80, 102, 0.1);
  border-radius: 8px;
  font-size: 16px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-input:focus {
  border-color: var(--color-navy);
}

.form-input--error {
  border-color: var(--color-red);
}

.form-error {
  font-size: 12px;
  color: var(--color-red);
  margin-top: 6px;
}

.form-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 51px;
  margin-bottom: 24px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 16px;
  line-height: 21px;
  cursor: pointer;
}

.form-checkbox input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--color-navy);
  flex-shrink: 0;
}

.form-submit {
  padding: 19px 38px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-lg);
}

/* Mobile nav overlay */
.nav__cta-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .nav__inner {
    padding-inline: clamp(24px, 5vw, 40px);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__cta-mobile {
    display: inline-flex;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(247, 249, 251, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px var(--content-padding);
    border-bottom: 1px solid rgba(200, 197, 208, 0.3);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    padding: 16px 0;
    border-bottom: 1px solid rgba(200, 197, 208, 0.2);
  }
}

/* Footer (shared across all pages) */
.footer {
  width: 100%;
  background: var(--color-footer, #070033);
  min-height: 289px;
  margin-bottom: 0;
  padding: 64px clamp(24px, 5vw, 64px) 48px;
  box-sizing: border-box;
}

.footer__inner {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  box-sizing: border-box;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: 180px;
  height: 96px;
  overflow: hidden;
  line-height: 0;
}

.footer__logo-img {
  display: block;
  width: 180px;
  height: auto;
  margin-top: -34px;
}

.footer__copyright {
  margin-top: 32px;
  max-width: 280px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.625;
  color: var(--color-white);
}

.footer__links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 32px;
}

.footer__link {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity var(--transition);
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 20px 24px 24px;
  background: #000;
  box-sizing: border-box;
}

.footer__credit-label {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer__credit-logo {
  display: block;
  height: 18px;
  width: auto;
  max-width: min(200px, 70vw);
}

.footer__credit-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__credit-link:hover {
  opacity: 0.8;
}

@media (max-width: 1023px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 64px 24px 48px;
  }

  .footer__logo {
    width: 160px;
    height: 85px;
  }

  .footer__logo-img {
    width: 160px;
    margin-top: -30px;
  }

  .footer__copyright {
    max-width: calc(100% - 80px);
    padding-right: 8px;
    box-sizing: border-box;
  }
}

/* ===== sections.css ===== */
/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  max-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-navy);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 10, 74, 0.55) 55%, rgba(0, 10, 74, 0.72) 100%),
    linear-gradient(0deg, rgba(0, 10, 74, 0.25), rgba(0, 10, 74, 0.25));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  padding: var(--content-padding);
}

.hero__title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 56px;
  letter-spacing: -0.96px;
  color: var(--color-light);
}

.hero__title-highlight {
  color: var(--color-red);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 28px;
  color: var(--color-light);
  max-width: 770px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 352px;
}

.hero__actions .btn {
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding-block: 0;
  justify-content: center;
  box-sizing: border-box;
}

/* Segmentos */
.segmentos {
  padding: 40px 0 64px;
  background: var(--color-white);
}

@media (min-width: 1024px) {
  .segmentos {
    padding: 48px 0 80px;
  }
}

.segmentos__inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 768px) {
  .segmentos__inner {
    padding-inline: 24px;
  }
}

.segmentos__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .segmentos__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
  }
}

.segmentos__intro {
  max-width: 620px;
}

.segmentos__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: #151820;
}

@media (min-width: 1024px) {
  .segmentos__title {
    font-size: 32px;
  }
}

.segmentos__subtitle {
  margin-top: 16px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.6;
  color: #333846;
}

.segmentos__label {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
}

@media (min-width: 1024px) {
  .segmentos__label {
    display: flex;
  }
}

.segmentos__label-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1b2130;
}

.segmentos__label-line {
  display: block;
  margin-top: 12px;
  width: 130px;
  height: 1px;
  background: #e5e7eb;
}

.segmentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .segmentos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .segment-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .segmentos__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
}

.segment-card--featured {
  grid-column: span 1;
  min-height: 220px;
  background: var(--color-navy);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

@media (min-width: 1024px) {
  .segment-card--featured {
    grid-column: span 4;
  }
}

@media (hover: hover) and (pointer: fine) {
  .segment-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  }
}

.segment-card__mark {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 67px;
  height: 15px;
}

@media (max-width: 767px) {
  .segment-card--featured {
    justify-content: flex-start;
    gap: 20px;
    min-height: auto;
  }

  .segment-card__mark {
    position: static;
    align-self: flex-end;
    flex-shrink: 0;
  }

  .segment-card__content {
    margin-top: 0;
  }
}

.segment-card__content {
  margin-top: auto;
  max-width: 470px;
}

.segment-card--featured .segment-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 0;
}

.segment-card__title-accent {
  color: #ff3b35;
}

.segment-card--featured .segment-card__desc {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  max-width: 470px;
}

.segment-card {
  grid-column: span 1;
  min-height: 150px;
  border-radius: 12px;
  padding: 28px;
}

@media (min-width: 1024px) {
  .segment-card--ecommerce {
    grid-column: span 2;
    min-height: 220px;
  }

  .segment-card--row2 {
    grid-column: span 2;
  }

  .segment-card--row3 {
    grid-column: span 3;
  }
}

.segmentos .glass-card {
  background: var(--color-white);
  border: 1px solid #e6eaf0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
  transition: background-color 0.3s ease-out, border-color 0.3s ease-out, box-shadow 0.3s ease-out, transform 0.3s ease-out;
}

.segmentos .glass-card__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 24px;
}

.segmentos .glass-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.segmentos .glass-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: #151820;
  margin-top: 0;
}

.segmentos .glass-card__desc {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .segmentos .glass-card.segment-card:hover {
    background: #0a0d36;
    border-color: transparent;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
  }

  .segmentos .glass-card.segment-card:hover .glass-card__icon img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(102%) contrast(101%);
    transition: none;
  }

  .segmentos .glass-card.segment-card:hover .glass-card__title {
    color: #ff4d30;
    transition: none;
  }

  .segmentos .glass-card.segment-card:hover .glass-card__desc {
    color: #e5e7eb;
    transition: none;
  }
}

/* Faixa azul — segmentos */
.segmentos-pills {
  background: var(--color-navy);
}

.segmentos-pills__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 4vw, 56px);
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding: 20px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.segmentos-pills__inner::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .segmentos-pills__inner {
    padding-inline: 24px;
  }
}

@media (min-width: 1024px) {
  .segmentos-pills__inner {
    max-width: none;
    justify-content: space-evenly;
    gap: 0;
    padding-inline: 48px;
    overflow-x: visible;
  }
}

.segmentos-pills__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-light);
  white-space: nowrap;
}

.segmentos-pills__icon {
  display: block;
  width: auto;
  height: 15px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Equipe */
.equipe {
  position: relative;
  padding: 96px 16px;
  background: #e7e3e3;
}

@media (min-width: 768px) {
  .equipe {
    padding-inline: 24px;
  }
}

@media (min-width: 1024px) {
  .equipe {
    padding: 96px 64px;
  }
}

.equipe__inner {
  max-width: 1440px;
  margin-inline: auto;
}

.equipe__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}

@media (min-width: 1024px) {
  .equipe__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
}

.equipe__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--color-navy);
}

@media (min-width: 1024px) {
  .equipe__title {
    font-size: 32px;
  }
}

.equipe__label {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 4px;
}

@media (min-width: 1024px) {
  .equipe__label {
    display: flex;
  }
}

.equipe__label-text {
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1f2937;
}

.equipe__label-line {
  display: block;
  margin-top: 12px;
  width: 72px;
  height: 1px;
  background: var(--color-navy);
}

.equipe__carousel-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .equipe__carousel-wrap {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    column-gap: 32px;
    align-items: start;
  }
}

.equipe__carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  order: 1;
  min-width: 0;
  padding-block: 16px;
  margin-block: -16px;
}

@media (min-width: 1024px) {
  .equipe__carousel {
    grid-column: 2;
    grid-row: 1;
    order: unset;
  }
}

.equipe__carousel::-webkit-scrollbar {
  display: none;
}

.equipe__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-navy);
  background: transparent;
  color: var(--color-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease-out, color 0.3s ease-out, border-color 0.3s ease-out;
}

.equipe__nav svg {
  width: 24px;
  height: 24px;
}

.equipe__nav--prev {
  order: 2;
  align-self: center;
}

.equipe__nav--next {
  order: 3;
  align-self: center;
}

@media (max-width: 1023px) {
  .equipe__carousel-wrap {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 32px;
    column-gap: 16px;
  }

  .equipe__carousel {
    grid-column: 1 / -1;
    grid-row: 1;
    order: unset;
  }

  .equipe__nav--prev {
    grid-column: 2;
    grid-row: 2;
    order: unset;
  }

  .equipe__nav--next {
    grid-column: 3;
    grid-row: 2;
    order: unset;
  }
}

@media (min-width: 1024px) {
  .equipe__nav {
    position: static;
    transform: none;
    align-self: start;
    margin-top: 152px;
  }

  .equipe__nav--prev {
    grid-column: 1;
    grid-row: 1;
    order: unset;
    justify-self: center;
  }

  .equipe__nav--next {
    grid-column: 3;
    grid-row: 1;
    order: unset;
    justify-self: center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .equipe__nav:hover {
    background: var(--color-navy);
    color: var(--color-white);
  }
}

.equipe__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.equipe .team-card__name {
  font-weight: 700;
  color: var(--color-navy);
}

.equipe .team-card__role {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1f2937;
}

.equipe .team-card__bio {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #111827;
}

.equipe .team-card__languages {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #111827;
}

.equipe .team-card__languages-label {
  color: var(--color-orange);
}

@media (min-width: 1024px) {
  .equipe .team-card__bio {
    max-width: 341px;
  }
}

.equipe .team-card__toggle {
  font-weight: 800;
  color: var(--color-navy);
}

.equipe .team-card__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  transition: box-shadow 0.3s ease-out;
}

.equipe .team-card {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .equipe .team-card:hover {
    transform: translateY(-8px);
    z-index: 5;
  }

  .equipe .team-card:hover .team-card__photo {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  }
}

/* Insights */
.insights {
  background: #f5f6f8;
  padding: 96px clamp(24px, 5vw, 64px);
  overflow: visible;
}

.insights__inner {
  max-width: 1320px;
  margin-inline: auto;
}

.insights__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.insights__title {
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--color-navy);
}

.insights__divider {
  margin-top: 32px;
  height: 1px;
  width: 100%;
  background: #d9dde3;
}

.insights__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28px;
  color: var(--color-navy);
}

.insights__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
  align-items: stretch;
  padding-block: 12px;
  margin-block: -12px;
}

.insights .article-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.insights .article-card picture {
  display: block;
  width: 100%;
}

.insights .article-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.5;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--color-navy) 0%, #4259f0 100%);
  content-visibility: auto;
}

.insights .article-card__meta {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a5f6b;
}

.insights .article-card__title {
  margin-top: 20px;
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
}

.insights .article-card__excerpt {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.625;
  color: #3f4652;
}

.insights .article-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.insights .article-card__avatar {
  width: 51px;
  height: 51px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e6e8ea;
}

.insights .article-card__author-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: #000000;
}

@media (max-width: 1023px) {
  .insights {
    padding-block: 80px;
  }

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

@media (max-width: 767px) {
  .insights {
    padding: 64px 24px;
  }

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

  .insights__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 40px;
  }
}

/* FAQ */
.faq {
  padding: var(--section-padding) var(--content-padding);
  background: var(--color-white);
}

.faq__inner {
  max-width: 768px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.faq__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CTA Final */
.cta-final {
  position: relative;
  padding: 96px var(--content-padding);
  background: var(--color-navy);
  background-image:
    radial-gradient(circle at left center, rgba(38, 63, 180, 0.45), transparent 34%),
    radial-gradient(circle at right center, rgba(31, 55, 160, 0.35), transparent 34%);
  overflow: hidden;
  isolation: isolate;
}

.cta-final__blur-left {
  position: absolute;
  width: 416px;
  height: 413px;
  left: -80px;
  bottom: -80px;
  background: #4259f0;
  opacity: 0.4;
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
}

.cta-final__blur-right {
  position: absolute;
  width: 481px;
  height: 448px;
  right: -28px;
  top: -88px;
  background: #4259f0;
  opacity: 0.2;
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  min-height: 460px;
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-final__title {
  max-width: 900px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.96px;
  color: var(--color-white);
}

.cta-final__title-line {
  display: block;
  white-space: nowrap;
}

.cta-final__title-accent {
  color: #ff3833;
}

.cta-final__subtitle {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.cta-final .btn--cta-red,
.cta-final .btn--cta-white {
  min-width: 240px;
  height: 56px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border-radius: 8px;
}

.cta-final .btn--cta-red {
  background: #ff3833;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .cta-final .btn--cta-red:hover {
    background: #e82f2b;
  }

  .cta-final .btn--cta-white:hover {
    background: #f3f4f6;
  }
}

.cta-final .btn--cta-white {
  color: var(--color-navy);
  box-shadow: none;
}

/* Formulário CTA */
.cta-form {
  background: #f5f6f8;
  padding: 80px clamp(24px, 5vw, 64px);
  overflow: visible;
}

.cta-form__inner {
  max-width: 1040px;
  margin-inline: auto;
}

.cta-form__form {
  max-width: 980px;
  margin-inline: auto;
}

.cta-form__fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cta-form__fields .form-group {
  margin-bottom: 0;
}

.cta-form .form-input {
  height: 58px;
  padding: 0 48px;
  border: 1px solid #aeb7c2;
  border-radius: 6px;
  font-size: 15px;
  color: #111827;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.cta-form .form-input::placeholder {
  color: #8b8f97;
}

.cta-form .form-input:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 2px rgba(0, 10, 74, 0.15);
}

.cta-form__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.cta-form .form-checkbox {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

.cta-form .form-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #aeb7c2;
}

.cta-form__submit {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 50px;
  padding: 0 32px;
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 800;
  border-radius: 8px;
  transition: background-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta-form__submit:hover {
    background: #020617;
  }
}

@media (max-width: 1023px) {
  .cta-form__checkboxes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .cta-final__title-line {
    white-space: normal;
  }

  .cta-final {
    padding: 64px 24px;
  }

  .cta-final__content {
    min-height: auto;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cta-final .btn--cta-red,
  .cta-final .btn--cta-white {
    width: 100%;
    max-width: 320px;
  }

  .cta-form {
    padding: 64px 24px;
  }

  .cta-form .form-input {
    padding-inline: 24px;
  }
}

/* Contato */
.contato {
  background: var(--color-white);
  padding: 96px clamp(24px, 5vw, 64px);
}

.contato__inner {
  max-width: 1320px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato__title {
  max-width: 520px;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-navy);
}

.contato__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.contato__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contato__item-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(82%) saturate(4200%) hue-rotate(220deg) brightness(95%) contrast(110%);
}

.contato__item-label {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
}

.contato__item-value {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.625;
  color: #3f4652;
}

.contato__item-value a {
  color: inherit;
}

.contato__item-value a:hover {
  color: var(--color-navy);
}

.contato__map {
  position: relative;
  min-height: 320px;
  height: 330px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8eaed;
}

.contato__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

@media (max-width: 1023px) {
  .contato {
    padding-block: 80px;
  }

  .contato__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contato__map {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .contato {
    padding: 64px 24px;
  }
}
