/* ===================================================
   INFINITY BIG DATA — style.css
   Valores extraídos do CSS real do Elementor (post-12.css)
   =================================================== */

/* ===== VARIÁVEIS (valores reais do site) ===== */
:root {
  --bg-dark:        #000000;
  --bg-card:        #080808;
  --bg-card2:       #0a0a0a;
  --accent-teal:    #1E7E93;
  --accent-cyan:    #54C4D8;
  --accent-gold:    #E5C46A;
  --accent-purple:  rgba(79,37,109,0.45);
  --text-white:     #ffffff;
  --text-gray:      #b0bec5;
  --text-muted:     #6f6f6f;
  --radius:         10px;
  --shadow:         0 8px 32px rgba(30,126,147,0.15);
  --glow-teal:      0 0 24px rgba(30,126,147,0.3);
  --glow-teal-lg:   0 0 48px rgba(30,126,147,0.22);
  --card-bg:        linear-gradient(145deg, #0d0d0d 0%, #060606 100%);
  --section-divider: linear-gradient(90deg, transparent 0%, rgba(30,126,147,0.25) 40%, rgba(84,196,216,0.15) 60%, transparent 100%);

  /* Tipografia real: Montserrat + Poppins */
  --font-body:      'Montserrat', sans-serif;
  --font-btn:       'Poppins', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1290px; margin: 0 auto; padding: 0 40px; }
.teal  { color: var(--accent-teal); }
.cyan  { color: var(--accent-cyan); }
.gold  { color: var(--accent-gold); }
.section { padding: 80px 0; }

/* ===== BOTÃO GRADIENTE ANIMADO (textura — igual ao site real) ===== */
@keyframes textura {
  0%   { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

/* Botão primário — Poppins, padding 30px 60px, border-radius 10px */
/* ===== BOTÕES — padrão único ===== */
/* Altura visual: ~52px. Padding: 15px V × 36px H */
.btn-primary,
.btn-secondary,
.btn-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 15px 36px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background-image: linear-gradient(90deg, #1E7E93, #4F256D, #1E7E93, #4F256D);
  background-size: 400% 200%;
  animation: 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 3.4s infinite normal none running textura;
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(30,126,147,0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
}
.btn-secondary:hover {
  background: rgba(84,196,216,0.1);
  transform: translateY(-3px);
}

.btn-purple {
  background: #6c3fd4;
  color: #fff;
}
.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(108,63,212,0.45);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 800px;
  background-color: #000000;
  background-image: url('../uploads/Banner-04-2.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--accent-teal);
}

/* Overlay escuro para legibilidade */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.20) 10%,
    rgba(0,0,0,0.10) 100%
  );
  z-index: 1;
}

/* Linha brilhante no topo */
.hero-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
  z-index: 3;
}

/* ── Canvas tech overlay ── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding: 80px 40px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
/* Logo — glow suave, sem florescent exagerado */
.hero-logo img {
  width: 80%;
  max-width: 250px;
  filter:
    drop-shadow(0 0 6px  rgba(84,196,216,0.35))
    drop-shadow(0 0 18px rgba(84,196,216,0.12));
  animation: logoGlowPulse 4s ease-in-out infinite;
}
@keyframes logoGlowPulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 6px  rgba(84,196,216,0.35))
      drop-shadow(0 0 18px rgba(84,196,216,0.12));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(84,196,216,0.55))
      drop-shadow(0 0 28px rgba(84,196,216,0.22));
  }
}

/* Subtítulo acima do H1 — Montserrat 15px weight 500 */
.hero-supertitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Glow pulsante compartilhado entre todos os textos do hero ── */
@keyframes heroTextGlow {
  0%, 100% { text-shadow:
    0 0 8px  rgba(84,196,216,0.25),
    0 0 20px rgba(84,196,216,0.12),
    0 0 40px rgba(84,196,216,0.06); }
  50%       { text-shadow:
    0 0 12px rgba(84,196,216,0.50),
    0 0 30px rgba(84,196,216,0.25),
    0 0 60px rgba(84,196,216,0.12); }
}

/* H1 — Orbitron + gradiente ciano tech animado */
.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  background: linear-gradient(
    100deg,
    #54C4D8  0%,
    #00E5FF  22%,
    #1E7E93  42%,
    #54C4D8  58%,
    #00CFFF  74%,
    #54C4D8  88%,
    #00E5FF 100%
  );
  background-size: 280% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleGradMove 4s linear infinite;
}
@keyframes titleGradMove {
  0%   { background-position:   0% center; }
  100% { background-position: 280% center; }
}

/* H2 do hero — Montserrat, claramente subordinado ao H1 Orbitron */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

/* Body text — Montserrat 18px weight 400 */
.hero-desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.65;
  animation: heroTextGlow 4.5s ease-in-out infinite 1s;
}
.hero-desc strong { color: var(--accent-cyan); }

.hero-img { position: relative; }
.hero-img img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 0 40px rgba(30,126,147,0.3));
}

/* ===== BADGES (seção preta com 4 cards) ===== */
#badges {
  padding: 80px 0;
}

.badges-grid {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: stretch;
}

/* Card do badge — bg #080808, border roxo, padding 30px, radius 10px */
.badge-card {
  flex: 1;
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .3s, box-shadow .3s;
  cursor: default;
}
.badge-card:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--glow-teal);
}

.badge-icon {
  flex-shrink: 0;
  width: 20%;
  max-width: 60px;
}
.badge-icon img { width: 100%; }

.badge-text { flex: 1; }
.badge-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-teal);
  margin-bottom: 5px;
}
.badge-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1.4;
}
.badge-desc strong { color: var(--accent-cyan); }

/* ===== NÚMEROS ===== */
#numeros { border-top: 1px solid #202020; }

.numeros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}

/* Lista com dividers — gap 30px entre itens, border #202020 */
.numeros-list { list-style: none; }
.numeros-list li {
  display: flex;
  gap: 14px;
  padding: 30px 0;
  border-bottom: 1px solid #202020;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.65;
}
.numeros-list li:last-child { border-bottom: none; }
.numeros-list li .icon {
  color: var(--accent-teal);
  font-size: 14px;
  margin-top: 6px;
  flex-shrink: 0;
}
.numeros-list li strong { color: var(--accent-teal); }
.counter-val { color: var(--accent-teal); font-weight: 700; }

.numeros-laptop img {
  border-radius: 0;
  box-shadow: none;
  transition: transform .4s ease;
}
.numeros-laptop img:hover { transform: scale(1.02); }


/* ===== VÍDEO ===== */
#video { padding: 60px 0; border-top: 1px solid #202020; }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(30,126,147,0.2);
  border: 1px solid var(--accent-purple);
}
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.btn-plataforma { display: block; text-align: center; margin-top: 32px; }
.btn-plataforma-cta { text-align: center; padding: 32px 16px 40px; }
.btn-plataforma-link { display: inline-block; font-size: 1rem; padding: 16px 40px; letter-spacing: 0.04em; }

/* ===== PLANOS ===== */
/* ===== FAIRY PARTICLES — CSS real do site (ver fairy.css) ===== */

