@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ═══════════════════════════════════════════════════════
       SISTEMA DE DESIGN — CORES DO MANUAL DA MARCA
       
       Azul Escuro:  #022340  (CMYK 100,80,40,40 / RGB 2,35,64)
       Azul Claro:   #0087E1  (CMYK 80,40,0,0  / RGB 0,135,225)
       Cinza Claro:  #F2F2F2
       Branco:       #FFFFFF
    ═══════════════════════════════════════════════════════ */
:root {
  --dark-blue: #1c3271;
  --light-blue: #76BDFF;
  --off-white: #F2F2F2;
  --white: #FFFFFF;

  /* Derivadas para UI (tonalidades dentro da paleta) */
  --bg-deep: #011829;
  --bg-card: #1c3271;
  --bg-section: #021E38;
  --accent: #76BDFF;
  --accent-hover: #A0D0FF;
  --text-white: #FFFFFF;
  --text-muted: #B0C8DC;
  --border: rgba(118, 189, 255, 0.2);
  --border-light: rgba(118, 189, 255, 0.12);

  --font: 'Montserrat', sans-serif;
}

/* ═══════════════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
  scrollbar-color: #76BDFF #010A14;
  scrollbar-width: auto;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ═══════════════════════════════════════════════════════
       COMPONENTES REUTILIZÁVEIS
    ═══════════════════════════════════════════════════════ */

/* Tag pill de seção */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 135, 225, 0.12);
  color: var(--accent);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-tag::before {
  content: '✦';
  font-size: 9px;
}

/* Título H2 padrão — Montserrat Bold */
.section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

/* Botão primário — Azul Claro */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  padding: 13px 30px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 135, 225, 0.3);
}

.btn-primary.sm {
  padding: 10px 24px;
  font-size: 13px;
}

/* Botão ghost/outline */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  padding: 12px 28px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  background: rgba(0, 135, 225, 0.1);
  transform: translateY(-2px);
}

/* Card base */
.card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 135, 225, 0.12);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
       1. NAVBAR
    ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: rgba(1, 24, 41, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-white);
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 0;
  min-width: 190px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.45);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(0, 135, 225, 0.06);
}

.dropdown-menu a::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--dark-blue);
  border-left: 1px solid var(--border);
  z-index: 105;
  padding: 90px 32px 32px;
  transition: right 0.4s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 135, 225, 0.08);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-nav-close:hover {
  transform: rotate(90deg);
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════════════════════
       2. HERO SECTION
    ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #011829 0%, rgba(2, 35, 64, 0.35) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 40px;
  padding-top: 80px;
}

.hero-content {
  max-width: 560px;
}

.hero-content .section-tag {
  margin-bottom: 24px;
}

.hero-content h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: 80px;
  line-height: 1.0;
  color: var(--text-white);
  margin-bottom: 22px;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 .accent-word {
  color: var(--accent);
}

.hero-content p {
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 430px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Card flutuante do hero */
.hero-card {
  justify-self: end;
  width: 340px;
  background: #FFFFFF0A;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}



.hero-card-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.intern-card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(4.5px);
  border-radius: 20px;
  padding: 4px 12px;
  border-block-end-width: var(--border-block-end-width);
  border-block-start-width: var(--border-block-start-width);
  border-color: var(--border-color);
  border-inline-end-width: var(--border-inline-end-width);
  border-inline-start-width: var(--border-inline-start-width);
}

.hero-card-body {
  padding: 0px 22px 18px 22px;
}

.hero-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

.hero-card-avatars {
  display: flex;
  align-items: center;
}

.hero-card-avatars .avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-left: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}

.hero-card-avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.hero-card-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-card-avatars .avatar.a1 {
  background: #0087E1;
}

.hero-card-avatars .avatar.a2 {
  background: #022340;
}

.hero-card-avatars .avatar.a3 {
  background: #0065AB;
}

.hero-card-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0, 135, 225, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
  margin-left: -9px;
}

