/* =========================================================
   GP TREINAMENTOS — LANDING PAGE STYLES
   Design System: Dark Theme · Gold Accent · Poppins
========================================================= */

/* ===========================
   CSS TOKENS
=========================== */
:root {
  --color-brand-gold:         #ecaa3e;
  --color-brand-gold-hover:   #d4952e;
  --color-brand-gold-light:   rgba(236, 170, 62, 0.10);
  --color-brand-gold-mid:     rgba(236, 170, 62, 0.25);
  --color-brand-gold-glow:    rgba(236, 170, 62, 0.18);

  --color-bg-base:    #0a0a0a;
  --color-bg-section: #111111;
  --color-bg-card:    #181818;
  --color-bg-card-2:  #1f1f1f;
  --color-border:     #252525;
  --color-border-2:   #303030;

  --color-text-primary:   #FFFFFF;
  --color-text-secondary: #CCCCCC;
  --color-text-muted:     #888888;
  --color-text-disabled:  #444444;

  --color-danger:     #ff5555;
  --color-danger-bg:  rgba(255, 85, 85, 0.08);

  --font-family: 'Poppins', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-3xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:   0 16px 56px rgba(0,0,0,0.7);
  --shadow-gold: 0 6px 28px rgba(236, 170, 62, 0.35);

  --transition-fast:   0.15s ease;
  --transition-base:   0.3s ease;
  --transition-slow:   0.5s ease;

  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

em {
  font-style: normal;
  color: var(--color-brand-gold);
}

/* ===========================
   LAYOUT UTILITIES
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.pos-relative {
  position: relative;
  z-index: 1;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-gold {
  background: var(--color-brand-gold);
  color: #0a0a0a;
}

.btn-gold:hover {
  background: var(--color-brand-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-lg {
  padding: 16px 44px;
  font-size: 1rem;
}

.btn-xl {
  padding: 20px 60px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 72px;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

/* ===========================
   SECTION COMMONS
=========================== */
.section {
  position: relative;
  padding: 110px 0;
}

.section-dark {
  background-color: var(--color-bg-section);
}

.section-medium {
  background-color: var(--color-bg-card);
}

.section-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg-section) 0%,
    rgba(17,17,17,0.80) 40%,
    rgba(17,17,17,0.80) 60%,
    var(--color-bg-section) 100%
  );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 14px;
}

.section-h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.cta-lead {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: var(--color-bg-base);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: -160px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(236,170,62,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 20%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 48px;
  min-height: 100vh;
  padding: 120px 0 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-self: center;
  padding-bottom: 80px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-brand-gold-light);
  border: 1px solid rgba(236,170,62,0.22);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-brand-gold);
  width: fit-content;
  letter-spacing: 0.01em;
}

.hero-h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 560px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.78;
  max-width: 500px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-img-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(236,170,62,0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.hero-img {
  max-height: 85vh;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
}

/* ===========================
   TICKER
=========================== */
.ticker-wrapper {
  background: var(--color-brand-gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}

.ticker-track span {
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  flex-shrink: 0;
}

.t-sep {
  opacity: 0.35;
}

/* ===========================
   PROBLEM SECTION
=========================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.problem-card {
  grid-column: span 2;
  background: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--color-brand-gold);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

/* Last two cards centered in 6-col grid */
.problem-card--center:nth-child(4) { grid-column: 2 / span 2; }
.problem-card--center:nth-child(5) { grid-column: 4 / span 2; }

.problem-card:hover {
  border-left-color: var(--color-danger);
  border-color: rgba(255,85,85,0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(255,85,85,0.08);
}

.problem-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.problem-card h3 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.45;
  color: var(--color-text-primary);
}

.problem-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.problem-highlight {
  color: var(--color-danger) !important;
  font-weight: 600;
  font-style: italic;
}

/* ===========================
   SOLUTION SECTION
=========================== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-content .section-tag {
  display: block;
  margin-bottom: 10px;
}

.solution-content .section-h2 {
  text-align: left;
  margin-bottom: 8px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.benefit-item:hover {
  background: var(--color-brand-gold-light);
  border-color: rgba(236,170,62,0.15);
}

.check {
  color: var(--color-brand-gold);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.img-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.img-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.img-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(236,170,62,0.3);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-brand-gold);
}

/* ===========================
   COURSE SECTION
=========================== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.course-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 36px 28px;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-border);
  transition: background var(--transition-base);
}

.course-card--featured::before {
  background: var(--color-brand-gold);
}

.course-card--featured {
  border-color: rgba(236,170,62,0.2);
  background: linear-gradient(160deg, rgba(236,170,62,0.06) 0%, var(--color-bg-card) 60%);
}

.course-card:hover {
  border-color: rgba(236,170,62,0.3);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.course-card:hover::before {
  background: var(--color-brand-gold);
}

.course-day-badge {
  display: inline-block;
  background: var(--color-brand-gold);
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.course-card-line {
  width: 32px;
  height: 2px;
  background: var(--color-brand-gold);
  opacity: 0.4;
  margin-bottom: 16px;
}

.course-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.course-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.course-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.course-topics span {
  background: var(--color-bg-card-2);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* Bonus Section */
.bonus-section {
  background: var(--color-bg-card-2);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-2xl);
  padding: 40px;
}

.bonus-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}