#planos {
  border-top: 1px solid #202020;
  position: relative;
  overflow: hidden;
}
.planos-title { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.planos-title h2 {
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 700;
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: start;
  justify-content: center;
}

/* Estilo base dos cards de plano */
.plan-card {
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color .3s, box-shadow .3s;
}
.plan-card:hover { border-color: var(--accent-teal); box-shadow: var(--glow-teal); }

/* ===== BORDA ANIMADA DOS CARDS DE PLANO (igual ao site real) ===== */
@keyframes borda-animada {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Wrapper com efeito de borda giratória */
.plan-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform .3s;
}
.plan-wrapper:hover { transform: translateY(-4px); }

/* Pseudo-elemento :after — fundo interno gradient azul escuro (Basic) */
.plan-wrapper::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, #041D45 0%, #010D1F 100%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10px;
  z-index: 0;
}
/* Pseudo-elemento :before — luz girando em conic-gradient */
.plan-wrapper::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(transparent 0deg, transparent 300deg, #4F256D 340deg, #9B59B6 360deg);
  width: 200%;
  aspect-ratio: 1;
  animation: borda-animada 4s linear infinite;
  z-index: 0;
}
/* Premium wrapper — luz teal */
.plan-wrapper-premium::before {
  background: conic-gradient(transparent 0deg, transparent 300deg, #1E7E93 340deg, #54C4D8 360deg);
}
.plan-wrapper-premium::after  { background: linear-gradient(180deg, #147286 0%, #010D1F 100%); }

/* Inner — conteúdo acima dos pseudo-elementos */
.plan-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header do card — fundo azul escuro */
.plan-header {
  background: #132B50;
  padding: 20px 20px 16px;
  text-align: center;
  position: relative;
}

/* Card Basic — mantém class para compatibilidade */
.plan-basic {
  padding: 0;
  border-radius: 8px;
}

/* Card Premium */
.plan-premium {
  padding: 0;
  border-radius: 8px;
  position: relative;
}

.plan-premium-outer {
  position: relative;
}
.plan-badge-mec {
  position: absolute;
  top: -38px;
  right: -18px;
  width: 130px;
  z-index: 10;
  filter: drop-shadow(0 4px 12px rgba(229,196,106,0.5));
}

.plan-body {
  padding: 20px 20px 24px;
}

.plan-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
}
.plan-wrapper .plan-name { color: var(--text-white); }
.plan-wrapper-premium .plan-name { color: var(--accent-gold); }

.plan-price-old {
  text-align: center;
  font-size: 13px;
  color: var(--text-gray);
}
.plan-price-old s { text-decoration: line-through; }
.plan-installments {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 2px;
  color: var(--text-white);
}
.plan-price-big {
  text-align: center;
  font-family: var(--font-body);
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}
.plan-basic .plan-price-big { color: #6EE2DB; }
.plan-premium .plan-price-big { color: var(--accent-gold); }

.plan-price-cash {
  text-align: center;
  font-size: 15px;
  color: var(--text-white);
  margin-top: 8px;
  margin-bottom: 24px;
}

/* Features list */
.plan-features { list-style: none; margin-top: 24px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #202020;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
}
.plan-features li:last-child { border-bottom: none; }
.feat-yes { color: var(--accent-teal); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.feat-no  { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.feat-no ~ span { color: var(--text-muted); }

/* Botão do plano — Poppins, border-radius 16px, padding 20px 60px */
@keyframes pulse-basic {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  50%       { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}
@keyframes pulse-premium {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,196,106,.5); }
  50%       { box-shadow: 0 0 0 10px rgba(229,196,106,0); }
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  font-family: var(--font-btn);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 20px 30px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, filter .2s;
  margin-bottom: 8px;
  color: #fff;
}
.btn-plan:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.1); }

/* Botão Basic — verde vibrante */
.btn-plan-basic {
  background-image: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  animation: pulse-basic 2s infinite;
}
.btn-plan-basic:hover { box-shadow: 0 10px 30px rgba(34,197,94,.55); animation: none; }

/* Botão Premium — dourado com brilho */
.btn-plan-premium {
  background-image: linear-gradient(135deg, #b45309 0%, #f59e0b 50%, #e5c46a 100%);
  color: #1a0a00;
  animation: pulse-premium 2s infinite;
}
.btn-plan-premium:hover { box-shadow: 0 10px 30px rgba(229,196,106,.6); animation: none; }

/* Botão "Ver cursos" */
.btn-plan-ver {
  background-image: linear-gradient(180deg, #1A2A4E 0%, #6B9CA0 100%);
  color: #E9E9E9;
}
.btn-plan-ver:hover { opacity: 0.85; }

/* ===== COMPARATIVO DE PLANOS ===== */
.comparativo { max-width: 1000px; margin: 0 auto; }
.comp-table-outer {
  position: relative;
  padding-top: 44px;
}
.comp-badge-mec {
  position: absolute;
  top: 15px;
  right: -40px;
  width: 90px;
  z-index: 10;
  filter: drop-shadow(0 4px 14px rgba(229,196,106,0.55));
}
/* Cartões mobile ocultos no desktop */
.comp-mobile-cards { display: none; }

.comp-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}
.comp-table {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #1a2a3a;
}
/* Cada linha: sem border-bottom — separador só nas colunas */
.comp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
/* Colunas com cor sólida por coluna — sem zebra */
.comp-col {
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-feat-col {
  justify-content: flex-start;
  font-size: 14px;
  color: var(--text-white);
  background: #07111a;
  border-right: 1px solid #1a2a3a;
}
/* Colunas com cor uniforme do topo ao rodapé */
.comp-basic-col { background: #041830; }
.comp-prem-col  { background: #062030; border-left: 1px solid rgba(30,126,147,0.25); }

/* Cabeçalho */
.comp-head .comp-feat-col { background: #050e16; }
.comp-head .comp-basic-col {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 800;
  color: var(--text-white);
  background: #0a2d5e;
  border-bottom: 2px solid #1E7E93;
  padding: 16px 18px;
}
.comp-head .comp-prem-col {
  font-family: var(--font-body);
  font-size: 17px; font-weight: 800;
  color: var(--accent-gold);
  background: #0d3d4a;
  border-bottom: 2px solid var(--accent-gold);
  padding: 16px 18px;
}

/* Linha de preço */
.comp-price-row .comp-feat-col { font-weight: 600; color: var(--text-gray); font-size: 13px; }
.comp-price-row .comp-basic-col,
.comp-price-row .comp-prem-col  { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.comp-price-row small { font-size: 11px; opacity: .7; margin-left: 3px; }

/* Separadores de grupo */
.comp-group-label .comp-feat-col { padding: 8px 18px; background: #050e16; }
.comp-group-label .comp-basic-col { background: #041020; border-bottom: 1px solid rgba(30,118,147,0.2); }
.comp-group-label .comp-prem-col  { background: #041a24; border-bottom: 1px solid rgba(30,118,147,0.2); }

/* Rodapé */
.comp-footer .comp-feat-col  { background: #050e16; border-bottom: none; }
.comp-footer .comp-basic-col,
.comp-footer .comp-prem-col  { padding: 18px; background: #040d14; border-bottom: none; }

/* Ícones */
.ck   { color: #22c55e; font-size: 1rem; font-weight: 700; }
.cx   { color: #7a3030; font-size: 1rem; }
.cv   { color: var(--text-white); font-weight: 600; font-size: 17px; }
.gold { color: var(--accent-gold) !important; font-weight: 700; }

/* ===== PLANO PERSONALIZADO ===== */
.plano-custom {
  max-width: 900px; margin: 56px auto 0;
  display: flex; border-radius: 20px; overflow: hidden;
  background: #0d1929;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.plano-custom-img {
  position: relative; flex: 0 0 45%; min-height: 280px; overflow: hidden;
}
.plano-custom-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.plano-custom-overlay {
  position: absolute; inset: 0;
  background: rgba(8,15,40,0.52);
}
.plano-custom-badge {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff; font-size: 12px; font-weight: 900;
  letter-spacing: .18em; padding: 7px 20px; border-radius: 30px;
  white-space: nowrap; text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(168,85,247,0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.plano-custom-body {
  flex: 1; padding: 36px 36px 32px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.plano-custom-body h3 {
  font-size: 1.35rem; font-weight: 800; color: #fff; line-height: 1.3;
}
.plano-custom-body p {
  font-size: 0.95rem; color: #b0bec5; line-height: 1.6; margin: 0;
}
.btn-plan-custom {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff; font-size: 0.88rem; font-weight: 700;
  padding: 13px 26px; border-radius: 50px;
  text-decoration: none; width: fit-content;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(168,85,247,0.4);
}
.btn-plan-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168,85,247,0.6);
}
.plano-custom-hint {
  font-size: 12px; color: #25d366; font-weight: 500;
}

@media (max-width: 700px) {
  .plano-custom { flex-direction: column; }
  .plano-custom-img { flex: none; min-height: 200px; }
  .plano-custom-body { padding: 24px 20px 22px; }
}

/* ===== EMENTA ===== */
#ementa { border-top: 1px solid #202020; }
.ementa-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.ementa-header h2 {
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 700;
}
.ementa-badge {
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 14px 24px;
  font-size: 16px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ementa-badge .icon { color: var(--accent-teal); }

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.tool-tag {
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: 6px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: default;
  transition: border-color .2s, color .2s, box-shadow .2s;
}
.tool-tag:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  box-shadow: 0 0 12px rgba(30,126,147,0.2);
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 6px; }
.acc-item {
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.acc-item:hover { border-color: rgba(30,126,147,0.4); }
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.acc-btn .plus {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--accent-purple);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-teal);
  transition: transform .3s, background .2s;
}
.acc-item.open .acc-btn .plus {
  transform: rotate(45deg);
  background: rgba(30,126,147,0.15);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, padding .3s;
  padding: 0 24px;
}
.acc-item.open .acc-body { max-height: 3000px; padding: 0 24px 18px; }
.acc-body p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 10px;
}
.acc-body .acc-summary {
  font-size: 14px;
  color: #8eb3c0;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1e2d3d;
  font-style: italic;
}
.acc-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin: 14px 0 6px;
}
.acc-body ul {
  list-style: none;
  padding-left: 0;
}
.acc-body ul li {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  padding: 3px 0 3px 18px;
  position: relative;
}
.acc-body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
}
.ementa-cta { text-align: center; margin-top: 40px; }

/* ===== CERTIFICADO ===== */
#certificado { border-top: 1px solid #202020; }
.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.cert-inner h2 {
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cert-inner p {
  color: var(--text-white);
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.65;
}
.cert-inner p strong { color: var(--accent-teal); }
.cert-bullets { list-style: none; margin-top: 16px; }
.cert-bullets li {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #202020;
  font-size: 18px;
  color: var(--text-white);
  line-height: 1.65;
}
.cert-bullets li .icon { color: var(--accent-teal); flex-shrink: 0; margin-top: 3px; }
.cert-right { display: flex; flex-direction: column; gap: 24px; }
.cert-img {
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(30,126,147,0.15);
  transition: box-shadow .3s;
}
.cert-img:hover { box-shadow: 0 0 60px rgba(30,126,147,0.3); }
.sirius-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.sirius-logo img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
}

/* ===== INSTRUTOR ===== */
#instrutor {
  border-top: 1px solid #202020;
  position: relative;
  overflow: hidden;
}
/* Mesh de fundo */
#instrutor::after {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,126,147,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.instrutor-card {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  display: grid;
  /* foto à esq, texto à dir */
  grid-template-columns: 500px 1fr;
  gap: 72px;
  align-items: start;
  overflow: visible;
  position: relative;
  z-index: 1;
}

/* ---- Foto frame moderno ---- */
.instrutor-foto {
  position: relative;
  /* overflow: visible para chips saírem do frame */
  overflow: visible;
}

.instrutor-foto-frame {
  position: relative;
  border-radius: 20px;
  /* Técnica padding+gradient: borda limpa sem radar */
  padding: 2px;
  background: linear-gradient(
    160deg,
    rgba(84,196,216,0.9) 0%,
    rgba(30,126,147,0.7) 35%,
    rgba(79,37,109,0.6) 65%,
    rgba(84,196,216,0.5) 100%
  );
  animation: border-pulse 4s ease-in-out infinite;
}

@keyframes border-pulse {
  0%, 100% {
    box-shadow:
      0 0 30px rgba(84,196,216,0.2),
      0 0 70px rgba(30,126,147,0.1);
  }
  50% {
    box-shadow:
      0 0 50px rgba(84,196,216,0.35),
      0 0 120px rgba(30,126,147,0.18);
  }
}

.instrutor-foto-frame img {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  position: relative;
  z-index: 1;
  opacity: 0.82;
}
.inst-foto-caption {
  padding: 0 0 16px 0;
}
.inst-foto-nome {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1.2;
}


/* Separador vertical sutil no gap entre texto e foto */
.instrutor-card::before {
  content: '';
  position: absolute;
  top: 10%; left: 50%;
  width: 1px; height: 80%;
  background: linear-gradient(180deg, transparent, rgba(84,196,216,0.15), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.instrutor-img img { width: 100%; height: 100%; object-fit: cover; }
.instrutor-info { padding: 48px 0; }
.inst-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  color: var(--accent-teal);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.instrutor-info h3 {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 800;
  color: var(--accent-teal);
  margin-bottom: 16px;
  line-height: 1.15;
}
.instrutor-info p {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.65;
}
.instrutor-info p strong { color: var(--text-white); font-weight: 700; }
.inst-tools { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.inst-tool { color: var(--accent-teal); font-weight: 600; font-size: 16px; }
/* Overrides do grid de sociais dentro do instrutor — alinha à esquerda e margem top */
.inst-social-grid {
  justify-content: flex-start;
  margin-bottom: 0;
  margin-top: 24px;
}

/* ===== CURSOS SLIDER ===== */
#cursos-slider {
  overflow: hidden;
  padding: 60px 0;
  border-top: 1px solid #202020;
}
.cursos-slider-title {
  text-align: center;
  margin-bottom: 36px;
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 700;
}
.slider-nav-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.slider-overflow { overflow: hidden; flex: 1; cursor: grab; user-select: none; }
.slider-overflow:active { cursor: grabbing; }
.slider-overflow img { pointer-events: none; -webkit-user-drag: none; }
.slider-nav-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(84,196,216,0.25);
  background: rgba(8,8,8,0.85);
  color: var(--text-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, box-shadow .2s, color .2s;
  z-index: 2;
  margin: 0 8px;
}
.slider-nav-btn:hover {
  border-color: var(--accent-teal);
  color: var(--accent-cyan);
  box-shadow: 0 0 14px rgba(30,126,147,0.3);
}
.slider-track {
  display: flex;
  gap: 5px;
  animation: slide 35s linear infinite;
  width: max-content;
  will-change: transform;
}
.slider-track:hover { animation-play-state: paused; }
@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.slide-card {
  width: 220px; flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent-purple);
  background: #080808;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: default;
}
.slide-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(30,126,147,0.25);
}
/* Imagem real da capa do curso — portrait, sem corte */
.slide-card > img {
  width: 100%;
  height: auto;
  display: block;
}
.slide-label {
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #080808;
  line-height: 1.3;
}

/* ===== DEPOIMENTOS ===== */
/* ===== DEPOIMENTOS — GALERIA DE IMAGENS ===== */
#depoimentos { border-top: 1px solid #202020; }
.dep-title { text-align: center; margin-bottom: 16px; }
.dep-stars { text-align: center; font-size: 1.6rem; color: #f5c518; margin-bottom: 8px; }
.dep-title h2 { font-family: var(--font-body); font-size: 35px; font-weight: 700; }
.dep-title h2 span { color: var(--accent-teal); }

.dep-galeria {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px auto 0;
  max-width: 860px;
}
.dep-stage {
  flex: 1;
  position: relative;
  height: 560px;
  overflow: hidden;
  border-radius: 18px;
}
/* Masks de gradiente que suavizam as bordas laterais */
.dep-stage::before,
.dep-stage::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 14%;
  z-index: 10;
  pointer-events: none;
}
.dep-stage::before {
  left: 0;
  background: linear-gradient(to right, #080808 20%, transparent);
}
.dep-stage::after {
  right: 0;
  background: linear-gradient(to left, #080808 20%, transparent);
}
/* Slide base — escondido por padrão */
.dep-slide {
  position: absolute;
  width: 70%;
  top: 0; bottom: 0;
  left: 15%;          /* centralizado: 15% + 70% + 15% = 100% */
  opacity: 0;
  transform: translateX(0) scale(0.78);
  filter: blur(6px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.4,0,0.2,1), filter 0.55s ease;
  pointer-events: none;
  border-radius: 16px;
  overflow: hidden;
}
.dep-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  display: block;
}
/* Slide ATIVO — centro, nítido */
.dep-slide--active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 3;
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 0 36px rgba(30,126,147,0.2);
}
/* Slide ANTERIOR — espia pela esquerda, embaçado */
.dep-slide--prev {
  opacity: 0.6;
  transform: translateX(-72%) scale(0.88);
  filter: blur(3px);
  z-index: 2;
}
/* Próximo slide — espia pela direita, embaçado */
.dep-slide--next {
  opacity: 0.6;
  transform: translateX(72%) scale(0.88);
  filter: blur(3px);
  z-index: 2;
}
.dep-nav {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 1px solid var(--accent-purple);
  border-radius: 50%;
  background: rgba(8,8,8,0.8);
  color: var(--text-white);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s, box-shadow .2s;
  line-height: 1;
}
.dep-nav:hover { border-color: var(--accent-teal); color: var(--accent-teal); box-shadow: 0 0 16px rgba(30,126,147,0.3); }
.dep-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; flex-wrap: wrap; }
.dep-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #303030; border: none; cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.dep-dot.active { background: var(--accent-teal); transform: scale(1.35); }

/* ===== SALÁRIOS ===== */
#salarios { border-top: 1px solid #202020; }
.sal-title { text-align: center; margin-bottom: 48px; }
.sal-title h2 { font-family: var(--font-body); font-size: 35px; font-weight: 700; }
.sal-bars {
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  min-height: 340px;
  margin-bottom: 48px;
}
.sal-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sal-bar-label { font-size: 18px; font-weight: 700; text-align: center; color: var(--text-white); }
.sal-bar {
  width: 140px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #1E7E93 0%, #54C4D8 100%);
  height: 0;
  transition: height 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.sal-bar::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 12px;
}
.sal-bar.animated { height: var(--target-h); }

/* ===== SALARY CARDS (novo design) ===== */
.sal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.sal-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 28px 28px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(30,126,147,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.sal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 32px rgba(30,126,147,0.15);
}
.sal-card--top {
  border-color: rgba(84,196,216,0.3);
  box-shadow: 0 0 40px rgba(84,196,216,0.08);
}
.sal-card--top::before {
  background: radial-gradient(ellipse at top right, rgba(84,196,216,0.1) 0%, transparent 65%);
}
.sal-top-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-cyan));
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.sal-level {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-gray);
  margin-bottom: 14px;
}
.sal-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
  margin-bottom: 24px;
}
.sal-prefix {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-gray);
}
.sal-amount [data-counter] {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #54C4D8 0%, #1E7E93 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.sal-card--top .sal-amount [data-counter] {
  background: linear-gradient(135deg, #a78bfa 0%, #54C4D8 60%, #1E7E93 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.sal-month {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-gray);
  -webkit-text-fill-color: var(--text-gray);
}
.sal-track {
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 14px;
}
.sal-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
  transition: width 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sal-card--top .sal-fill {
  background: linear-gradient(90deg, #a78bfa, var(--accent-teal), var(--accent-cyan));
}
.sal-fill.animated { width: var(--pct); }
.sal-desc {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}
@media (max-width: 600px) {
  .sal-cards { grid-template-columns: 1fr; max-width: 360px; }
  .sal-amount [data-counter] { font-size: 42px; }
}

/* ===== PORQUE APRENDER ===== */
#porque { border-top: 1px solid #202020; }
.porque-inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}

.porque-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 32px rgba(30,126,147,0.12);
}
.porque-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .porque-inner { grid-template-columns: 1fr; gap: 40px; }
  .porque-img   { order: -1; max-width: 480px; margin: 0 auto; }
}

/* ===== PARA QUEM ===== */
#para-quem { border-top: 1px solid #202020; }
.pq-title { text-align: center; margin-bottom: 12px; }
.pq-title h2 { font-family: var(--font-body); font-size: 35px; font-weight: 700; }
.pq-subtitle {
  text-align: center;
  color: var(--text-white);
  margin-bottom: 48px;
  font-size: 18px;
}
.pq-subtitle span { color: var(--accent-teal); font-weight: 700; }
.pq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pq-card {
  background: #080808;
  border: 1px solid rgba(79,37,109,0.6);
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}
.pq-card:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--glow-teal);
  transform: translateY(-6px);
}
/* Ícone moderno */
.pq-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(30,126,147,0.12);
  border: 1px solid rgba(84,196,216,0.2);
  color: var(--accent-cyan);
}
.pq-icon--mid {
  background: rgba(79,37,109,0.2);
  border-color: rgba(138,73,190,0.3);
  color: #b57bee;
}
.pq-icon--top {
  background: rgba(84,196,216,0.12);
  border-color: rgba(84,196,216,0.3);
  color: var(--accent-cyan);
}
.pq-icon svg { width: 24px; height: 24px; }
.pq-card h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 800;
  color: var(--text-white);
  margin: 0;
}
.pq-card p { font-size: 15px; color: #9aa3b2; line-height: 1.7; margin: 0; }

/* ===== TUDO QUE PRECISA ===== */
#tudo { border-top: 1px solid #202020; }
.tudo-card {
  background: #080808;
  border: 1px solid var(--accent-purple);
  border-radius: var(--radius);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  transition: border-color .3s;
}
.tudo-card:hover { border-color: rgba(30,126,147,0.3); }
.tudo-card h2 { font-family: var(--font-body); font-size: 35px; font-weight: 700; line-height: 1.2; margin-bottom: 32px; }
.tudo-list { list-style: none; }
.tudo-list li {
  display: flex; gap: 12px; padding: 15px 0;
  border-bottom: 1px solid #202020;
  font-size: 18px; color: var(--text-white);
  line-height: 1.65;
}
.tudo-list li:last-child { border-bottom: none; }
.tudo-list li .icon { color: var(--accent-teal); flex-shrink: 0; margin-top: 3px; }
.tudo-list li strong { color: var(--accent-teal); }

/* ===== CTA MERCADO ===== */
#cta-mercado { border-top: 1px solid #202020; }
.cta-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-card h2 { font-family: var(--font-body); font-size: 30px; font-weight: 800; color: #000; line-height: 1.2; }
.cta-card h2 span { color: var(--accent-teal); }
.cta-card p { color: #333; font-size: 18px; line-height: 1.65; margin-bottom: 14px; }
.cta-card p strong { color: #000; }

/* ===== COMPLEMENTARES ===== */
#complementares { border-top: 1px solid #202020; }
.comp-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.comp-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #080808; border: 1px solid var(--accent-purple);
  border-radius: 20px; padding: 8px 20px;
  font-size: 14px; color: var(--text-gray); margin-bottom: 16px;
}
.comp-inner h2 { font-family: var(--font-body); font-size: 30px; font-weight: 800; line-height: 1.3; margin-bottom: 24px; }
.comp-inner h2 span { color: var(--accent-teal); }

/* ===== SCROLL VERTICAL CONGELADO ===== */
.comp-scroll-outer {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 20px;
  /* máscara: fade suave topo e base */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%);
}
.comp-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: compScrollDown 14s linear infinite;
}
.comp-scroll-track:hover { animation-play-state: paused; }
@keyframes compScrollDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
/* Card com efeito "congelado" (frosted glass + tint frio) */
.comp-scroll-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(84, 196, 216, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(84, 196, 216, 0.18);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.07);
  transition: border-color .25s, box-shadow .25s;
}
.comp-scroll-card:hover {
  border-color: rgba(84,196,216,0.45);
  box-shadow: 0 0 24px rgba(84,196,216,0.18), 0 4px 24px rgba(0,0,0,0.4);
}
.comp-scroll-card img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  /* tint frio na imagem */
  filter: saturate(0.85) hue-rotate(10deg);
}
.comp-scroll-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comp-scroll-card strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}
.comp-scroll-card span {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}
@media (max-width: 767px) {
  .comp-inner         { grid-template-columns: 1fr; }
  .comp-scroll-outer  { height: 300px; }
}

