/* =============================================
   VARIÁVEIS E RESET
   ============================================= */
:root {
  /* Cores principais */
  --azul-escuro:    #0d2346;
  --azul-medio:     #1a3f7a;
  --azul-claro:     #1a5fad;
  --azul-brilho:    #2176d9;
  --vermelho:       #e2463a;
  --laranja:        #e8820c;
  --laranja-hover:  #d06a00;
  --verde-success:  #2e7d32;
  --branco:         #ffffff;
  --cinza-100:      #f4f6fb;
  --cinza-200:      #e8edf5;
  --cinza-300:      #d0d9e8;
  --cinza-500:      #7a8aaa;
  --cinza-700:      #3d4f6e;
  --texto-principal:#0d1f3c;
  --texto-sec:      #4a5a7a;

  /* Tipografia */
  --font:           'Inter', sans-serif;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(13,35,70,.08);
  --shadow-md:  0 6px 24px rgba(13,35,70,.14);
  --shadow-lg:  0 16px 48px rgba(13,35,70,.20);
  --shadow-cta: 0 6px 32px rgba(232,130,12,.45);

  /* Raios */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* Transição */
  --trans: .25s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--texto-principal);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BARRA DE URGÊNCIA
   ============================================= */
.urgency-bar {
  background: linear-gradient(90deg, var(--vermelho), #c0392b);
  color: var(--branco);
  text-align: center;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.urgency-icon { font-size: .8rem; opacity: .9; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--azul-escuro);
  padding: 16px 0;
  border-bottom: 2px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--branco);
}
.logo-icon {
  font-size: 1.6rem;
  color: var(--laranja);
}
.logo-text {
  font-size: 1.1rem;
  color: var(--branco);
}
.logo-text strong { font-weight: 700; }

.header-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--branco);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .02em;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(145deg, var(--azul-escuro) 0%, var(--azul-medio) 60%, #1e4d9e 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Decoração de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(33,118,217,.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232,130,12,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* --- Conteúdo do Hero --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,12,.15);
  border: 1px solid rgba(232,130,12,.45);
  color: #f59e2e;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--branco);
  margin-bottom: 20px;
}
.hero-headline .highlight {
  color: #f59e2e;
  position: relative;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
}
.hero-benefits li i {
  color: #4cdb88;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.proof-avatars {
  display: flex;
  gap: -6px;
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--azul-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--branco);
  margin-right: -8px;
}

/* --- Formulário do Hero --- */
.hero-form-wrapper { position: relative; z-index: 2; }

.form-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.form-card-header {
  background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
  padding: 28px 32px 24px;
  text-align: center;
}
.form-icon-wrap {
  width: 52px; height: 52px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
  color: var(--branco);
  box-shadow: 0 4px 16px rgba(232,130,12,.4);
}
.form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

.lead-form {
  padding: 28px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--cinza-700);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-label i { color: var(--azul-claro); font-size: .9rem; }
.required { color: var(--vermelho); }

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cinza-300);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--texto-principal);
  background: var(--cinza-100);
  transition: border-color var(--trans), box-shadow var(--trans), background var(--trans);
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--azul-claro);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(26,95,173,.15);
}
.form-input.error { border-color: var(--vermelho); background: #fff5f5; }
.form-input.valid { border-color: var(--verde-success); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a8aaa' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field-error {
  font-size: .8rem;
  color: var(--vermelho);
  min-height: 18px;
  display: block;
}

/* --- Botão CTA --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--laranja), #d06a00);
  color: var(--branco);
  font-family: var(--font);
  font-weight: 800;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), opacity var(--trans);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); }
.btn-cta:active { transform: translateY(0); }

.btn-cta-large {
  padding: 16px 28px;
  font-size: 1rem;
  letter-spacing: .02em;
  width: 100%;
  text-align: center;
}
.btn-arrow { font-size: .85rem; opacity: .8; }

.btn-cta-outline {
  background: transparent;
  border: 2px solid #ff0000;
  color: #ff0000;
  padding: 12px 24px;
  font-size: .95rem;
}
.btn-cta-outline i { color: #ff0000; }
.btn-cta-outline:hover {
  background: #ff0000;
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,0,0,.35);
}
.btn-cta-outline:hover i { color: var(--branco); }

.btn-cta-white {
  background: linear-gradient(135deg, var(--laranja), #d06a00);
}

/* Estado loading do botão */
.btn-cta.loading { opacity: .8; cursor: not-allowed; pointer-events: none; }
.btn-cta.loading .btn-spinner { display: inline-block; }
.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--branco);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .8rem;
  color: var(--cinza-500);
  margin-top: 4px;
}
.form-trust i { color: var(--verde-success); }

