/* =============================================
   GP TREINAMENTOS — LANDING PAGE STYLES
   Design System: Dark + Gold / Poppins
   Max content width: 1140px
============================================= */

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  /* Brand Colors */
  --gold:            #ecaa3e;
  --gold-hover:      #d4952e;
  --gold-light:      rgba(236, 170, 62, 0.12);
  --gold-mid:        rgba(236, 170, 62, 0.25);
  --gold-glow:       rgba(236, 170, 62, 0.35);

  /* Backgrounds */
  --bg-base:         #0a0a0a;
  --bg-section:      #111111;
  --bg-card:         #1a1a1a;
  --bg-card-2:       #222222;

  /* Borders */
  --border:          #2a2a2a;
  --border-2:        #333333;

  /* Text */
  --text-primary:    #FFFFFF;
  --text-secondary:  #CCCCCC;
  --text-muted:      #999999;
  --text-disabled:   #555555;

  /* Typography */
  --font:            'Poppins', sans-serif;

  /* Shadows */
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:       0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg:       0 8px 24px rgba(0,0,0,0.5);
  --shadow-xl:       0 16px 40px rgba(0,0,0,0.6);
  --shadow-gold:     0 4px 20px rgba(236, 170, 62, 0.35);

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-normal: 0.3s ease;
  --t-slow:   0.5s ease;

  /* Radius */
  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    12px;
  --r-xl:    16px;
  --r-2xl:   24px;
  --r-full:  9999px;

  /* Max width */
  --max-w: 1140px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

ul {
  list-style: none;
}

/* =============================================
   LAYOUT — CONTAINER
============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* Section alternating backgrounds */
.section-dark { background-color: var(--bg-section); }
.section-base { background-color: var(--bg-base); }

/* =============================================
   COMMON SECTION ELEMENTS
============================================= */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.section-heading em {
  color: var(--gold);
  font-style: normal;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 56px;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-normal);
  white-space: nowrap;
  line-height: 1;
}

.btn svg {
  flex-shrink: 0;
  transition: transform var(--t-normal);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background-color: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(236, 170, 62, 0.5);
}

.btn-outline {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.87rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

/* =============================================
   NAVIGATION
============================================= */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t-normal);
  padding: 0;
}

#navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
  background-color: rgba(255,255,255,0.05);
}

.nav-links .nav-cta {
  background-color: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  transition: all var(--t-normal);
  border: 2px solid var(--gold);
}

.nav-links .nav-cta:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-normal);
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background-color: var(--bg-base);
  background-image: url('Assets/building_2_11zon.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 100%),
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(236, 170, 62, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 30%, rgba(10, 10, 10, 0.75) 0%, transparent 70%);
  z-index: 1;
}

/* Noise texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 75vh;
  padding-top: 72px;
}

/* --- Hero Content (left) --- */
.hero-content {
  padding: 60px 0;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: fit-content;
  transition: border-color var(--t-normal);
}

.badge:hover {
  border-color: var(--gold);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-headline em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Hero Image (right) --- */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  overflow: visible;
}

.hero-image-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(236, 170, 62, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-man-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7));
  display: block;
  margin-bottom: -4px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(12px); opacity: 0.3; }
}

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-strip {
  background-color: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--gold-hover);
  border-bottom: 1px solid var(--gold-hover);
}

.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-content span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  flex-shrink: 0;
}

.marquee-dot {
  color: rgba(0,0,0,0.4) !important;
  font-size: 0.6rem !important;
}

/* =============================================
   SECTION 2 — PROBLEMA
============================================= */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.risk-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--t-normal);
  cursor: default;
}

.risk-card:hover {
  border-color: rgba(236, 170, 62, 0.3);
  background-color: var(--bg-card-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.risk-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.risk-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-highlight {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--border-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin: 40px 0 0;
}

.problem-highlight p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem-highlight strong {
  color: var(--text-primary);
}

/* =============================================
   SECTION 3 — SOLUÇÃO
============================================= */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t-normal);
}

.solution-card:hover {
  border-color: rgba(236, 170, 62, 0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.solution-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.solution-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.solution-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* =============================================
   SECTION 4 — MÓDULOS
============================================= */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.module-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-normal);
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  opacity: 0;
  transition: opacity var(--t-normal);
}

.module-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.module-card:hover::before {
  opacity: 1;
}

.module-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(236, 170, 62, 0.15);
  position: absolute;
  top: 20px;
  right: 24px;
}

.module-icon {
  width: 52px;
  height: 52px;
  background-color: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.module-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.module-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.module-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
}

/* =============================================
   SECTION 5 — COMO CONTRATAR
============================================= */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hire-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--t-normal);
}

.hire-card:hover {
  border-color: rgba(236, 170, 62, 0.3);
  box-shadow: var(--shadow-xl);
}

.hire-card-icon {
  width: 64px;
  height: 64px;
  background-color: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.hire-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hire-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* =============================================
   SECTION 6 — INSTRUTOR
============================================= */
.section-instructor {
  background-color: var(--bg-section);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-instructor::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(236, 170, 62, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

/* Image side */
.instructor-image-wrap {
  position: relative;
}

.instructor-img-bg {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: linear-gradient(135deg, var(--gold-light), transparent);
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-2xl);
  z-index: 0;
}

.instructor-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-xl);
}