.hero-card-img {
  width: max-content;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

/* ═══════════════════════════════════════════════════════
       3. BARRA DE PARCEIROS
    ═══════════════════════════════════════════════════════ */
.partners {
  background: #011829;
  padding: 30px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.partners .container {
  display: flex;
  align-items: center;
  gap: 0;
}

.partner-video {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-right: 36px;
}

.partner-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-video .play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 35, 64, 0.5);
  transition: background 0.3s ease;
}

.partner-video:hover .play-btn {
  background: rgba(2, 35, 64, 0.3);
}

.partner-video .play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.partner-logos {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-around;
}

.partner-logos .partner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-white);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  padding: 0 22px;
  border-right: 1px solid rgba(0, 135, 225, 0.12);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.partner-logos .partner:last-child {
  border-right: none;
}

.partner-logos .partner:hover {
  opacity: 0.85;
}

.partner-logos .partner svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
       4. SEÇÃO DE CURSOS
    ═══════════════════════════════════════════════════════ */
.courses {
  padding: 100px 0;
}

.courses-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.courses-header-left {
  max-width: 520px;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 26px;
}

.bento-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 35, 64, 0.82) 0%, transparent 50%);
}

.bento-card.no-gradient::after {
  display: none;
}

.bento-card .bento-label {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  letter-spacing: 0.02em;
}

.bento-card.large {
  grid-row: 1 / 3;
  min-height: 480px;
}

.bento-card.small {
  height: 230px;
}

/* Banner promocional */
.promo-banner {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--bg-card);
}

.promo-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(2, 35, 64, 0.72) 40%, rgba(2, 35, 64, 0.52) 100%);
  z-index: 1;
}

.promo-left {
  position: relative;
  z-index: 2;
}

.promo-left h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.promo-left h2 span {
  color: var(--accent);
}

.promo-left p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}

.promo-pills {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.promo-pill {
  background: rgba(0, 135, 225, 0.1);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 22px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
       5. SOBRE NÓS
    ═══════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg-section);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.about-content .section-title {
  font-size: 36px;
}

.about-content>p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 26px;
}

.about-features {
  margin-bottom: 28px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-white);
  margin-bottom: 14px;
}

.about-features li .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 135, 225, 0.4);
}

.about-mini-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 16px;
  transition: transform 0.3s ease;
}

.about-mini-card:hover {
  transform: translateY(-2px);
}

.about-mini-card .thumb-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.about-mini-card .thumb-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.about-mini-card .thumb-wrap .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mini-card .thumb-wrap .play-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.about-mini-card .mini-info {
  font-size: 13px;
}

.about-mini-card .mini-info strong {
  color: var(--text-white);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}

.about-mini-card .mini-info span {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
       6. NÚMEROS / ESTATÍSTICAS
    ═══════════════════════════════════════════════════════ */
.stats {
  background: var(--bg-deep);
  padding: 55px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(0, 135, 225, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font);
  font-weight: 800;
  font-size: 52px;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number .stat-suffix {
  color: var(--accent);
  font-size: 36px;
}

.stat-label {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   7. CENTRO TÉCNICO DEEPBLUE
════════════════════════════════════════════════════════ */
.tech-center {
  padding: 100px 0;
  background: var(--bg-deep);
}

.tech-center-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px;
  background: var(--bg-section);
  min-height: 420px;
  isolation: isolate;
}

.tech-center-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(1,24,41,0) 0%, rgba(1,24,41,0.15) 15%, rgba(1,24,41,0.6) 35%, rgba(1,24,41,0.95) 55%, rgba(1,24,41,1) 70%),
    url('../../images/bg-centro-tecnico.jpeg') center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.tech-center-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tech-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 135, 225, 0.1);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 6px 16px 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tech-seal-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tech-center-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  color: var(--text-white);
  margin-bottom: 20px;
}

.tech-center-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

.tech-accred-card {
  justify-self: end;
  align-self: end;
  position: relative;
  z-index: 1;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  width: fit-content;
}