/* ===== GARANTIA ===== */
#garantia { border-top: 1px solid #202020; }
.gar-card {
  background: #080808; border: 1px solid var(--accent-purple);
  border-radius: var(--radius); padding: 60px 48px;
  display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: center;
}
.gar-badge { text-align: center; }
.gar-badge .badge-circle {
  width: 180px; height: 180px; border-radius: 50%;
  border: 3px solid var(--accent-teal);
  background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 40px rgba(30,126,147,0.2); }
  50%       { box-shadow: 0 0 70px rgba(30,126,147,0.5); }
}
.gar-badge .badge-circle .num {
  font-family: var(--font-body);
  font-size: 4rem; font-weight: 900;
  color: var(--accent-teal); line-height: 1;
}
.gar-badge .badge-circle .word { font-size: 0.9rem; font-weight: 700; color: var(--text-gray); }
.gar-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-dark); border: 1px solid var(--accent-purple);
  border-radius: 20px; padding: 8px 20px;
  font-size: 14px; color: var(--text-gray); margin-bottom: 16px;
}
.gar-info h2 { font-family: var(--font-body); font-size: 35px; font-weight: 700; margin-bottom: 16px; }
.gar-info h2 span { color: var(--accent-teal); }
.gar-info p { color: var(--text-white); font-size: 18px; line-height: 1.65; }

