@charset "UTF-8";
:root {
  --navy: #07345d;
  --navy-deep: #031f35;
  --navy-soft: #0b416f;
  --cyan: #69d2f0;
  --ink: #111820;
  --muted: #5f6972;
  --surface: #fff;
  --surface-soft: #f3f4f5;
  --footer: #26282d;
  --container: 1180px;
  --container-narrow: 780px;
  --header-height: 90px;
  --section-space: clamp(3.75rem, 7vw, 6rem);
  --shadow: 0 24px 70px rgb(2 25 46 / 18%);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, p {
  margin-top: 0;
}

body {
  margin: 0;
}

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

img {
  width: 100%;
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
}

body {
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1, h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  h1, h2 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  h1, h2 {
    font-size: 50px;
  }
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  color: var(--muted);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 40px, var(--container-narrow));
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}
.button:hover {
  transform: translateY(-2px);
}
.button--light {
  color: var(--navy-deep);
  background: #fff;
}
.button--outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}
.button--navy {
  color: #fff;
  background: var(--navy);
}
.button--cyan {
  color: var(--navy-deep);
  background: var(--cyan);
}

.site-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  z-index: 1000;
  padding: 15px 40px;
}
.site-header a, .site-header p, .site-header ul, .site-header li {
  font-size: 17px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .site-header {
    padding: 15px 20px;
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.logo-img {
  max-height: 45px;
  width: auto;
}

.action-nav-list {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.action-nav-list li a {
  background: none;
  border: none;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  transition: color 0.3s;
}
.action-nav-list li a:hover {
  color: #3b82f6;
}
.action-nav-list li a svg {
  width: 20px;
  height: 20px;
}

/* =========================================
   DESKTOP STYLES (> 1024px)
========================================= */
@media (min-width: 1025px) {
  .mobile-controls {
    display: none;
  }
  .header-nav-overlay {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
  }
  .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-menu > li {
    position: static;
  }
  .nav-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s;
  }
  .nav-menu > li > a:hover {
    color: #3b82f6;
  }
  .nav-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    margin-top: 2px;
    border-top: 5px solid currentColor;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform 0.3s ease;
  }
  .nav-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
  }
  .nav-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0d2346;
    padding: 60px 10%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  .nav-menu > li > .sub-menu > li {
    list-style: none;
  }
  .nav-menu > li > .sub-menu > li > a {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    transition: color 0.2s;
  }
  .nav-menu > li > .sub-menu > li > a::after {
    content: "›";
    font-size: 24px;
    line-height: 0;
    color: #3b82f6;
  }
  .nav-menu > li > .sub-menu > li > a:hover {
    color: #3b82f6;
  }
  .nav-menu > li > .sub-menu > li .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .nav-menu > li > .sub-menu > li .sub-menu li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
  }
  .nav-menu > li > .sub-menu > li .sub-menu li a::after {
    display: none;
  }
  .nav-menu > li > .sub-menu > li .sub-menu li a:hover {
    color: #ffffff;
  }
  .nav-menu > li > .sub-menu > li.mega-intro > a {
    border-bottom: none;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    padding-bottom: 0;
    pointer-events: none;
  }
  .nav-menu > li > .sub-menu > li.mega-intro > a::after {
    display: none;
  }
  .nav-menu > li > .sub-menu > li.mega-intro .sub-menu li a {
    color: #3b82f6;
    font-weight: 400;
    font-size: 17px;
    margin-top: 20px;
  }
  .nav-menu > li > .sub-menu > li.mega-intro .sub-menu li a::after {
    content: "›";
    display: inline-block;
    margin-left: 8px;
    font-size: 18px;
  }
  .nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .lang-switcher-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
  }
  .lang-switcher-inline .lang-links {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .lang-switcher-inline .lang-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 17px;
    font-weight: 400;
  }
  .lang-switcher-inline .lang-item:hover {
    color: #ffffff;
  }
  .lang-switcher-inline .lang-item.active-lang {
    color: #3b82f6;
    font-weight: 400;
  }
  .lang-switcher-inline .lang-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 17px;
    user-select: none;
  }
}
/* =========================================
   MOBILE STYLES (<= 1024px)
========================================= */
@media (max-width: 1024px) {
  .mobile-controls {
    display: flex;
    align-items: center;
  }
  .mobile-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
  }
  .mobile-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    transition: 0.3s ease;
  }
  .mobile-toggle .bar.bar-1 {
    top: 2px;
  }
  .mobile-toggle .bar.bar-2 {
    top: 11px;
  }
  .mobile-toggle .bar.bar-3 {
    top: 20px;
  }
  .mobile-toggle.is-active .bar-1 {
    top: 11px;
    transform: rotate(45deg);
  }
  .mobile-toggle.is-active .bar-2 {
    opacity: 0;
  }
  .mobile-toggle.is-active .bar-3 {
    top: 11px;
    transform: rotate(-45deg);
  }
  .header-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a24;
    padding: 80px 20px 40px;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .header-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header-nav-overlay .desktop-actions {
    display: none;
  }
  .nav-menu {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
  }
  .nav-menu .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    border-top: 5px solid currentColor;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
  }
  .nav-menu .sub-menu {
    padding-left: 15px;
    padding-bottom: 15px;
    list-style: none;
  }
  .nav-menu .sub-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    font-size: 17px;
    font-weight: 400;
  }
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content > *:last-child {
  margin-bottom: 0;
}
.entry-content ul, .entry-content ol {
  padding-left: 1.3rem;
}
.entry-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.site-footer {
  background-color: #222327;
  color: #ffffff;
  padding-top: 80px;
}
.site-footer .container-footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .site-footer .container-footer {
    padding: 0 20px;
  }
}
.site-footer .footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .site-footer .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer .footer__main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.site-footer .footer__brand {
  max-width: 450px;
}
.site-footer .footer__brand .footer__logo {
  display: inline-block;
  margin-bottom: 25px;
}
.site-footer .footer__brand .footer__logo img {
  max-width: 250px;
  height: auto;
  display: block;
}
.site-footer .footer__brand p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}
.site-footer .footer__links h3,
.site-footer .footer__contact h3 {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 30px;
}
.site-footer .footer__links ul,
.site-footer .footer__contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.site-footer .footer__links ul li,
.site-footer .footer__contact ul li {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.5;
}
.site-footer .footer__links ul li a,
.site-footer .footer__contact ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.site-footer .footer__links ul li a:hover,
.site-footer .footer__contact ul li a:hover {
  opacity: 0.7;
}
.site-footer .footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.site-footer .footer__bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero--home {
  position: relative;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position);
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: 150px;
}
.hero--home .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%), linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}
.hero--home .container.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero--home .eyebrow {
  color: #78DFFF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.hero--home h1 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 900px;
}
.hero--home p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 750px;
  border-left: 2px solid #78DFFF;
  padding-left: 15px;
}
.hero--home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero--home .hero__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero--home .hero__actions .button--light {
  background-color: #ffffff;
  color: #1a1a24;
}
.hero--home .hero__actions .button--light:hover {
  background-color: #78DFFF;
}
.hero--home .hero__actions .button--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.hero--home .hero__actions .button--outline:hover {
  background-color: #ffffff;
  color: #1a1a24;
}
.hero--home {
  /* =========================================
     RESPONSIVO - MOBILE (<= 1024px)
  ========================================= */
}
@media (max-width: 1024px) {
  .hero--home {
    min-height: 85vh;
    padding-bottom: 50px;
  }
  .hero--home .container.hero__content {
    padding: 0 20px;
  }
  .hero--home h1 {
    margin-bottom: 20px;
  }
  .hero--home p {
    margin-bottom: 30px;
  }
  .hero--home .hero__actions {
    flex-direction: column;
    gap: 15px;
  }
  .hero--home .hero__actions .button {
    width: 100%;
    text-align: center;
  }
}