.tech-accred-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.tech-accred-logos {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tech-accred-logos img {
  width: 76px;
  height: auto;
  object-fit: contain;
}

.tech-cta svg {
  transition: transform 0.3s ease;
}

.tech-cta:hover svg {
  transform: translateX(4px);
}



@media (max-width: 768px) {
  .tech-center-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
    min-height: 0;
  }

  .tech-center-title {
    font-size: 30px;
  }

  .tech-accred-logos img {
    width: 60px;
  }
}


/* ═══════════════════════════════════════════════════════
   8. MARCAS ATENDIDAS — CARROSSEL
   ═══════════════════════════════════════════════════════ */
.brands-carousel-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.brands-carousel-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 189, 255, 0.5), transparent);
}

.brands-carousel-divider-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  opacity: 0.7;
}

.brands-carousel-wrapper {
  grid-column: 1 / -1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.brands-carousel-track {
  display: flex;
  gap: 48px;
  width: fit-content;
  animation: brandsScroll 18s linear infinite;
}

.brands-carousel-wrapper:hover .brands-carousel-track {
  animation-play-state: paused;
}

.brands-carousel-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.4s ease;
  opacity: 0.5;
}

.brands-carousel-slide img {
  max-height: 44px;
  width: auto;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brands-carousel-wrapper:hover .brands-carousel-slide img {
  filter: grayscale(0.6);
}

.brands-carousel-slide:hover {
  opacity: 1;
}

.brands-carousel-slide:hover img {
  transform: scale(1.25);
  filter: grayscale(0) !important;
}

@keyframes brandsScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .brands-carousel-slide img {
    max-height: 38px;
  }

  .brands-carousel-track {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .brands-carousel-slide img {
    max-height: 32px;
  }

  .brands-carousel-track {
    gap: 28px;
  }
}

/* ═══════════════════════════════════════════════════════
   9. PLANOS E PREÇOS
   ═══════════════════════════════════════════════════════ */
.pricing {
  padding: 100px 0;
  background: var(--bg-section);
}

.pricing-header {
  text-align: center;
  margin-bottom: 54px;
}

.pricing-header .section-subtitle {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  padding: 38px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0, 135, 225, 0.12);
}

.pricing-card.featured {
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 40px rgba(0, 135, 225, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card-icon {
  position: absolute;
  top: 26px;
  right: 26px;
}

.pricing-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.pricing-card h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-white);
  margin-bottom: 22px;
}

.pricing-price {
  margin-bottom: 30px;
}

.pricing-price .amount {
  font-family: var(--font);
  font-weight: 800;
  font-size: 38px;
  color: var(--text-white);
}

.pricing-price .period {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  margin-left: 4px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.55;
}

.pricing-features li .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 135, 225, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li .check svg {
  width: 11px;
  height: 11px;
  color: var(--accent);
}

.pricing-card .btn-ghost,
.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
       8. PERGUNTAS FREQUENTES
    ═══════════════════════════════════════════════════════ */
.faq {
  padding: 100px 0;
}

.faq .container {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 44px;
  align-items: start;
}

.faq-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 600px;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 35, 64, 0.88) 0%, transparent 50%);
}

.faq-image-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(2, 35, 64, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
}

.faq-image-badge .phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-image-badge .phone-icon svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.faq-image-badge .phone-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.faq-image-badge .phone-text span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.faq-right {
  padding-left: 20px;
}

.faq-right .section-title {
  font-size: 34px;
  margin-bottom: 30px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 135, 225, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-white);
  transition: color 0.3s ease;
  gap: 16px;
}

.accordion-header:hover {
  color: var(--accent);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.35s ease, background 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: rgba(0, 135, 225, 0.15);
}

.accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
  opacity: 1;
  padding: 0 0 20px 0;
}

.accordion-body p {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
       9. DEPOIMENTOS
    ═══════════════════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--bg-section);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 54px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 135, 225, 0.1);
}

.testimonial-card.featured {
  border-color: var(--accent);
}

.testimonial-card .quote-deco {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 120px;
  font-family: var(--font);
  color: var(--accent);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  font-weight: 800;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  fill: var(--accent);
}