/* ===== FAQ ===== */
#faq { border-top: 1px solid #202020; }
.faq-inner { display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: start; }
.faq-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #080808; border: 1px solid var(--accent-purple);
  border-radius: 20px; padding: 8px 20px;
  font-size: 14px; color: var(--text-gray); margin-bottom: 16px;
}
.faq-inner h2 { font-family: var(--font-body); font-size: 35px; font-weight: 700; margin-bottom: 24px; }
.faq-contact {
  background: #080808; border: 1px solid var(--accent-purple);
  border-radius: var(--radius); padding: 28px;
}
.faq-contact h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.faq-contact p { font-size: 16px; color: var(--text-gray); margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: #080808; border: 1px solid var(--accent-purple);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(30,126,147,0.4); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  background: none; border: none; color: var(--text-white);
  font-family: var(--font-body); font-size: 18px; font-weight: 600;
  cursor: pointer; text-align: left; gap: 16px;
}
.faq-btn .plus {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid var(--accent-purple); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent-teal);
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-btn .plus { transform: rotate(45deg); background: rgba(30,126,147,0.15); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-body { max-height: 400px; padding: 0 24px 18px; }
.faq-body p { font-size: 16px; color: var(--text-gray); line-height: 1.7; }

/* ===== FOOTER ===== */
#footer {
  background: linear-gradient(180deg, #060606 0%, #000000 100%);
  padding: 64px 0 36px;
  text-align: center;
  position: relative;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,126,147,0.5), rgba(84,196,216,0.3), rgba(30,126,147,0.5), transparent);
}