.instructor-badge {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: var(--gold);
  color: #000;
  padding: 10px 24px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(236, 170, 62, 0.4);
}

/* Content side */
.instructor-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.instructor-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.instructor-heading em {
  color: var(--gold);
  font-style: normal;
}

.instructor-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.instructor-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  margin: 8px 0;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.credential-icon {
  width: 36px;
  height: 36px;
  background-color: var(--gold-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   SECTION 7 — CTA FINAL + FORM
============================================= */
.section-cta-final {
  position: relative;
  background-color: var(--bg-base);
  padding: 100px 0;
  overflow: hidden;
}

.section-cta-final::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 170, 62, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta-final::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 170, 62, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-final-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.cta-final-heading {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.cta-final-heading em {
  color: var(--gold);
  font-style: normal;
}

.cta-final-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.cta-final-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

/* Form Card */
.form-wrap {
  position: sticky;
  top: 100px;
}

.form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: var(--bg-card-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-disabled);
}

.form-group select {
  cursor: pointer;
  color: var(--text-secondary);
}

.form-group select option {
  background-color: var(--bg-card-2);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(236, 170, 62, 0.12);
}

.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background-color: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-disabled);
}

/* =============================================
   SEÇÃO CURSO — 3 Dias de Imersão Prática
============================================= */
.section-curso {
  position: relative;
  padding: 100px 0;
  background: var(--bg-section);
  overflow: hidden;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.5);
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.60) 100%);
}

.section-curso .container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 48px;
}

/* Info Strip */
.curso-info-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.curso-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.curso-info-row-divider {
  width: 80%;
  height: 1px;
  background: var(--border-2);
  margin: 4px 0;
}
.curso-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
}
.curso-divider {
  width: 1px;
  background: var(--border-2);
  align-self: stretch;
  margin: 4px 0;
}
.curso-info-icon { font-size: 1.375rem; }
.curso-info-item div { display: flex; flex-direction: column; }
.curso-info-item strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.curso-info-item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* =============================================
   SEÇÃO CTA INSCRIÇÃO — Não Deixe os Erros
============================================= */
.cta-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.18) saturate(0.5);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.75) 60%, rgba(10,10,10,0.60) 100%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-box {
  display: flex;
  flex-direction: column;
}
.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-title em { color: var(--gold); font-style: normal; }
.cta-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.cta-pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-pain-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pain-x {
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.cta-invest-phrase {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.cta-instructor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 14px 20px;
  overflow: hidden;
}
.cta-instructor-img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.cta-instructor-card div { display: flex; flex-direction: column; }
.cta-instructor-card strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.cta-instructor-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* CTA Box */
.cta-box-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.cta-box-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.cta-box-logo { height: 44px; width: auto; }
.cta-box-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta-dates-block {
  background: var(--gold-light);
  border: 1px solid var(--gold-mid);
  border-radius: var(--r-lg);
  padding: 20px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.date-big {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.date-month {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.cta-details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  text-align: left;
}
.cta-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.cta-main-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
  padding: 18px 20px;
  line-height: 1.3;
  white-space: normal;
  text-align: center;
}
.cta-box-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

/* =============================================
   SCROLL REVEAL (overrides animations.css)
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.risks-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.risks-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.risks-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.risks-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.risks-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.solutions-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.solutions-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

.modules-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.modules-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

.hire-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.hire-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

/* fade-left / fade-right for instructor */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.active {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.15s;
}
.fade-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================= */
@media (max-width: 1024px) {
  .curso-info-item { padding: 12px 16px; }
  .curso-divider { display: none; }

  .hero-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 0;
    min-height: 75vh;
    text-align: center;
    gap: 24px;
  }

  .hero-content {
    padding: 0;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
  }

  .hero-badges {
    align-items: center;
  }

  .hero-sub {
    text-align: center;
  }

  .hero-image-wrap {
    display: none;
  }

  .hero-man-img {
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: -4px;
  }

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

  .solutions-grid,
  .modules-grid,
  .hire-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

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

  .instructor-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .cta-final-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-wrap {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .curso-info-strip { padding: 20px 16px; }
  .curso-info-item { padding: 10px 12px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(20px);
    z-index: 199;
    padding: 40px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    padding: 14px 32px;
    font-size: 0.9rem;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

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

  .hero-man-img {
    max-width: 260px;
  }

  .hero-image-wrap {
    min-height: unset;
  }

  .btn {
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.8rem;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 360px;
  }

  .section-heading {
    font-size: 1.8rem;
  }

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

  .solutions-grid,
  .modules-grid,
  .hire-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .instructor-heading {
    font-size: 1.8rem;
  }

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

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

  .form-card {
    padding: 28px 20px;
  }

  .module-card {
    padding: 28px 20px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
============================================= */
@media (max-width: 480px) {
  .cta-box-inner { padding: 28px 20px; }
  .date-big { font-size: 1.75rem; }
  .curso-info-strip { gap: 4px; }
  .curso-info-row { flex-direction: column; align-items: stretch; }
  .curso-info-item { width: 100%; }
  .cta-main-btn { font-size: 0.8125rem; }

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

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-man-img {
    max-width: 220px;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 16px;
  }
}