.testimonial-card .testimonial-text {
  font-weight: 300;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 26px;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.testimonial-info span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.testimonial-badge {
  text-align: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 135, 225, 0.1);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
       10. BLOG
    ═══════════════════════════════════════════════════════ */
.blog {
  padding: 100px 0;
}

.blog-header {
  text-align: center;
  margin-bottom: 54px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 135, 225, 0.12);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-img .blog-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.blog-meta svg {
  width: 13px;
  height: 13px;
  color: var(--text-muted);
}

.blog-card-body h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-body h3 {
  color: var(--accent-hover);
}

.blog-card-body .blog-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
       11. BANNER CTA FINAL
    ═══════════════════════════════════════════════════════ */
.cta {
  position: relative;
  padding: 110px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-deep);
}

.cta-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(2, 35, 64, 0.62), rgba(2, 35, 64, 0.52));
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 44px;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta p {
  font-weight: 300;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}

.cta-phone svg {
  width: 20px;
  height: 20px;
}

/* ═══════════════════════════════════════════════════════
       12. RODAPÉ
    ═══════════════════════════════════════════════════════ */
.footer {
  background: #010A14;
  padding: 66px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 44px;
  margin-bottom: 44px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-weight: 300;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 290px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  border-color: var(--accent);
  background: rgba(0, 135, 225, 0.1);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text-white);
}

.footer-col h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.footer-col a {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 13px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-divider {
  height: 1px;
  background: rgba(0, 135, 225, 0.12);
  margin-bottom: 22px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════
       RESPONSIVIDADE
    ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Navbar mobile */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
    padding: 70px 32px 32px;
  }

  .mobile-overlay {
    display: block;
  }

  /* Melhorar experiência touch */
  a,
  button {
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-nav a {
    padding: 16px 0;
    font-size: 16px;
  }

  .footer-col a {
    padding: 8px 0;
    display: inline-block;
  }

  /* Navbar mobile */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
    padding: 70px 32px 32px;
  }

  .mobile-overlay {
    display: block;
  }

  .navbar .btn-primary.sm {
    display: none;
  }

  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-card {
    display: none;
  }

  /* Parceiros */
  .partner-logos {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .partner-logos .partner {
    border-right: none;
    padding: 8px 12px;
    font-size: 13px;
  }

  .partner-video {
    display: none;
  }

  /* Cursos */
  .courses-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card.large {
    grid-row: auto;
    min-height: 280px;
  }

  .bento-card.small {
    height: 200px;
  }

  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
  }

  .promo-pills {
    justify-content: center;
  }

  /* Sobre */
  .about .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 300px;
  }

  /* Stats */
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(0, 135, 225, 0.15);
  }

  .stat-number {
    font-size: 40px;
  }

  /* Preços */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* FAQ */
  .faq .container {
    grid-template-columns: 1fr;
  }

  .faq-image {
    height: 280px;
  }

  .faq-right {
    padding-left: 0;
  }

  /* Depoimentos */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    display: block;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* CTA */
  .cta h2 {
    font-size: 32px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 26px;
  }

  .stat-number {
    font-size: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta h2 {
    font-size: 26px;
  }
}

/* ═══════════════════════════════════════════════════════
       EFEITOS DE LUZ SUBAQUÁTICA (Fundo do Mar)
    ═══════════════════════════════════════════════════════ */
.caustics-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.12;
  overflow: hidden;
  mix-blend-mode: screen;
}

.caustic-ray {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 15vw;
  height: 150vh;
  background: linear-gradient(180deg, rgba(0, 135, 225, 0) 0%, rgba(139, 168, 196, 0.6) 50%, rgba(0, 135, 225, 0) 100%);
  transform-origin: top;
  filter: blur(40px);
  animation: sway 8s ease-in-out infinite alternate, pulse 6s ease-in-out infinite alternate;
}

.caustic-ray:nth-child(2) {
  left: 45%;
  width: 25vw;
  animation-delay: -3s, -2s;
  opacity: 0.8;
}