.footer-redes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Grid de cards sociais */
.footer-social-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-social-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 18px 28px;
  min-width: 210px;
  text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
  cursor: pointer;
}
.footer-social-card:hover {
  transform: translateY(-4px);
}
.footer-social-card svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  transition: fill .25s, filter .25s;
}
.footer-social-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  text-align: left;
}
.footer-social-card small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-align: left;
  margin-top: 2px;
}

/* LinkedIn */
.footer-social-linkedin svg { fill: #5b9bd5; }
.footer-social-linkedin:hover {
  border-color: rgba(10,102,194,0.6);
  background: rgba(10,102,194,0.08);
  box-shadow: 0 8px 32px rgba(10,102,194,0.2), 0 0 0 1px rgba(10,102,194,0.15);
}
.footer-social-linkedin:hover svg {
  fill: #0a66c2;
  filter: drop-shadow(0 0 8px rgba(10,102,194,0.7));
}

/* YouTube */
.footer-social-youtube svg { fill: #c0392b; }
.footer-social-youtube:hover {
  border-color: rgba(255,0,0,0.5);
  background: rgba(255,0,0,0.06);
  box-shadow: 0 8px 32px rgba(255,0,0,0.18), 0 0 0 1px rgba(255,0,0,0.12);
}
.footer-social-youtube:hover svg {
  fill: #ff2222;
  filter: drop-shadow(0 0 8px rgba(255,0,0,0.7));
}

/* Instagram */
.footer-social-instagram svg { fill: #c2547a; }
.footer-social-instagram:hover {
  border-color: rgba(225,48,108,0.5);
  background: rgba(225,48,108,0.06);
  box-shadow: 0 8px 32px rgba(225,48,108,0.18), 0 0 0 1px rgba(225,48,108,0.12);
}
.footer-social-instagram:hover svg {
  fill: #e1306c;
  filter: drop-shadow(0 0 8px rgba(225,48,108,0.7));
}

.footer-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(84,196,216,0.3), transparent);
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsivo */
@media (max-width: 600px) {
  .footer-social-grid { gap: 10px; }
  .footer-social-card { min-width: 160px; padding: 14px 18px; gap: 12px; }
  .footer-social-card strong { font-size: 13px; }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ===== WHATSAPP WIDGET (popup) ===== */
.whatsapp-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25d366; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

.whatsapp-tooltip {
  background: #333; color: #fff; font-size: 13px;
  padding: 6px 14px; border-radius: 20px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(8px);
  transition: opacity .25s, transform .25s;
}
.whatsapp-widget:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.whatsapp-popup {
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 290px; overflow: hidden;
  display: none; flex-direction: column;
  animation: wp-slide-in .25s ease;
}
.whatsapp-popup.ativo { display: flex; }
@keyframes wp-slide-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.whatsapp-popup-header {
  background: #25d366; color: #fff;
  padding: 12px 16px; font-weight: 600; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
}
.whatsapp-popup-close {
  background: none; border: none; color: #fff;
  font-size: 18px; cursor: pointer; line-height: 1; padding: 0 2px;
}
.whatsapp-popup-body {
  padding: 14px 16px; color: #333; font-size: 14px; line-height: 1.55;
}
.whatsapp-popup-btn {
  display: block; margin: 0 16px 16px;
  padding: 11px 0; text-align: center;
  background: #25d366; color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: background .2s;
}
.whatsapp-popup-btn:hover { background: #1ebe5d; }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; padding: 60px 24px; }
  .hero-img         { display: none; }
  .badges-grid      { flex-wrap: wrap; }
  .badges-grid .badge-card { flex: 1 1 calc(50% - 3px); min-width: 200px; }
  .numeros-inner    { grid-template-columns: 1fr; }
  .numeros-laptop   { display: none; }
  .planos-grid      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cert-inner       { grid-template-columns: 1fr; }
  .cert-inner h2    { font-size: 26px; }
  .cert-img         { width: 100%; height: auto; }
  .cert-right       { align-items: center; }
  .sirius-logo img  { max-width: 180px; }
  .instrutor-card   { grid-template-columns: 1fr; gap: 32px; }
  .pq-grid          { grid-template-columns: 1fr; }
  .tudo-card        { grid-template-columns: 1fr; }
  .cta-card         { grid-template-columns: 1fr; }
  .comp-inner       { grid-template-columns: 1fr; }
  .comp-row         { grid-template-columns: 1.6fr 1fr 1fr; }
  .comp-col         { padding: 9px 10px; font-size: 12px; align-items: flex-start; }
  .comp-feat-col    { font-size: 12px; padding: 9px 10px; }
  .comp-head .comp-basic-col,
  .comp-head .comp-prem-col  { font-size: 13px; padding: 12px 8px; }
  .comp-price-row .comp-basic-col,
  .comp-price-row .comp-prem-col { padding: 10px 8px; }
  .comp-price-row .comp-basic-col .cv,
  .comp-price-row .comp-prem-col .cv { font-size: 13px; }
  .btn-plan { font-size: 0.65rem; padding: 12px 8px; }

  /* Oculta linhas de preço/botão originais no mobile */
  .comp-hide-mobile     { display: none !important; }
  .comp-footer          { display: none !important; }

  /* Cartões mobile: preço + botão juntos */
  .comp-mobile-cards {
    display: flex; gap: 8px; padding: 12px 8px;
    background: #050e16;
  }
  .comp-mobile-card {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 12px; padding: 14px 10px;
    border-radius: 10px;
  }
  .comp-mobile-basic { background: #041830; border: 1px solid #1a2a3a; }
  .comp-mobile-prem  { background: #062030; border: 1px solid rgba(30,126,147,0.35); }
  .comp-mobile-price {
    text-align: center; font-size: 13px; font-weight: 700;
    color: #fff; line-height: 1.6;
  }
  .comp-mobile-price small { font-size: 11px; color: #b0bec5; font-weight: 400; }
  .comp-mobile-card .btn-plan { font-size: 0.62rem; padding: 11px 8px; margin: 0; }

  /* Selo MEC: posiciona sobre o cabeçalho Premium */
  .comp-badge-mec {
    width: 64px;
    top: -10px;
    right: 0px;
  }
  .gar-card         { grid-template-columns: 1fr; text-align: center; }
  .faq-inner        { grid-template-columns: 1fr; }
  .sal-bars         { flex-direction: column; align-items: center; min-height: auto; }
  .sal-bar          { width: 100%; max-width: 280px; }
  .container        { padding: 0 24px; }
  .instrutor-card   { grid-template-columns: 1fr; gap: 20px; }
  .instrutor-foto   { overflow: visible; }
  .instrutor-foto-frame img { height: auto; max-height: 300px; object-fit: contain; object-position: top center; }
  .instrutor-foto-frame     { max-width: 70%; margin: 0 auto; }
  .instrutor-info   { padding: 24px 0; }
}

@media (max-width: 767px) {
  /* Hero mobile: banner ocupa topo por inteiro, conteúdo começa abaixo com gradiente de transição */
  #hero {
    background-image: url('../uploads/Banner-04-Celular.webp');
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
    /* padding-top empurra conteúdo para baixo da imagem (proporção 2400/5049 ≈ 47.5vw) */
    padding-top: 47.5vw;
    padding-bottom: 40px;
    min-height: unset;
    align-items: flex-start;
    border-bottom: none;
  }
  /* Gradiente vertical: imagem visível no topo → preto suave onde começa o conteúdo */
  #hero::after {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 38vw,
      rgba(0,0,0,0.55) 43vw,
      #000000 50vw,
      #000000 100%
    );
  }
  /* Gradiente na borda inferior do hero para fundir com a próxima seção */
  #hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #000000);
    z-index: 2;
  }
  #hero .hero-inner { padding-top: 0; z-index: 3; position: relative; }
  #hero .hero-content { text-align: center; }
  #hero .hero-logo img { margin: 0 auto; }
  .hero-title     { font-size: 25px; line-height: 1.2em; }
  .hero-subtitle  { font-size: 25px; line-height: 1.2em; }
  .hero-desc      { font-size: 17px; line-height: 1.2em; }
  .btn-primary,
  .btn-secondary,
  .btn-purple     { font-size: 14px; padding: 14px 28px; }
}

@media (max-width: 600px) {
  .badges-grid .badge-card { flex: 1 1 100%; flex-direction: row; }
  .section          { padding: 56px 0; }
  .cv               { font-size: 13px; }
  .btn-primary,
  .btn-purple       { width: 100%; justify-content: center; }
  .tudo-card        { padding: 36px 24px; }
  .cta-card         { padding: 28px 20px; text-align: center; gap: 24px; display: flex; flex-direction: column; }
  .cta-card h2      { text-align: center; font-size: 22px; line-height: 1.3; }
  .cta-card p       { text-align: center; font-size: 15px; }
  .cta-card > div   { width: 100%; }
  .cta-card a       { display: block; }
  .cta-card .btn-purple { width: 100%; justify-content: center; }
  .cert-inner       { gap: 32px; }
  .cert-inner h2    { font-size: 22px; line-height: 1.3; }
  .cert-inner p     { font-size: 15px; }
  .cert-img         { width: 100%; max-width: 100%; height: auto; display: block; }
  .cert-right       { width: 100%; }
  .cert-bullets li  { font-size: 14px; }
  .gar-card         { padding: 40px 24px; }
  .planos-title h2,
  .sal-title h2,
  .dep-title h2,
  .pq-title h2,
  .gar-info h2,
  .faq-inner h2     { font-size: 28px; }
  .slide-card       { width: 180px; }
  .dep-galeria      { gap: 8px; }
  .dep-stage        { height: 400px; }
  .dep-slide        { width: 92%; left: 4%; }
  .dep-slide--prev  { opacity: 0; pointer-events: none; }
  .dep-slide--next  { opacity: 0; pointer-events: none; }
  .dep-slide img    { object-fit: contain; object-position: center; background: #080808; }
  .dep-nav          { width: 36px; height: 36px; font-size: 1rem; }
}

/* =================================================================
   AESTHETIC ENHANCEMENTS — ui-ux-pro-max
   Melhorias: espaçamento, hierarquia visual, profundidade de cards,
   decoração de títulos, seção CTA corrigida, brilho no hero.
   ================================================================= */

/* ---- 1. Gaps de cards — 5px → 16px+ (Material 8dp mínimo) ---- */
.badges-grid  { gap: 16px; }
.pq-grid      { gap: 16px; }
.comp-cards   { gap: 12px; }
.accordion    { gap: 8px; }
.faq-list     { gap: 8px; }

/* ---- 2. Bordas de seção — divisores com gradiente de brilho ---- */
#badges,
#numeros,
#redes,
#video,
#planos,
#ementa,
#certificado,
#instrutor,
#cursos-slider,
#depoimentos,
#salarios,
#para-quem,
#tudo,
#cta-mercado,
#complementares,
#garantia,
#faq,
#footer {
  border-top: 1px solid transparent;
  background-image: none;
  position: relative;
}
#badges::before,
#numeros::before,
#redes::before,
#video::before,
#planos::before,
#ementa::before,
#certificado::before,
#instrutor::before,
#cursos-slider::before,
#depoimentos::before,
#salarios::before,
#para-quem::before,
#tudo::before,
#cta-mercado::before,
#complementares::before,
#garantia::before,
#faq::before,
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--section-divider);
  pointer-events: none;
  z-index: 0;
}