/* --- Mensagem de sucesso --- */
.success-message {
  padding: 40px 32px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.success-message[hidden] { display: none !important; }
.success-icon {
  font-size: 3.5rem;
  color: var(--verde-success);
  animation: pop .4s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-message h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--verde-success);
}
.success-message p {
  font-size: .95rem;
  color: var(--texto-sec);
  max-width: 300px;
  line-height: 1.6;
}
#countdown {
  color: var(--laranja);
  font-size: 1.15rem;
  font-weight: 800;
}

/* =============================================
   SECTION HELPERS
   ============================================= */
section { padding: 80px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cinza-200);
  color: var(--azul-claro);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-tag.light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--texto-principal);
  margin-bottom: 16px;
}
.section-title.light { color: var(--branco); }

.section-desc {
  font-size: 1.05rem;
  color: var(--texto-sec);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,.8); }

/* =============================================
   PARA QUEM É ESSA AULA
   ============================================= */
.for-who {
  background: var(--cinza-100);
  padding: 80px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cinza-200);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  text-align: center;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--azul-brilho);
}

.who-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--azul-claro), var(--azul-medio));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--branco);
  box-shadow: 0 4px 14px rgba(26,95,173,.25);
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--texto-principal);
  margin-bottom: 8px;
}
.who-card p {
  font-size: .88rem;
  color: var(--texto-sec);
  line-height: 1.6;
}

/* =============================================
   O QUE VOCÊ VAI APRENDER
   ============================================= */
.learning {
  background: linear-gradient(145deg, var(--azul-escuro) 0%, var(--azul-medio) 100%);
  padding: 80px 0;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.learning-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background var(--trans), transform var(--trans);
}
.learning-item:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.learning-number {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--laranja);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
  color: var(--branco);
  letter-spacing: .02em;
}

.learning-content h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 6px;
  line-height: 1.35;
}
.learning-content p {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.learning-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.learning-cta .btn-cta-large { max-width: 440px; }

.cta-microcopy {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =============================================
   IMPORTÂNCIA DO TEMA
   ============================================= */
.importance { background: var(--branco); }

.importance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.importance-text p {
  font-size: .97rem;
  color: var(--texto-sec);
  line-height: 1.75;
  margin-bottom: 16px;
}
.importance-text p:last-child { margin-bottom: 0; }
.importance-text strong { color: var(--texto-principal); }

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

.stat-card {
  background: var(--cinza-100);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--cinza-200);
  transition: transform var(--trans);
}
.stat-card:hover { transform: translateY(-3px); }

.stat-card.highlight-stat {
  background: linear-gradient(135deg, var(--vermelho), #c0392b);
  border-color: transparent;
}
.stat-card.highlight-stat .stat-number { color: var(--branco); }
.stat-card.highlight-stat .stat-label { color: rgba(255,255,255,.85); }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--azul-medio);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .8rem;
  color: var(--texto-sec);
  line-height: 1.5;
}

/* =============================================
   DESCRIÇÃO DA AULA
   ============================================= */
.course-desc { background: var(--cinza-100); }

.course-desc-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: center;
}

.course-desc-text p {
  font-size: .97rem;
  color: var(--texto-sec);
  line-height: 1.75;
  margin-bottom: 16px;
}
.course-desc-text p:last-child { margin-bottom: 0; }
.course-desc-text strong { color: var(--texto-principal); }

/* Thumbnail de vídeo */
.course-video-thumb { position: relative; }
.video-thumb-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: block;
  text-decoration: none;
}
.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.video-thumb-inner:hover .video-thumb-img {
  transform: scale(1.04);
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 64px; height: 64px;
  background: var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--branco);
  box-shadow: 0 4px 20px rgba(232,130,12,.5);
  transition: transform var(--trans), box-shadow var(--trans);
}
.video-thumb-inner:hover .video-play-btn {
  transform: translate(-50%, -55%) scale(1.1);
  box-shadow: 0 6px 28px rgba(232,130,12,.65);
}
.video-play-btn i { margin-left: 4px; }