.caustic-ray:nth-child(3) {
  left: 75%;
  width: 18vw;
  animation-delay: -5s, -4s;
  opacity: 0.6;
}

@keyframes sway {
  0% {
    transform: rotate(-12deg) translateX(-60px);
  }

  100% {
    transform: rotate(12deg) translateX(60px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

/* ═══════════════════════════════════════════════════════
   PÁGINAS INTERNAS — COMPONENTES EXCLUSIVOS
═══════════════════════════════════════════════════════ */
.internal-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.internal-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}

.internal-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 24, 41, 0) 0%, var(--bg-deep) 100%);
}

.internal-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  position: relative;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 135, 225, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-white);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.side-by-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.side-by-side.reverse {
  direction: rtl;
}

.side-by-side.reverse>* {
  direction: ltr;
}

.side-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-white);
}

.side-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.side-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-image-deco {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent);
  opacity: 0.3;
  transform: scale(0.95);
  border-radius: 20px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .side-by-side {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ═══════════════════════════════════════════════════════
   MODAL IMERSIVO DE CTA (Agendamento Leads)
═══════════════════════════════════════════════════════ */
.cta-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(1, 24, 41, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cta-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cta-modal-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: rgba(2, 43, 74, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-modal-overlay.active .cta-modal-container {
  transform: translateY(0) scale(1);
}

.cta-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}

.cta-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.cta-modal-header h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-modal-header p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 80%;
  margin: 0 auto;
}

.form-section-title {
  color: var(--text-white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}

.course-selection-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 24px;
  margin-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.course-selection-grid::-webkit-scrollbar {
  height: 4px;
}

.course-selection-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.course-selection-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.course-card {
  flex: 0 0 120px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.course-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.course-card.active {
  background: rgba(0, 135, 225, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 135, 225, 0.2);
}

.course-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.course-card.active .course-icon {
  background: var(--accent);
  color: #fff;
}

.course-card span {
  color: var(--text-white);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.course-card small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
}

.input-group-row {
  margin-bottom: 16px;
}

.input-group-row.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-box input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.input-box input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input-box input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 135, 225, 0.15);
}

.cta-modal-submit {
  margin-top: 10px;
  padding: 16px;
  font-size: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .cta-modal-container {
    padding: 30px 20px;
  }

  .input-group-row.col-2 {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLLBAR PERSONALIZADA
═══════════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #010A14;
}

::-webkit-scrollbar-thumb {
  background: #76BDFF;
  border-radius: 10px;
  min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A0D0FF;
}

/* Modal / small scroll areas */
.course-selection-grid::-webkit-scrollbar {
  height: 6px;
}

.course-selection-grid::-webkit-scrollbar-track {
  background: #010A14;
  border-radius: 3px;
}

.course-selection-grid::-webkit-scrollbar-thumb {
  background: #76BDFF;
  border-radius: 3px;
}

.course-selection-grid::-webkit-scrollbar-thumb:hover {
  background: #A0D0FF;
}

/* ═══════════════════════════════════════════════════════
   COURSE BADGE (logo PADI / TecRec nos cards)
═══════════════════════════════════════════════════════ */
.course-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(1, 24, 41, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.course-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.course-badge.sm {
  width: 36px;
  height: 36px;
  padding: 4px;
  top: 8px;
  right: 8px;
}

.course-badge.xs {
  position: relative;
  top: auto;
  right: auto;
  width: 28px;
  height: 28px;
  padding: 3px;
  display: inline-flex;
  margin-left: 6px;
  vertical-align: middle;
  box-shadow: none;
  background: rgba(1, 24, 41, 0.7);
}

/* ═══════════════════════════════════════════════════════
   CERTIFICATION BANNERS (4 banners visuais)
═══════════════════════════════════════════════════════ */
.cert-banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cert-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  isolation: isolate;
}

.cert-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(118, 189, 255, 0.18);
}

.cert-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.cert-banner:hover .cert-banner-bg {
  transform: scale(1.06);
}

.cert-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(1, 24, 41, 0.95) 10%, rgba(1, 24, 41, 0.15) 70%, transparent 100%);
}