/* ---- 3. Background sutil nos cards (profundidade) ---- */
.badge-card,
.pq-card,
.acc-item,
.faq-item,
.ementa-badge,
.cert-tag,
.gar-tag,
.comp-tag,
.faq-tag {
  background: var(--card-bg);
}

.sal-bars {
  background: var(--card-bg);
  border: 1px solid rgba(79,37,109,0.4);
}

.tudo-card {
  background: var(--card-bg);
}


/* ---- 4. Decoração de títulos de seção (linha gradiente) ---- */
.planos-title,
.sal-title,
.dep-title,
.pq-title,
.cursos-slider-title-wrap {
  position: relative;
}

/* Linha decorativa abaixo dos títulos de seção centralizados */
.planos-title h2::after,
.sal-title h2::after,
.dep-title h2::after,
.pq-title h2::after,
.cursos-slider-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Títulos de seção com alinhamento esquerdo (ementa, cert, faq...) */
.ementa-header h2::after,
.faq-inner h2::after,
.gar-info h2::after,
.comp-inner h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan));
  border-radius: 2px;
  margin: 10px 0 0;
}

/* ---- 5. Hero — glow sutil no título principal ---- */
/* text-shadow omitido pois gradient text + shadow causa artefato visual */

.hero-desc strong {
  text-shadow: 0 0 16px rgba(84,196,216,0.3);
}