.solutions {
  background-color: #0d2346;
  padding: 80px 0;
  overflow: hidden;
}
.solutions .solutions-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .solutions .solutions-container {
    padding: 0 20px;
  }
}
.solutions .solutions__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}
.solutions .solutions__header h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  max-width: 600px;
}
.solutions .solutions-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.solutions .solutions-track::-webkit-scrollbar {
  display: none;
}
.solutions .solutions-track {
  /* MAGIA DO ALINHAMENTO SEM CORTES:
     Ocupa 100% da tela de largura real.
     O calc((100vw - 1440px) / 2) encontra a margem vazia (auto).
     Somamos os 40px de padding do container.
     A função max() garante que em telas pequenas a margem seja sempre no mínimo 40px/20px. */
  width: 100%;
  padding-left: max(40px, (100vw - 1440px) / 2 + 40px);
  padding-right: max(40px, (100vw - 1440px) / 2 + 40px);
}
@media (max-width: 1024px) {
  .solutions .solutions-track {
    padding-left: max(20px, (100vw - 1440px) / 2 + 20px);
    padding-right: max(20px, (100vw - 1440px) / 2 + 20px);
  }
}
.solutions .solutions-track {
  cursor: grab;
}
.solutions .solutions-track:active {
  cursor: grabbing;
}
.solutions .solution-card {
  flex: 0 0 350px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  user-select: none;
}
@media (max-width: 768px) {
  .solutions .solution-card {
    flex: 0 0 280px;
  }
}
.solutions .solution-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
}
.solutions .solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.solutions .solution-card h3 {
  color: #78DFFF;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: color 0.3s;
}
.solutions .solution-card p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.solutions .solution-card:hover .solution-card__image img {
  transform: scale(1.05);
}

