@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700 800;
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
}

:root {
  --navy-950: #061a25;
  --navy-900: #0d2e3f;
  --navy-800: #12384b;
  --navy-700: #1b4a5f;
  --teal-600: #148d92;
  --teal-500: #22a8ae;
  --teal-100: #dff5f5;
  --amber-500: #f4b53f;
  --paper: #f7f9fa;
  --white: #ffffff;
  --ink: #102b38;
  --muted: #52666c;
  --line: #dce5e8;
  --shadow-sm: 0 8px 24px rgba(6, 26, 37, 0.08);
  --shadow-md: 0 20px 50px rgba(6, 26, 37, 0.14);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.55rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

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

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 4px;
}

.skip-link {
  background: var(--amber-500);
  color: var(--navy-950);
  font-weight: 800;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  transition: top 0.2s ease;
  z-index: 9999;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding-block: clamp(72px, 9vw, 120px);
}

.section--compact {
  padding-block: clamp(48px, 6vw, 78px);
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy-950);
  color: #d8e4e8;
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--teal-soft {
  background: var(--teal-100);
}

.section-head {
  margin-bottom: clamp(32px, 5vw, 58px);
  max-width: 760px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.section--navy .section-head p {
  color: #a9bdc5;
}

.eyebrow {
  color: var(--teal-600);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #6ee1e1;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.text-teal {
  color: var(--teal-500);
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.91rem;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.035em;
  min-height: 52px;
  padding: 13px 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--teal-500);
  color: var(--navy-950);
}

.button--primary:hover {
  background: #45c1c5;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button--secondary:hover {
  background: var(--white);
  color: var(--navy-950);
}