/* Linha de brilho no hero levemente mais visível */
.hero-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-teal) 30%, var(--accent-cyan) 50%, var(--accent-teal) 70%, transparent 100%);
  opacity: 0.85;
}

/* ---- 6. CTA Mercado — remover fundo branco que quebra a identidade ---- */
.cta-card {
  background: linear-gradient(135deg, #091520 0%, #04090e 100%);
  border: 1px solid rgba(30,126,147,0.35);
  box-shadow: 0 0 60px rgba(30,126,147,0.08) inset;
}
.cta-card h2 {
  color: var(--text-white);
  font-size: 32px;
}
.cta-card h2 span {
  color: var(--accent-cyan);
  text-shadow: 0 0 12px rgba(84,196,216,0.25);
}
.cta-card p {
  color: var(--text-gray);
}
.cta-card p strong {
  color: var(--text-white);
}

/* ---- 7. Ícones da lista de números — visual mais marcante ---- */
.numeros-list li .icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(30,126,147,0.15);
  border: 1px solid rgba(30,126,147,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent-cyan);
  margin-top: 4px;
}

/* ---- 8. Hover de cards com glow mais expressivo ---- */
.badge-card:hover,
.pq-card:hover,
.comp-card:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--glow-teal-lg);
  transform: translateY(-3px);
}

.acc-item:hover {
  border-color: rgba(84,196,216,0.3);
  box-shadow: 0 0 16px rgba(30,126,147,0.12);
}

.faq-item:hover {
  border-color: rgba(84,196,216,0.3);
}