.bonus-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 6px;
}

.bonus-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.bonus-instructor-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(236,170,62,0.3);
}

.bonus-instructor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bonus-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: border-color var(--transition-fast);
}

.bonus-item:hover {
  border-color: rgba(236,170,62,0.25);
}

.bonus-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===========================
   REAL CASES SECTION
=========================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.case-card {
  grid-column: span 2;
  background: var(--color-bg-card-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 26px 22px;
  transition: transform var(--transition-base), border-color var(--transition-base);
  position: relative;
}

.case-card--center:nth-child(4) { grid-column: 2 / span 2; }
.case-card--center:nth-child(5) { grid-column: 4 / span 2; }

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}

.case-card:hover {
  border-color: rgba(236,170,62,0.3);
  transform: translateY(-4px);
}

.case-card:hover::before {
  background: var(--color-brand-gold);
}

.case-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 10px;
}

.case-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.case-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cases-statement {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--color-bg-card-2);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-2xl);
  padding: 40px;
}

.cases-img-wrap {
  flex-shrink: 0;
  width: 160px;
}

.cases-img-wrap img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.cases-text p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===========================
   INSTRUCTOR SECTION
=========================== */
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.instructor-img-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.instructor-img-wrap {
  position: relative;
}

.instructor-img-wrap img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.instructor-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(236,170,62,0.3);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-brand-gold);
}

.instructor-extra-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 220px;
}

.instructor-extra-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.instructor-content .section-tag {
  display: block;
  margin-bottom: 10px;
}

.instructor-name {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 10px;
}

.instructor-title {
  font-size: 0.93rem;
  color: var(--color-brand-gold);
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 28px;
}

.instructor-trajectory {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 24px;
}

.trajectory-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.trajectory-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.traj-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  padding: 6px 0;
}

.traj-step--gold {
  color: var(--color-brand-gold);
  font-weight: 700;
}

.traj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-2);
  flex-shrink: 0;
}

.traj-dot--gold {
  background: var(--color-brand-gold);
  box-shadow: 0 0 8px rgba(236,170,62,0.5);
}

.traj-arrow {
  font-size: 0.75rem;
  color: var(--color-text-disabled);
  padding-left: 20px;
  line-height: 1;
}

.instructor-trust {
  background: var(--color-brand-gold-light);
  border: 1px solid var(--color-brand-gold-mid);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 28px;
}

.trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-brand-gold);
  margin-bottom: 8px;
}

.instructor-trust p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===========================
   GUARANTEES SECTION
=========================== */
.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-bg-card-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.guarantee-item:hover {
  border-color: rgba(236,170,62,0.3);
  background: var(--color-brand-gold-light);
  transform: translateY(-4px);
}

.g-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ===========================
   CTA FINAL
=========================== */
.cta-final {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-base);
  padding: 110px 0;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 60%, rgba(236,170,62,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta-h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 14px 0 22px;
}

.cta-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

.risk-list {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 32px;
}