.button--outline {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.button--outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.button--small {
  font-size: 0.78rem;
  min-height: 44px;
  padding: 10px 16px;
}

.site-header {
  background: rgba(6, 26, 37, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 1000;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  min-height: 78px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.brand img {
  height: 52px;
  object-fit: contain;
  width: 108px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.site-nav > a:not(.button) {
  border-radius: 6px;
  color: #dbe7ea;
  font-size: 0.89rem;
  font-weight: 700;
  padding: 12px 11px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  background: rgba(34, 168, 174, 0.14);
  color: #70e0e2;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 46px;
  justify-content: center;
  margin-left: auto;
  width: 46px;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 22px;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  background:
    linear-gradient(112deg, rgba(6, 26, 37, 0.98) 0%, rgba(13, 46, 63, 0.96) 52%, rgba(9, 62, 76, 0.86) 100%),
    url("../images/gws/treino3.jpg") center / cover no-repeat;
  color: var(--white);
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.hero::before,
.hero::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero::before {
  background: rgba(34, 168, 174, 0.16);
  height: 140%;
  right: 9%;
  top: -18%;
  transform: rotate(18deg);
  width: 24%;
}

.hero::after {
  border-bottom: 2px solid rgba(34, 168, 174, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  bottom: 36px;
  height: 10px;
  left: 24px;
  right: 24px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: 690px;
  padding-block: 78px 96px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-copy > p {
  color: #d8e4e8;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  margin-bottom: 30px;
  max-width: 690px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.hero-trust span {
  align-items: center;
  color: #c7d7dc;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 7px;
}

.hero-trust span::before {
  color: var(--teal-500);
  content: "✓";
  font-size: 1.05rem;
  font-weight: 800;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.hero-panel img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero-panel__caption {
  padding: 22px 24px 24px;
}

.hero-panel__caption strong {
  color: var(--navy-900);
  display: block;
  font-size: 1.03rem;
  margin-bottom: 4px;
}

.hero-panel__caption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero {
  background:
    linear-gradient(118deg, rgba(6, 26, 37, 0.99), rgba(13, 46, 63, 0.94)),
    var(--page-hero-image, none) center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(78px, 10vw, 132px);
  position: relative;
}

.page-hero::after {
  background: rgba(34, 168, 174, 0.15);
  content: "";
  height: 180%;
  position: absolute;
  right: 7%;
  top: -40%;
  transform: rotate(18deg);
  width: 22%;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.institutional-video-grid {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.institutional-video-copy {
  max-width: 520px;
}

.institutional-video-copy h2 {
  margin-bottom: 18px;
}

.institutional-video-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.institutional-video-frame {
  aspect-ratio: 16 / 9;
  background: var(--navy-950);
  border: 1px solid rgba(34, 168, 174, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.institutional-video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  margin-bottom: 22px;
  max-width: 900px;
}

.page-hero p {
  color: #d3e0e4;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  margin-bottom: 30px;
  max-width: 760px;
}

.gateway-grid,
.service-grid,
.modality-grid,
.process-grid,
.value-grid,
.course-grid,
.contact-grid,
.photo-grid {
  display: grid;
  gap: 22px;
}

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

.gateway-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 52px);
  position: relative;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.gateway-card:hover {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.gateway-card::after {
  bottom: -70px;
  color: rgba(34, 168, 174, 0.08);
  content: attr(data-mark);
  font-size: 14rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: -16px;
}

.gateway-card h3 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 18px;
  max-width: 430px;
  position: relative;
  z-index: 1;
}

.gateway-card p {
  color: var(--muted);
  max-width: 510px;
  position: relative;
  z-index: 1;
}

.gateway-card__list {
  color: var(--navy-700);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 8px;
  margin-block: 8px 28px;
  padding: 0;
  position: relative;
  z-index: 1;
}

.gateway-card__list span {
  background: var(--teal-100);
  border-radius: 999px;
  padding: 6px 10px;
}

.gateway-card__link {
  align-items: center;
  color: var(--teal-600);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 8px;
  margin-top: auto;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

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

.service-card,
.value-card,
.process-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.service-card {
  box-shadow: 0 12px 30px rgba(6, 26, 37, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 315px;
}

.service-card__code {
  align-items: center;
  background: var(--navy-900);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  padding-inline: 13px;
  width: fit-content;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card ul {
  color: var(--navy-700);
  font-size: 0.85rem;
  margin: auto 0 0;
  padding-left: 19px;
}

.service-card li + li {
  margin-top: 5px;
}

.service-card__note {
  border-top: 1px solid var(--line);
  color: var(--teal-600);
  font-size: 0.79rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 17px;
  text-transform: uppercase;
}

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

.modality-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.modality-card::before {
  background: var(--teal-500);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.modality-card__number {
  color: var(--teal-500);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 22px;
}

.modality-card p {
  color: var(--muted);
}

.modality-card a {
  color: var(--teal-600);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.integration {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 88px);
  grid-template-columns: 0.8fr 1.2fr;
}

.integration-copy h2 {
  margin-bottom: 20px;
}

.integration-copy p {
  color: #aec1c8;
}

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

.flow-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  min-height: 144px;
  padding: 20px;
  position: relative;
}

.flow-card:not(:last-child)::after {
  color: var(--teal-500);
  content: "→";
  font-size: 1.4rem;
  font-weight: 800;
  position: absolute;
  right: -19px;
  top: 52px;
  z-index: 2;
}

.flow-card strong {
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.flow-card span {
  color: #9eb3bb;
  font-size: 0.81rem;
}

.flow-secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
}

.flow-secondary span {
  background: rgba(34, 168, 174, 0.12);
  border: 1px solid rgba(34, 168, 174, 0.28);
  border-radius: 999px;
  color: #bfe7e8;
  font-size: 0.79rem;
  font-weight: 700;
  padding: 8px 12px;
}

.process-grid {
  counter-reset: process;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  counter-increment: process;
  min-height: 250px;
  position: relative;
}

.process-card::before {
  align-items: center;
  background: var(--teal-100);
  border-radius: 50%;
  color: var(--teal-600);
  content: "0" counter(process);
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  margin-bottom: 24px;
  width: 46px;
}

.process-card p,
.value-card p,
.contact-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.value-card h3 {
  color: var(--white);
}

.value-card p {
  color: #aebfc5;
}

.trust-split {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 88px);
  grid-template-columns: 0.92fr 1.08fr;
}

.trust-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.trust-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.trust-photo::after {
  border: 2px solid var(--teal-500);
  border-radius: var(--radius-lg);
  content: "";
  inset: 14px -14px -14px 14px;
  pointer-events: none;
  position: absolute;
}

.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 26px 0 32px;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  gap: 11px;
}

.check-list li::before {
  align-items: center;
  background: var(--teal-100);
  border-radius: 50%;
  color: var(--teal-600);
  content: "✓";
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 0.78rem;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  margin-top: 2px;
}

.logo-carousel-shell {
  position: relative;
}

.logo-carousel {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
  overflow-x: auto;
  padding-block: 14px 18px;
  scrollbar-width: none;
}

.logo-carousel::-webkit-scrollbar {
  display: none;
}

.logo-carousel.is-ready {
  overflow: hidden;
}

.logo-track,
.logo-group {
  align-items: center;
  display: flex;
  gap: 18px;
}

.logo-track {
  width: max-content;
}

.logo-carousel.is-ready .logo-track {
  animation: logo-marquee 28s linear infinite;
}

.logo-carousel.is-paused .logo-track,
.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.client-logo {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex: 0 0 190px;
  height: 150px;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
  border-color: rgba(34, 168, 174, 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.client-logo img {
  display: block;
  filter: none;
  height: auto;
  margin: 0;
  max-height: 118px;
  max-width: 170px;
  object-fit: contain;
  opacity: 1;
}

.client-logo--siqlim img {
  transform: scale(1.55);
}

.client-logo--gvden img {
  transform: scale(1.45);
}

.client-logo--general img {
  transform: scale(1.4);
}

.client-logo--evsa img {
  transform: scale(1.2);
}

.client-logo--arcos img {
  transform: scale(1.3);
}

.client-logo--cronos img {
  transform: scale(1.25);
}

.client-logo--lia img {
  max-height: none;
  max-width: none;
  transform: translateX(19px);
  width: 210px;
}

.faq-list {
  border-top: 1px solid var(--line);
  margin-inline: auto;
  max-width: 900px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 22px 42px 22px 0;
  position: relative;
}

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

.faq-item summary::after {
  color: var(--teal-600);
  content: "+";
  font-size: 1.45rem;
  position: absolute;
  right: 8px;
  top: 17px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--muted);
  margin-bottom: 22px;
  padding-right: 48px;
}

.cta-panel {
  align-items: center;
  background:
    linear-gradient(112deg, rgba(13, 46, 63, 0.98), rgba(20, 141, 146, 0.86)),
    url("../images/gws/treino6.jpg") center / cover no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  color: var(--white);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px);
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.85rem);
  margin-bottom: 12px;
}

.cta-panel p {
  color: #d8e9eb;
  margin-bottom: 0;
  max-width: 700px;
}

.filter-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-700);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

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

.course-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(6, 26, 37, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.course-card[hidden] {
  display: none;
}

.course-card__media {
  aspect-ratio: 16 / 9;
  background: #dce5e8;
  overflow: hidden;
}

.course-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.course-card:hover .course-card__media img {
  transform: scale(1.03);
}

.course-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.course-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 13px;
}

.tag {
  background: var(--teal-100);
  border-radius: 999px;
  color: var(--teal-600);
  font-size: 0.69rem;
  font-weight: 800;
  padding: 5px 9px;
  text-transform: uppercase;
}

.tag--amber {
  background: #fff0d0;
  color: #9b6811;
}

.course-card h3 {
  font-size: 1.18rem;
  margin-bottom: 11px;
}

.course-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.course-card__link {
  border-top: 1px solid var(--line);
  color: var(--teal-600);
  font-size: 0.79rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.compliance-demo {
  background: #0b3a4e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 55px rgba(6, 26, 37, 0.2);
  color: #dcebed;
  overflow: hidden;
  padding: 24px;
}

.compliance-demo__topbar {
  align-items: center;
  display: flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}

.compliance-demo__topbar strong {
  color: #76e5e5;
  margin-left: auto;
  text-transform: uppercase;
}

.compliance-demo__lights {
  display: flex;
  gap: 5px;
}

.compliance-demo__lights i {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.compliance-summary {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.compliance-summary__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: grid;
  gap: 1px;
  padding: 16px 18px;
}

.compliance-summary__card strong {
  font-size: 1.75rem;
  line-height: 1;
}

.compliance-summary__card span {
  font-size: 0.76rem;
  font-weight: 700;
}

.compliance-summary__card--ok strong {
  color: #36d890;
}

.compliance-summary__card--warning strong {
  color: #ffd24d;
}

.compliance-summary__card--danger strong {
  color: #ff6969;
}

.compliance-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.compliance-filter {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dcebed;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 7px;
  padding: 8px 13px;
}

.compliance-filter:hover,
.compliance-filter.is-active {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: var(--navy-950);
}

.status-dot {
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.status-dot--ok {
  background: #36d890;
}

.status-dot--warning {
  background: #ffd24d;
}

.status-dot--danger {
  background: #ff6969;
}

.compliance-table {
  display: grid;
  gap: 8px;
}

.compliance-table__head,
.compliance-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr 1.3fr 0.7fr 0.65fr;
}

.compliance-table__head {
  color: #86a8b4;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0 14px 3px;
  text-transform: uppercase;
}

.compliance-row {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  font-size: 0.76rem;
  padding: 12px 14px;
}

.compliance-row[hidden] {
  display: none;
}

.compliance-row strong,
.compliance-row small {
  display: block;
}

.compliance-row strong {
  color: var(--white);
  line-height: 1.35;
}

.compliance-row small {
  color: #78b5c2;
  font-size: 0.62rem;
  margin-top: 3px;
}

.compliance-date {
  color: var(--white);
  font-weight: 700;
}

.status-pill {
  border-radius: 999px;
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 800;
  padding: 5px 9px;
  white-space: nowrap;
}

.status-pill--ok {
  background: rgba(54, 216, 144, 0.16);
  color: #54e5a5;
}

.status-pill--warning {
  background: rgba(255, 210, 77, 0.16);
  color: #ffda69;
}

.status-pill--danger {
  background: rgba(255, 105, 105, 0.16);
  color: #ff8585;
}

.compliance-demo__footer {
  align-items: center;
  color: #9fbac3;
  display: flex;
  font-size: 0.75rem;
  gap: 20px;
  justify-content: space-between;
  margin-top: 18px;
}

.compliance-demo__footer a {
  color: #76e5e5;
  font-weight: 800;
  text-decoration: none;
}

.evidence-delivery-section {
  background: #f1f3f5;
}

.evidence-delivery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-delivery-card {
  background: var(--white);
  border-left: 6px solid var(--teal-500);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}

.evidence-delivery-card > span {
  color: var(--teal-500);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
}

.evidence-delivery-card h3 {
  font-size: 1.08rem;
  margin-bottom: 9px;
}

.evidence-delivery-card p {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0;
}

.evidence-delivery-note {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 24px auto 0;
  max-width: 780px;
  text-align: center;
}

.notice {
  background: #fff7e7;
  border-left: 5px solid var(--amber-500);
  border-radius: 0 12px 12px 0;
  color: #574521;
  padding: 22px 24px;
}

.notice strong {
  color: var(--navy-900);
}

.legal-shell {
  margin-inline: auto;
  max-width: 920px;
}

.legal-intro {
  background: var(--teal-100);
  border-radius: var(--radius-md);
  color: var(--navy-800);
  margin-bottom: 28px;
  padding: 24px 28px;
}

.legal-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  padding: clamp(24px, 5vw, 40px);
}

.legal-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 16px;
}

.legal-section h3 {
  font-size: 1.05rem;
  margin-block: 24px 10px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--teal-600);
  font-weight: 700;
}

.legal-updated {
  color: #b6c8ce;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 24px;
}

.photo-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 230px);
}

.photo-grid img {
  border-radius: var(--radius-md);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-grid img:first-child {
  grid-row: 1 / 3;
}

.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-card h3 {
  margin-bottom: 9px;
}

.contact-card a {
  color: var(--teal-600);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 5vw, 44px);
}

.contact-form h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin-bottom: 10px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  background: var(--paper);
  border: 1px solid #cbd8dc;
  border-radius: 8px;
  color: var(--ink);
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(34, 168, 174, 0.14);
  outline: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.77rem;
  margin-top: 14px;
}

.site-footer {
  background: var(--navy-950);
  color: #aebfc5;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.15fr 0.75fr 0.75fr 1.4fr;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 58px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
  width: 118px;
}

.footer-brand p {
  font-size: 0.86rem;
  max-width: 300px;
}

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

.footer-social h2 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 13px;
  text-transform: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  align-items: center;
  border-radius: 10px;
  color: var(--white);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 46px;
}

.social-link:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.social-link svg {
  height: 25px;
  width: 25px;
}

.social-link--facebook {
  background: #1877f2;
}

.social-link--instagram {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 22%, #d62976 50%, #962fbf 74%, #4f5bd5 100%);
}

.social-link--linkedin {
  background: #0a66c2;
}

.social-link--youtube {
  background: #ff0000;
}

.social-link--whatsapp {
  background: #25d366;
}

.footer-col h2 {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col a {
  color: #aebfc5;
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: #6ee1e1;
}

.footer-contact {
  display: grid;
  font-style: normal;
  gap: 9px;
}

.footer-contact p {
  color: #aebfc5;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.footer-contact strong {
  color: var(--teal-500);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
  padding-block: 20px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 4px solid var(--white);
  border-radius: 50%;
  bottom: 20px;
  box-shadow: 0 10px 30px rgba(6, 26, 37, 0.28);
  color: var(--white);
  display: flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 20px;
  text-decoration: none;
  width: 62px;
  z-index: 900;
}

.whatsapp-float svg {
  height: 30px;
  width: 30px;
}

@media (max-width: 1020px) {
  .site-nav {
    background: var(--navy-950);
    bottom: 0;
    display: none;
    flex-direction: column;
    left: 0;
    overflow-y: auto;
    padding: 28px 24px;
    position: fixed;
    right: 0;
    top: 78px;
  }

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

  .site-nav > a,
  .site-nav .button {
    max-width: 520px;
    width: 100%;
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 1.05rem;
    padding: 16px 4px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-panel {
    display: none;
  }

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

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

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

  .integration {
    grid-template-columns: 1fr;
  }

  .trust-split {
    grid-template-columns: 1fr;
  }

  .institutional-video-grid {
    grid-template-columns: 1fr;
  }

  .institutional-video-copy {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .container {
    padding-inline: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-inner {
    padding-block: 62px 86px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .gateway-grid,
  .service-grid,
  .modality-grid,
  .course-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gateway-card {
    min-height: 350px;
  }

  .flow-map {
    grid-template-columns: 1fr;
  }

  .flow-card:not(:last-child)::after {
    bottom: -24px;
    content: "↓";
    right: 50%;
    top: auto;
  }

  .flow-secondary {
    grid-column: auto;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 170px 170px;
  }

  .photo-grid img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .compliance-demo {
    padding: 18px;
  }

  .compliance-table__head {
    display: none;
  }

  .compliance-row {
    grid-template-areas:
      "person status"
      "course course"
      "date date";
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 15px;
  }

  .compliance-person {
    grid-area: person;
  }

  .compliance-course {
    grid-area: course;
  }

  .compliance-date {
    grid-area: date;
  }

  .compliance-date::before {
    color: #86a8b4;
    content: "Validade: ";
    font-weight: 400;
  }

  .compliance-row > div:last-child {
    grid-area: status;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {
  .process-grid,
  .value-grid,
  .evidence-delivery-grid {
    grid-template-columns: 1fr;
  }

  .compliance-summary {
    grid-template-columns: 1fr;
  }

  .compliance-summary__card {
    align-items: center;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
  }

  .compliance-demo__topbar strong {
    display: none;
  }

  .compliance-filter {
    justify-content: center;
  }

  .compliance-demo__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .logo-carousel {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%);
  }

  .photo-grid {
    display: flex;
    flex-direction: column;
  }

  .photo-grid img {
    aspect-ratio: 4 / 3;
  }

  .whatsapp-float {
    bottom: 14px;
    height: 56px;
    right: 14px;
    width: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .logo-carousel.is-ready {
    overflow-x: auto;
  }

  .logo-carousel.is-ready .logo-track {
    animation: none;
  }

}