/* ---- 9. Botão hero — shimmer mais fluido ---- */
@keyframes btn-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.btn-primary {
  background-image: linear-gradient(90deg, #1E7E93, #3d1d5a, #54C4D8, #4F256D, #1E7E93);
  background-size: 300% 200%;
  animation: btn-shimmer 4s ease infinite;
  box-shadow: 0 4px 24px rgba(30,126,147,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 12px 36px rgba(30,126,147,0.5);
}

/* ---- 10. Seção de Depoimentos — estrelas mais polidas ---- */
.dep-stars {
  letter-spacing: 4px;
  filter: drop-shadow(0 0 6px rgba(245,197,24,0.5));
}

/* ---- 11. Footer refinado ---- */
#footer {
  background: linear-gradient(180deg, #060606 0%, #000000 100%);
  padding: 40px 0;
  font-size: 15px;
  color: #4a5568;
}
#footer::before {
  background: linear-gradient(90deg, transparent 0%, rgba(30,126,147,0.4) 30%, rgba(84,196,216,0.25) 50%, rgba(30,126,147,0.4) 70%, transparent 100%);
}

/* ---- 12. Certificado — imagem com borda teal ---- */
.cert-img {
  border: 1px solid rgba(30,126,147,0.25);
  box-shadow: 0 0 50px rgba(30,126,147,0.12);
}

/* ---- 13. Badge cards — padding vertical levemente maior ---- */
.badge-card {
  padding: 28px 24px;
  gap: 20px;
}

/* ---- 14. Seção Garantia — badge circle mais brilhante ---- */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 40px rgba(30,126,147,0.25), 0 0 80px rgba(30,126,147,0.08);
  }
  50% {
    box-shadow: 0 0 70px rgba(30,126,147,0.55), 0 0 120px rgba(30,126,147,0.15);
  }
}
.gar-badge .badge-circle {
  border: 2px solid rgba(30,126,147,0.7);
  box-shadow: 0 0 40px rgba(30,126,147,0.25);
}
.gar-badge .badge-circle .num {
  font-size: 3.6rem;
  background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- 15. Slides de cursos — sombra ao parar hover ---- */
.slide-card:hover {
  box-shadow: 0 12px 32px rgba(30,126,147,0.3);
}

/* ---- Responsivo — manter gaps refinados em mobile ---- */
@media (max-width: 600px) {
  .badges-grid  { gap: 12px; }
  .pq-grid      { gap: 12px; }
  .badge-card   { padding: 20px 16px; gap: 14px; }
}

/* =================================================================
   MODERN LAYOUT — ui-ux-pro-max
   Glassmorphism · Bento Grid · Gradient Mesh · Gradient Text
   ================================================================= */

/* ---- GRADIENT TEXT — titles principais ---- */
.hero-title,
.planos-title h2,
.sal-title h2,
.dep-title h2,
.pq-title h2,
.cursos-slider-title,
.gar-info h2 {
  background: linear-gradient(135deg, #ffffff 0%, #c8eef5 55%, #54C4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Títulos de seções com alinhamento esquerdo */
.ementa-header h2,
.faq-inner h2,
.cert-inner h2,
.tudo-card h2,
.comp-inner h2 {
  background: linear-gradient(135deg, #ffffff 0%, #a8dde8 60%, #54C4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* .cta-card h2 já tem cor #fff — tratamento especial */
.cta-card h2 {
  background: linear-gradient(135deg, #ffffff 0%, #c8eef5 70%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- GLASSMORPHISM CARDS ---- */
.badge-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}
.badge-card:hover {
  background: rgba(30,126,147,0.08);
  border-color: rgba(84,196,216,0.3);
  box-shadow: 0 8px 40px rgba(30,126,147,0.2), inset 0 1px 0 rgba(255,255,255,0.07);
}

.pq-card {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.pq-card:hover {
  background: rgba(30,126,147,0.06);
  border-color: rgba(84,196,216,0.25);
  box-shadow: 0 12px 48px rgba(30,126,147,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-6px);
}

.acc-item {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
}

.faq-item {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
}

.sal-bars {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ---- BENTO GRID — Para Quem ---- */
/* Layout assimétrico: cards 1+2 na linha de cima, card 3 menor */
/* pq-grid — 3 colunas iguais */
.pq-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.pq-card:nth-child(1) {
  grid-row: auto;
  padding: 36px 30px;
  justify-content: flex-start;
}
.pq-card:nth-child(1) h3 { font-size: 19px; }
.pq-card:nth-child(1) p  { font-size: 15px; line-height: 1.7; }
.pq-card:nth-child(1)::after { display: none; }
.pq-card { position: relative; overflow: hidden; }

/* ---- GRADIENT MESH BACKGROUNDS — seções chave ---- */

/* Hero: orb de fundo adicional — apenas desktop (não conflita com mobile ::before) */
@media (min-width: 768px) {
  #hero::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(30,126,147,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
    border-radius: 50%;
  }
}

/* Seção Badges — gradient mesh sutil */
#badges {
  position: relative;
  overflow: hidden;
}
#badges::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(30,126,147,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#badges .container { position: relative; z-index: 1; }

/* Seção Para Quem — mesh */
#para-quem {
  position: relative;
  overflow: hidden;
}
#para-quem::after {
  content: '';
  position: absolute;
  top: 0; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,37,109,0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
#para-quem .container { position: relative; z-index: 1; }

/* Seção Planos — orb de luz de fundo */
#planos::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(30,126,147,0.06) 0%, rgba(79,37,109,0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Seção Depoimentos — mesh roxo */
#depoimentos {
  position: relative;
  overflow: hidden;
}
#depoimentos::after {
  content: '';
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,37,109,0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
#depoimentos .container { position: relative; z-index: 1; }

/* Seção Garantia — orb teal */
#garantia {
  position: relative;
  overflow: hidden;
}
#garantia::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,126,147,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
#garantia .container { position: relative; z-index: 1; }

/* ---- HERO — floating stat chips ---- */
/* Badge flutuante de alunos — inserido via ::before no hero-content */
.hero-content {
  position: relative;
}
/* Chip de prova social no topo */
.hero-supertitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,126,147,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(84,196,216,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-supertitle::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
  animation: blink-dot 1.8s ease-in-out infinite;
}
@keyframes blink-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ---- MODERN SECTION BADGE CHIPS ---- */
/* Tags de seção com glassmorphism */
.cert-tag,
.gar-tag,
.comp-tag,
.faq-tag,
.ementa-badge {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* ---- placeholder removed (dep-card replaced by dep-slide) ---- */
.dep-placeholder-removed {
  display: none;
}

/* ---- TOOL TAGS — glassmorphism ---- */
.tool-tag {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.tool-tag:hover {
  background: rgba(30,126,147,0.1);
  border-color: rgba(84,196,216,0.35);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30,126,147,0.15);
}

/* ---- NUMEROS — estatísticas com visual de metric card ---- */
#numeros { position: relative; overflow: hidden; }
#numeros::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(84,196,216,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
#numeros .container { position: relative; z-index: 1; }

.numeros-list li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .2s, padding-left .2s;
  border-radius: 8px;
  padding-left: 8px;
}
.numeros-list li:hover {
  background: rgba(30,126,147,0.04);
  padding-left: 16px;
}

/* ---- SAL-BAR — gradient mais rico ---- */
.sal-bar {
  background: linear-gradient(180deg, #54C4D8 0%, #1E7E93 60%, #0d4a57 100%);
  box-shadow: 0 0 20px rgba(84,196,216,0.2);
}
.sal-bar::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  height: 40%;
}

/* ---- VIDEO — borda animada ---- */
.video-wrapper {
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 80px rgba(30,126,147,0.12), 0 0 160px rgba(79,37,109,0.06);
  transition: box-shadow .4s;
}
.video-wrapper:hover {
  box-shadow: 0 0 100px rgba(30,126,147,0.2), 0 0 200px rgba(79,37,109,0.08);
}

/* ---- FOOTER — moderno com grid ---- */
#footer {
  padding: 48px 0 32px;
}
#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ---- RESPONSIVE PQ-GRID ---- */
@media (max-width: 900px) {
  .pq-grid { grid-template-columns: 1fr 1fr; }
  .pq-card:nth-child(1) { grid-column: auto; }
}
@media (max-width: 600px) {
  .pq-grid { grid-template-columns: 1fr; }
}