.risk-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.risk-x {
  color: var(--color-danger);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cta-invest {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-vagas {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}

.vagas-badge {
  display: inline-block;
  background: rgba(236,170,62,0.12);
  border: 1px solid rgba(236,170,62,0.35);
  color: var(--color-brand-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.cta-vagas p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 400px;
  text-align: center;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 38px;
  width: auto;
}

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

/* ===========================
   RESPONSIVE — TABLET (≤ 1024px)
=========================== */
@media (max-width: 1024px) {

  .nav-inner { padding: 0 28px; }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 0 0;
    gap: 0;
  }
  .hero-left {
    padding-bottom: 60px;
    align-self: auto;
  }
  .hero-right {
    order: -1;
    justify-content: center;
  }
  .hero-img {
    max-height: 55vw;
  }
  .hero-glow {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .solution-content .section-h2,
  .solution-content .section-tag { text-align: center; }
  .benefit-list { align-items: stretch; }
  .solution-content > .reveal:last-child { text-align: center; }

  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .instructor-img-col {
    flex-direction: row;
    gap: 16px;
  }
  .instructor-img-wrap { flex: 1; }
  .instructor-extra-img { flex: 0.5; height: auto; }

  .problem-grid,
  .cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .problem-card { grid-column: span 2; }
  .problem-card--center:nth-child(4),
  .problem-card--center:nth-child(5) {
    grid-column: span 2;
  }
  .case-card { grid-column: span 2; }
  .case-card--center:nth-child(4),
  .case-card--center:nth-child(5) {
    grid-column: span 2;
  }

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

/* ===========================
   RESPONSIVE — MOBILE (≤ 640px)
=========================== */
@media (max-width: 640px) {

  .nav-inner { padding: 0 20px; }
  .nav-logo img { height: 38px; }

  .container { padding: 0 16px; }

  .section { padding: 72px 0; }

  .hero {
    min-height: auto;
  }
  .hero-grid {
    padding: 100px 0 0;
    min-height: auto;
  }
  .hero-left {
    padding-bottom: 60px;
    text-align: center;
    align-items: center;
  }
  .hero-h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); max-width: 100%; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-badges { gap: 8px; align-items: center; }
  .badge { font-size: 0.72rem; padding: 7px 12px; }
  .hero-right {
    display: none;
  }

  .section-header { margin-bottom: 40px; }
  .section-h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }

  .problem-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }
  .problem-card,
  .case-card {
    grid-column: span 1 !important;
  }

  .course-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-header { flex-direction: column; align-items: flex-start; }
  .bonus-instructor-img { display: none; }

  .cases-statement {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .cases-img-wrap { width: 120px; }
  .cases-img-wrap img { width: 120px; height: 120px; }

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

  .instructor-img-col { flex-direction: column; width: 100%; min-width: 0; }
  .instructor-img-wrap { width: 100%; min-width: 0; }
  .instructor-img-wrap img { width: 100%; height: auto; }
  .instructor-extra-img { height: 200px; }
  .instructor-grid { overflow: hidden; }
  .instructor-content {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .instructor-trajectory,
  .instructor-trust {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .instructor-content .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .cta-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 4px;
  }
  .risk-list {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }
  .risk-list li { box-sizing: border-box; }
  .cta-invest { max-width: 100%; box-sizing: border-box; }
  .cta-vagas { width: 100%; display: flex; box-sizing: border-box; }
  .cta-vagas p { max-width: 100%; box-sizing: border-box; word-break: break-word; }
  .btn-xl { padding: 16px 36px; font-size: 0.95rem; }

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

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

.curso-info-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 28px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-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(--color-border-2);
  margin: 4px 0;
}

.curso-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
}

.curso-divider {
  width: 1px;
  background: var(--color-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(--color-text-primary);
  line-height: 1.3;
}

.curso-info-item span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* ===========================
   SECTION CTA RETENÇÕES — Não Deixe os Erros em Retenções
=========================== */
.section-cta-retencoes {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--color-bg-base);
}

.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);
}

.section-cta-retencoes .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;
}

.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(--color-brand-gold); font-style: normal; }

.cta-sub {
  font-size: 1.0625rem;
  color: var(--color-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(--color-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(--color-brand-gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 3px solid var(--color-brand-gold);
}

.cta-instructor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-xl);
  padding: 14px 20px;
  overflow: hidden;
}

.cta-instructor-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid var(--color-brand-gold);
}

.cta-instructor-card div { display: flex; flex-direction: column; }

.cta-instructor-card strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.cta-instructor-card span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.cta-box-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-2);
  border-radius: var(--radius-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(--color-brand-gold) 50%, transparent 100%);
  border-radius: var(--radius-2xl) var(--radius-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(--color-text-muted);
}

.cta-dates-block {
  background: var(--color-brand-gold-light);
  border: 1px solid var(--color-brand-gold-mid);
  border-radius: var(--radius-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(--color-brand-gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.date-month {
  font-size: 0.9375rem;
  color: var(--color-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(--color-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(--color-text-muted);
  line-height: 1.65;
  text-align: center;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .curso-info-item { padding: 12px 16px; }
  .curso-divider { display: none; }
}

@media (max-width: 768px) {
  .section-curso,
  .section-cta-retencoes { padding: 72px 0; }

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

  .curso-info-strip { padding: 20px 16px; }
  .curso-info-item { padding: 10px 12px; }
}

@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; }
}