.cert-banner-content {
  position: relative;
  z-index: 2;
}

.cert-banner-icon {
  width: 44px;
  height: 44px;
  background: rgba(118, 189, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}

.cert-banner-icon svg {
  width: 22px;
  height: 22px;
}

.cert-banner h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cert-banner p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cert-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.cert-banner:hover .cert-banner-tag {
  gap: 10px;
}

.cert-banner-tag svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .cert-banners {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cert-banners {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   ESPECIALIDADES GRID (página especialidades-tecrec)
═══════════════════════════════════════════════════════ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.spec-item {
  background: rgba(118, 189, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 18px;
  transition: all 0.3s ease;
  cursor: default;
}

.spec-item:hover {
  background: rgba(118, 189, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.spec-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 3px;
}

.spec-item span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE (página nossa-história)
═══════════════════════════════════════════════════════ */
.timeline-section {
  padding: 40px 0;
  max-width: 720px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  padding: 32px 0 32px 40px;
  border-left: 2px solid var(--accent);
  margin-left: 12px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 36px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(118, 189, 255, 0.4);
}

.timeline-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   DEPOIMENTOS — FORMULÁRIO DE SUBMISSÃO
═══════════════════════════════════════════════════════ */
.testimonial-form {
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 36px;
}

.testimonial-form h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 6px;
}

.testimonial-form>p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.testimonial-form .input-box {
  margin-bottom: 16px;
}

.testimonial-form .input-box label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 6px;
}

.testimonial-form .input-box textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  resize: vertical;
  min-height: 100px;
}

.testimonial-form .input-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.testimonial-form .input-box textarea:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(118, 189, 255, 0.15);
}

.testimonial-form .form-status {
  text-align: center;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  margin-top: 16px;
  display: none;
}

.testimonial-form .form-status.success {
  display: block;
  background: rgba(118, 189, 255, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.testimonial-form .form-status.error {
  display: block;
  background: rgba(255, 80, 80, 0.1);
  color: #ff5050;
  border: 1px solid rgba(255, 80, 80, 0.3);
}

/* ═══════════════════════════════════════════════════════
   PÁGINA CENTRO TÉCNICO — TRAJETÓRIA
═══════════════════════════════════════════════════════ */
.trajectory-card {
  background: linear-gradient(160deg, #0E1B30 0%, #0F1E38 50%, #0D1A2E 100%);
  border: 1px solid rgba(43, 126, 255, 0.12);
  border-radius: 20px;
  padding: 56px 48px 48px;
  margin-bottom: 80px;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(118, 189, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.trajectory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 139, 255, 0.3), transparent);
}

.trajectory-header {
  text-align: center;
  margin-bottom: 56px;
}

.trajectory-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}

.trajectory-header p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 8px;
}

.timeline-connector {
  position: absolute;
  top: 116px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(59, 139, 255, 0.1) 0%,
      #3B8BFF 15%,
      #3B8BFF 85%,
      rgba(59, 139, 255, 0.1) 100%);
  opacity: 0.3;
  z-index: 0;
}

.timeline-connector::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 139, 255, 0.15), transparent);
  filter: blur(4px);
  z-index: -1;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 4px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-node:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(59, 139, 255, 0.15), rgba(59, 139, 255, 0.25), rgba(59, 139, 255, 0.15), transparent);
}