/* =========================================
   1. LAYOUT BANNER (Caixa sobre Imagem)
========================================= */
.cta-banner {
  position: relative;
  background-image: var(--cta-image);
  background-size: cover;
  background-position: var(--cta-position);
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}
.cta-banner .cta-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .cta-banner .cta-container {
    padding: 0 20px;
  }
}
.cta-banner .cta-card {
  background-color: #78DFFF;
  padding: 60px;
  max-width: 600px;
  width: 100%;
  color: #1a1a24;
}
.cta-banner .cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #1a1a24;
}
.cta-banner .cta-card p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}
.cta-banner .cta-card .button {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .cta-banner .cta-card {
    padding: 40px 30px;
  }
}
.cta-banner.cta-banner--dark .cta-card {
  background-color: #0d2346;
  color: #ffffff;
}
.cta-banner.cta-banner--dark .cta-card h2 {
  color: #ffffff;
}
.cta-banner.cta-banner--dark .cta-card p {
  color: #ffffff;
}

/* =========================================
   2. LAYOUT SPLIT (Metade texto, Metade Img)
========================================= */
.split-cta {
  display: flex;
  flex-wrap: wrap;
  background-color: #0d2346;
  color: #ffffff;
}
.split-cta__copy {
  flex: 1 1 50%;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .split-cta__copy {
    flex: 1 1 100%;
    padding: 60px 40px;
  }
}
@media (max-width: 768px) {
  .split-cta__copy {
    padding: 60px 20px;
  }
}
.split-cta__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}
.split-cta__copy p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 500px;
}
.split-cta__image {
  flex: 1 1 50%;
  background-image: var(--split-image);
  background-size: cover;
  background-position: var(--split-position);
  min-height: 400px;
}
@media (max-width: 1024px) {
  .split-cta__image {
    flex: 1 1 100%;
  }
}

/* =========================================
   3. BOTÕES (Estilos Globais para o Bloco)
========================================= */
.button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button--navy {
  background-color: #78DFFF;
  color: #1a1a24;
  border: 2px solid #78DFFF;
}
.button--navy:hover {
  background-color: transparent;
  color: #78DFFF;
}
.button--outline-dark {
  background-color: transparent;
  color: #1a1a24;
  border: 2px solid #1a1a24;
}
.button--outline-dark:hover {
  background-color: #1a1a24;
  color: #ffffff;
}

.partners {
  background-color: #ffffff;
  padding: 100px 0;
}
.partners .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .partners .container {
    padding: 0 20px;
  }
}
.partners .section-copy {
  text-align: center;
  margin-bottom: 60px;
}
.partners .section-copy h2 {
  color: #1a1a24;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
.partners .section-copy p {
  color: rgb(22.7767235927%, 22.7767235927%, 31.5370018975%);
  font-size: 17px;
  line-height: 1.6;
  /* Restringe a largura do texto para imitar o design 
     e impedi-lo de esticar demasiado em ecrãs grandes */
  max-width: 700px;
  margin: 0 auto;
}
.partners .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px 80px;
}
@media (max-width: 768px) {
  .partners .logo-grid {
    gap: 40px;
  }
}
.partners .partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.partners .partner-logo:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}
.partners .partner-logo span {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a24;
  text-transform: uppercase;
}
.partners .partner-logo img {
  max-width: 220px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .partners .partner-logo img {
    max-width: 160px;
    max-height: 80px;
  }
}

.page-hero {
  padding: 150px 0 85px;
  color: #fff;
  background: var(--navy);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(50px, 8vw, 130px);
}

.content-section {
  padding: 74px 0;
  overflow-x: clip;
}
.content-section--soft {
  background: var(--surface-soft);
}
.content-section__grid {
  position: relative;
}
.content-section--with-image .content-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 36px;
}
.content-section__copy {
  position: relative;
  z-index: 2;
}
.content-section__copy h2 {
  margin: 0 0 28px;
}
.content-section__image {
  position: relative;
  overflow: hidden;
}
.content-section__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.content-section__image--bottom {
  /*
   * Calcula o espaço existente entre o lado direito
   * do container e o limite direito do viewport.
   */
  --right-breakout: max(0px, calc((100vw - 100%) / 2));
  width: calc(100% + var(--right-breakout));
  max-width: none;
  margin-top: 42px;
  margin-right: calc(var(--right-breakout) * -1);
  overflow: hidden;
}
.content-section__image--bottom img {
  width: 100%;
  max-width: none;
  min-height: 350px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .content-section {
    padding: 64px 0;
  }
  .content-section--with-image .content-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-section__image--bottom {
    margin-top: 36px;
  }
  .content-section__image--bottom img {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .content-section {
    padding: 48px 0;
  }
  .content-section__image--bottom {
    margin-top: 30px;
  }
  .content-section__image--bottom img {
    min-height: 230px;
  }
}

.accordion {
  border-top: 1px solid #aeb6bc;
}
.accordion__item {
  border-bottom: 1px solid #aeb6bc;
}
.accordion__trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 18px 0;
  border: 0;
  background: transparent;
}
.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}
.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.people-section {
  padding: 76px 0 84px;
  background: var(--cyan);
}
.people-section .people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.careers {
  padding: 70px 0 95px;
}
.careers .career-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.careers .career-card {
  display: grid;
  min-height: 340px;
  align-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  background: #f2f2f2;
  border-radius: 18px;
}

.contact-section {
  padding: 72px 0 105px;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
}
.contact-section .contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/*# sourceMappingURL=style.css.map */