.video-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(13,35,70,.95), transparent);
  padding: 20px 20px 16px;
}
.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--laranja);
  color: var(--branco);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.video-thumb-label p {
  color: var(--branco);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
}

/* =============================================
   AUTORIDADE
   ============================================= */
.authority {
  background: var(--branco);
  border-top: 1px solid var(--cinza-200);
}

.authority-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: center;
}

.authority-avatar-wrapper { position: relative; text-align: center; padding-bottom: 20px; }

.authority-photo-wrap {
  width: 220px; height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 12px 40px rgba(13,35,70,.28);
  border: 4px solid var(--cinza-200);
  background: linear-gradient(135deg, var(--azul-medio), var(--azul-escuro));
}

.authority-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.authority-photo-wrap:hover .authority-photo {
  transform: scale(1.04);
}

.authority-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-medio), var(--azul-escuro));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: rgba(255,255,255,.6);
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(13,35,70,.25);
  border: 5px solid var(--cinza-200);
}

.authority-badge {
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--laranja);
  color: var(--branco);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

.authority-lead {
  font-size: 1rem;
  color: var(--azul-claro);
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: -4px;
}
.authority-text p {
  font-size: .97rem;
  color: var(--texto-sec);
  line-height: 1.75;
  margin-bottom: 16px;
}
.authority-text p strong { color: var(--texto-principal); }

.authority-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.auth-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: var(--texto-principal);
}
.auth-highlight i {
  width: 22px; height: 22px;
  background: rgba(46,125,50,.1);
  color: var(--verde-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* =============================================
   CTA FINAL
   ============================================= */
.final-cta {
  background: linear-gradient(145deg, var(--azul-escuro) 0%, #0f2d56 60%, var(--azul-medio) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,130,12,.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,130,12,.2);
  border: 1px solid rgba(232,130,12,.4);
  color: #f59e2e;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 20px;
}

.final-cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--branco);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.final-cta .btn-cta-large { max-width: 440px; margin: 0 auto; }

.final-cta-micro {
  margin-top: 14px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =============================================
   RODAPÉ
   ============================================= */
.site-footer {
  background: #07152a;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
}
.footer-logo i { color: var(--laranja); font-size: 1.4rem; }
.footer-logo strong { font-weight: 700; color: var(--branco); }

.footer-privacy {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  max-width: 600px;
  line-height: 1.65;
  display: flex;
  gap: 8px;
}
.footer-privacy i { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,.35); }

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  margin-top: 4px;
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =============================================
   RESPONSIVO — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-form-wrapper { max-width: 500px; }

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

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

  .course-desc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .course-video-thumb { max-width: 480px; }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .authority-avatar-wrapper { width: 240px; margin: 0 auto; }
  .authority-photo-wrap { width: 200px; height: 240px; }
  .auth-highlight { justify-content: center; }

  .importance-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVO — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  .hero { padding: 48px 0 56px; }

  .hero-headline { font-size: 1.55rem; }
  .hero-subheadline { font-size: .97rem; }

  .hero-form-wrapper { max-width: 100%; }
  .form-card-header { padding: 22px 24px 18px; }
  .lead-form { padding: 22px 24px 20px; }
  .success-message { padding: 32px 24px; }

  .who-grid { grid-template-columns: 1fr; }
  .who-card { text-align: left; display: flex; align-items: flex-start; gap: 16px; padding: 20px; }
  .who-icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }

  .learning-grid { grid-template-columns: 1fr; }
  .learning-item { padding: 18px; }

  .importance-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-number { font-size: 1.6rem; }

  .course-desc-grid { grid-template-columns: 1fr; }

  .authority-grid { grid-template-columns: 1fr; }
  .authority-avatar { width: 140px; height: 140px; font-size: 3.5rem; }

  .final-cta { padding: 56px 0; }

  .header-badge { display: none; }

  .urgency-bar { font-size: .8rem; }
}

/* =============================================
   RESPONSIVO — MOBILE PEQUENO (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-headline { font-size: 1.4rem; }

  .form-card-header { padding: 18px 18px 14px; }
  .lead-form { padding: 18px 18px 16px; gap: 14px; }

  .btn-cta-large { font-size: .92rem; padding: 15px 20px; }

  .importance-stats { grid-template-columns: 1fr; }

  .learning-item { gap: 14px; }
  .learning-number { width: 36px; height: 36px; font-size: .75rem; }
}