.timeline-node:hover {
  transform: translateY(-4px);
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1E3A6F, #2B5780);
  border: 1px solid rgba(59, 139, 255, 0.25);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 16px;
  letter-spacing: 1.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-node:hover .timeline-year {
  background: linear-gradient(135deg, #2B5780, #3B8BFF);
  border-color: rgba(59, 139, 255, 0.5);
  box-shadow: 0 4px 16px rgba(59, 139, 255, 0.2);
}

.timeline-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(59, 139, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0E1B30;
  box-shadow:
    0 0 0 0 rgba(59, 139, 255, 0),
    0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    border-color 0.4s ease,
    box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.timeline-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(59, 139, 255, 0.06);
  pointer-events: none;
}

.timeline-node:hover .timeline-circle {
  border-color: #3B8BFF;
  box-shadow:
    0 0 0 5px rgba(59, 139, 255, 0.12),
    0 0 20px rgba(59, 139, 255, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.25);
  transform: scale(1.04);
}

.timeline-circle-photo {
  background-size: cover;
  background-position: center;
}

.timeline-circle .tl-logo-abud,
.timeline-circle .tl-logo-cressi,
.timeline-circle .tl-logo-scubapro {
  text-align: center;
  line-height: 1.2;
}

.timeline-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  max-width: 170px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.timeline-node:hover .timeline-title {
  color: var(--accent);
}

.timeline-local {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0.75;
  letter-spacing: 0.3px;
}

.timeline-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 165px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.timeline-node:hover .timeline-body {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════
   PÁGINA CENTRO TÉCNICO — PÁGINA CRESSI
═══════════════════════════════════════════════════════ */
.cressi-partnership {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  background: linear-gradient(145deg, #0E1B30 0%, #0F1E38 100%);
  border: 1px solid rgba(43, 126, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(118, 189, 255, 0.04);
}

.cressi-photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.cressi-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(118, 189, 255, 0.08);
  pointer-events: none;
}

.cressi-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
  object-position: top;
}

.cressi-partnership:hover .cressi-photo img {
  transform: scale(1.03);
}

.cressi-content {
  position: relative;
}

.cressi-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cressi-content>p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}

.cressi-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cressi-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(14, 27, 48, 0.5);
  border: 1px solid rgba(43, 126, 255, 0.08);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.cressi-benefit-item:hover {
  border-color: rgba(43, 126, 255, 0.2);
  background: rgba(14, 27, 48, 0.7);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: #3B8BFF;
  margin-bottom: 4px;
}

.cressi-benefit-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
}

.cressi-benefit-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.8;
}

.cressi-watermark {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   PÁGINA CENTRO TÉCNICO — MARCAS ATENDIDAS
═══════════════════════════════════════════════════════ */
.brands-strip {
  margin-bottom: 80px;
  background: linear-gradient(145deg, #0E1B30 0%, #0F1E38 100%);
  border: 1px solid rgba(43, 126, 255, 0.1);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(118, 189, 255, 0.04);
}

.brands-strip h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.8;
}

.brands-strip-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.brand-logo-img:hover {
  opacity: 1;
}

.brand-logo-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.brand-logo-item:hover {
  opacity: 1;
}



.brand-sep {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   PÁGINA CENTRO TÉCNICO — PROPOSTAS DE VALOR
═══════════════════════════════════════════════════════ */
.value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.value-prop-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  background: linear-gradient(145deg, #0E1B30 0%, #0F1E38 100%);
  border: 1px solid rgba(43, 126, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.value-prop-item:hover {
  border-color: rgba(43, 126, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.vp-icon {
  width: 32px;
  height: 32px;
  color: #3B8BFF;
  margin-bottom: 4px;
}

.value-prop-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.value-prop-item span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.8;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVO — CENTRO TÉCNICO
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cressi-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trajectory-card {
    padding: 28px 20px;
  }

  .trajectory-header h2 {
    font-size: 24px;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .timeline-connector {
    display: none;
  }

  .timeline-node:not(:last-child)::after {
    display: none;
  }

  .timeline-node {
    max-width: 240px;
  }

  .timeline-circle {
    width: 76px;
    height: 76px;
  }

  .timeline-title {
    font-size: 13px;
  }

  .timeline-body {
    font-size: 11px;
  }

  .cressi-partnership {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }

  .cressi-photo img {
    height: 220px;
  }

  .cressi-benefits {
    grid-template-columns: 1fr;
  }

  .brands-strip {
    padding: 28px 20px;
  }

  .brands-strip-logos {
    justify-content: center;
    gap: 14px;
  }

  .brand-sep {
    display: none;
  }

  .brand-logo-img {
    height: 30px;
  }



  .value-props {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .value-prop-item {
    padding: 18px 16px;
  }
}