/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Colors */
  --bg-primary: #020813;
  --bg-secondary: #051022;
  --bg-card: #0b1931;
  --bg-card-hover: #122342;
  
  --color-blue: #4f75ff;
  --color-blue-hover: #7191ff;
  --color-orange: #fe6a00;
  --color-orange-glow: rgba(254, 106, 0, 0.4);
  
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(49, 93, 254, 0.4);
  
  /* Typography */
  --font-headers: 'Bebas Neue', sans-serif;
  --font-body: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
}

/* OKLCH Gradient supports */
:root {
  --in-oklab: ;
}
@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Header Utilities */
.section-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-blue);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(79, 117, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(79, 117, 255, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: 8px;
}

.btn-glow:hover {
  box-shadow: 0 0 30px rgba(79, 117, 255, 0.5);
}

/* Links */
.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--color-blue);
  font-size: 1rem;
  margin-top: 16px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
}

.text-link .arrow-symbol {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.text-link:hover .arrow-symbol {
  transform: translateX(4px);
}

/* Tags/Badges */
.badge-tag {
  display: inline-block;
  background-color: rgba(254, 106, 0, 0.1);
  border: 1px solid rgba(254, 106, 0, 0.3);
  color: var(--color-orange);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(9, 9, 11, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-svg {
  color: var(--text-primary);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.nav-item:hover {
  color: var(--text-primary);
}

.header-cta {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(79, 117, 255, 0.28);
}

.header-cta:hover {
  background-color: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(79, 117, 255, 0.45);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.section-hero {
  padding-top: 110px;
  padding-bottom: 150px;
  background: linear-gradient(to right, #020813 35%, rgba(2, 8, 19, 0.95) 50%, rgba(2, 8, 19, 0.6) 65%, transparent 80%), url('assets/hero_redesign.png') no-repeat right bottom 90px / auto calc(100% - 90px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  min-height: 720px;
  display: flex;
  align-items: center;
}

/* Abstract tactical lines overlay using gradients */
.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(49, 93, 254, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-badge-container {
  display: inline-block;
  margin-bottom: 16px;
}

.hero-badge {
  background-color: var(--color-orange);
  color: #ffffff;
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 6px 24px;
  display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-title-main {
  font-family: var(--font-headers);
  font-size: 7.5rem;
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-main {
  font-family: var(--font-headers);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-desc-main {
  font-size: 1.05rem;
  color: #e4e4e7;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-desc-main strong {
  color: var(--color-orange);
  font-weight: 600;
}

/* 4 Pillars Grid inside Hero */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-pillar-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pillar-icon {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.hero-pillar-title {
  font-family: var(--font-headers);
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero-pillar-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding-left: 28px;
}

/* Paulo Candiota card in Hero */
.hero-instructor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(11, 25, 49, 0.4);
  border: 1px solid rgba(254, 106, 0, 0.2);
  padding: 16px 20px;
  border-radius: 8px;
  max-width: 580px;
  backdrop-filter: blur(8px);
}

.hero-inst-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-orange);
}

.hero-inst-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-inst-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-orange);
  letter-spacing: 0.05em;
}

.hero-inst-bio {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hero-right-space {
  height: 100%;
}


/* Sub-Hero Strip bottom banner */
.hero-bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(2, 8, 19, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  z-index: 10;
}

.strip-flex {
  display: flex;
  align-items: center;
  gap: 28px;
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
}

.strip-item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.strip-icon-play,
.strip-icon-book,
.strip-icon-user {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  background-color: rgba(254, 106, 0, 0.05);
  flex-shrink: 0;
}

.strip-icon-play svg {
  margin-left: 2px;
}

.strip-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.strip-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.35;
}

.strip-cta-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: var(--color-blue);
  padding: 10px 20px;
  border-radius: 6px;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.strip-cta-block:hover {
  background-color: var(--color-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(79, 117, 255, 0.4);
}

.strip-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cta-top {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.cta-bottom {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.strip-cta-arrow {
  color: var(--color-orange);
  background-color: #ffffff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.strip-cta-block:hover .strip-cta-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   O MERCADO MUDOU (SHIFT SECTION)
   ========================================================================== */
.section-market-shift {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.shift-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.shift-image-wrapper {
  position: relative;
}

.shift-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.shift-content {
  max-width: 580px;
}

.shift-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 24px;
}

.shift-intro {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 20px;
  border-left: 3px solid var(--color-orange);
  padding-left: 20px;
}

.shift-detail {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
}

/* ==========================================================================
   PARA QUEM É (BENTO GRID)
   ========================================================================== */
.section-target {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.target-header {
  margin-bottom: 50px;
  text-align: center;
}

.target-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
}

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

.bento-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
}

.bento-icon-wrapper {
  color: var(--color-orange);
  margin-bottom: 24px;
  display: inline-flex;
  padding: 12px;
  background-color: rgba(254, 106, 0, 0.06);
  border-radius: 8px;
}

.bento-card-title {
  font-family: var(--font-headers);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-card-text {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* ==========================================================================
   TRANSFORMAÇÃO
   ========================================================================== */
.section-transformation {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.transformation-content {
  max-width: 580px;
}

.transformation-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 20px;
}

.transformation-text {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.transformation-detail {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.transformation-image-wrapper {
  position: relative;
}

.transformation-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   COMPETÊNCIAS (PILLARS)
   ========================================================================== */
.section-curriculum {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.curriculum-header {
  margin-bottom: 60px;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.curriculum-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
}

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

.pillar-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  border-color: var(--border-color-hover);
}

.pillar-num {
  font-family: var(--font-headers);
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.pillar-card:hover .pillar-num {
  color: var(--color-orange);
}

.pillar-title {
  font-family: var(--font-headers);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ==========================================================================
   COMPARATIVO SECTION
   ========================================================================== */
.section-comparative {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.comparative-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparative-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
}

.table-responsive-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.comparative-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.comparative-table th,
.comparative-table td {
  padding: 24px 30px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.comparative-table thead th {
  font-family: var(--font-headers);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

.comparative-table tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
  width: 25%;
}

.column-improvisado {
  width: 37.5%;
}

.column-profissional {
  width: 37.5%;
  color: var(--color-orange) !important;
}

.cell-improvisado {
  color: var(--text-secondary);
}

.cell-profissional {
  color: var(--text-primary);
  background-color: rgba(254, 106, 0, 0.02);
  border-left: 2px solid rgba(254, 106, 0, 0.2);
}

.comparative-table tbody tr:last-child th,
.comparative-table tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   CONTEÚDO DO CURSO (SYLLABUS)
   ========================================================================== */
.section-syllabus {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.syllabus-header {
  max-width: 650px;
  margin: 0 auto 50px;
  text-align: center;
}

.syllabus-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 12px;
}

.syllabus-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.syllabus-accordion-group {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Styling native details details/summary */
.syllabus-details {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.syllabus-details[open] {
  border-color: var(--border-color-hover);
}

.syllabus-summary {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  user-select: none;
}

/* Remove default triangle in Safari */
.syllabus-summary::-webkit-details-marker {
  display: none;
}

.module-number {
  font-family: var(--font-headers);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  width: 100px;
  flex-shrink: 0;
}

.module-title {
  font-family: var(--font-headers);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  flex-grow: 1;
  transition: var(--transition-fast);
}

.syllabus-summary:hover .module-title {
  color: var(--text-primary);
}

.syllabus-details[open] .module-title {
  color: var(--text-primary);
}

.accordion-arrow {
  color: var(--text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.syllabus-details[open] .accordion-arrow {
  transform: rotate(180deg);
  color: var(--color-orange);
}

.syllabus-content {
  padding: 0 30px 24px 130px;
  border-top: 1px solid transparent;
  animation: details-slide-down 0.3s ease-out;
}

.syllabus-content ul {
  list-style-type: disc;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

@keyframes details-slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   PROFESSOR
   ========================================================================== */
.section-instructor {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.instructor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.instructor-image-wrapper {
  position: relative;
}

.instructor-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.instructor-content {
  max-width: 580px;
}

.instructor-name {
  font-family: var(--font-headers);
  font-size: 3.5rem;
  font-weight: 800;
  margin-top: 8px;
  line-height: 1.1;
}

.instructor-role {
  font-size: 1rem;
  color: var(--color-orange);
  font-weight: 500;
  display: block;
  margin-top: 4px;
  margin-bottom: 24px;
}

.instructor-bio {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.instructor-divider {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 24px;
}

.instructor-guests {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   METODOLOGIA
   ========================================================================== */
.section-methodology {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.methodology-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.methodology-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
}

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

.methodology-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.methodology-card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-color-hover);
}

.methodology-card-title {
  font-family: var(--font-headers);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.methodology-card-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.section-differentiators {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.diff-info {
  max-width: 500px;
  position: sticky;
  top: 120px;
}

.diff-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 12px;
}

.diff-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.diff-item {
  display: flex;
  gap: 20px;
}

.diff-icon-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-orange);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--color-orange);
}

.diff-item-title {
  font-family: var(--font-headers);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.diff-item-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   DEPOIMENTOS (CAROUSEL)
   ========================================================================== */
.section-testimonials {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
}

/* Carousel Slider CSS */
.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 50px;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--font-headers);
  font-size: 5.5rem;
  color: rgba(254, 106, 0, 0.15);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--color-orange);
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 0.975rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-details {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-headers);
  font-weight: 700;
  font-size: 1.05rem;
}

.author-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator-dot.active {
  background-color: var(--color-orange);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.section-faq {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.faq-intro {
  max-width: 400px;
  position: sticky;
  top: 120px;
}

.faq-title {
  font-family: var(--font-headers);
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 12px;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-details {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  transition: var(--transition-smooth);
}

.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 20px;
}

.faq-details[open] .faq-question {
  color: var(--color-orange);
}

.faq-answer {
  padding: 0 0 20px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  animation: details-slide-down 0.3s ease-out;
}

/* ==========================================================================
   OFERTA PRINCIPAL (PRICING)
   ========================================================================== */
.section-pricing {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(circle at 50% 50%, rgba(49, 93, 254, 0.03) 0%, transparent 70%);
}

.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 2px solid var(--color-orange);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(254, 106, 0, 0.1);
  color: var(--color-orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-orange);
  box-shadow: 0 0 10px var(--color-orange);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(254, 106, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(254, 106, 0, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(254, 106, 0, 0);
  }
}

.pricing-card-title {
  font-family: var(--font-headers);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-subtitle {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.5;
}

.price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.price-installment {
  font-size: 1.35rem;
  color: var(--text-secondary);
}

.price-value {
  font-family: var(--font-headers);
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-cash {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.divider-pricing {
  height: 1px;
  background-color: var(--border-color);
  margin-bottom: 40px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 500px;
  margin: 0 auto 50px auto;
}

.pricing-features li {
  display: flex;
  gap: 16px;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.check-icon {
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pricing-action .btn {
  width: 100%;
  max-width: 450px;
}

.pricing-guarantee {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.5;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.section-cta-final {
  padding-top: 140px;
  padding-bottom: 140px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 90% 80%, rgba(254, 106, 0, 0.03) 0%, transparent 60%);
}

/* Add custom grid overlay for executive layout background */
.section-cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.final-content {
  max-width: 750px;
  margin: 0 auto;
}

.final-title {
  font-family: var(--font-headers);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.final-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: #030304;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  padding-bottom: 32px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

.footer-logo-img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

/* ==========================================================================
   TYPOGRAPHY FIXES & SHARED CONTENT COMPONENTS
   ========================================================================== */
/* Bebas Neue é condensada: garante line-height enxuto e consistente nos títulos
   que herdavam o line-height solto (1.6) do corpo de texto. */
.hero-subtitle-main,
.target-title,
.syllabus-title,
.faq-title,
.module-title,
.bento-card-title,
.methodology-card-title,
.diff-item-title,
.instructor-role {
  line-height: 1.1;
}

/* Lista de resultados ("você terá domínio para") na seção de contexto */
.outcome-heading {
  margin-top: 28px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.outcome-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.4;
}

.outcome-list .check-icon {
  color: var(--color-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Nota de destaque no fim da seção "Para quem é" */
.target-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 24px;
  border: 1px solid rgba(254, 106, 0, 0.3);
  background-color: rgba(254, 106, 0, 0.06);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.target-note svg {
  color: var(--color-orange);
  flex-shrink: 0;
}

.target-note strong {
  color: var(--text-primary);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (PROGRESSIVE ENHANCEMENT)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes reveal-up {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .section-market-shift,
    .section-target,
    .section-differentiators,
    .section-syllabus,
    .section-instructor,
    .section-transformation,
    .section-faq,
    .section-pricing {
      animation: reveal-up auto linear forwards;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet & Smaller Screens */
@media (max-width: 1024px) {
  :root {
    --section-padding: 90px;
  }
  
  /* Hero — image as background, anchored top-right and aligned to the title,
     darkened with overlays so the text stays legible. */
  .section-hero {
    background-color: #020813;
    background-image:
      linear-gradient(to right, rgba(2, 8, 19, 0.92) 0%, rgba(2, 8, 19, 0.6) 50%, rgba(2, 8, 19, 0.42) 100%),
      linear-gradient(to bottom, rgba(2, 8, 19, 0.4) 0%, rgba(2, 8, 19, 0.35) 40%, rgba(2, 8, 19, 0.9) 78%, #020813 100%),
      url('assets/hero_redesign.png');
    background-repeat: no-repeat;
    background-position: center, center, right -20px top 100px;
    background-size: cover, cover, 96% auto;
    padding-top: 130px;
    padding-bottom: 80px;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  /* Empty spacer isn't needed on mobile (image is the section background) */
  .hero-right-space {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-title-main {
    font-size: 5.5rem;
  }

  .hero-subtitle-main {
    font-size: 1.5rem;
  }

  .hero-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .hero-instructor-card {
    max-width: 100%;
  }

  .hero-bottom-strip {
    position: static;
    padding: 40px 0 20px 0;
    background: transparent;
    backdrop-filter: none;
    border-top: none;
  }

  .strip-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .strip-item {
    flex: 0 0 auto;
    width: 100%;
  }

  .strip-cta-block {
    width: 100%;
    justify-content: space-between;
  }

  /* Shift */
  .shift-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .shift-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    order: 2;
  }
  
  /* Transformation */
  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .transformation-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* Curriculum */
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Instructor */
  .instructor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .instructor-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Methodology */
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Differentiators */
  .differentiators-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diff-info {
    position: static;
  }
  
  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-intro {
    position: static;
    max-width: 100%;
  }
}

/* Mobile Screens */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }
  
  .main-header {
    background-color: var(--bg-primary);
  }
  
  .desktop-nav {
    display: none; /* Hide header nav items on mobile for clean UX */
  }
  
  .hero-title-main {
    font-size: 5rem;
  }
  .hero-subtitle-main {
    font-size: 1.35rem;
  }
  .hero-desc-main {
    font-size: 0.95rem;
  }
  .hero-pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-instructor-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-inst-avatar {
    width: 40px;
    height: 40px;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-card {
    padding: 30px;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .syllabus-content {
    padding-left: 30px;
  }
  
  .syllabus-summary {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .module-number {
    width: 100%;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .price-value {
    font-size: 3.5rem;
  }
  
  .final-title {
    font-size: 2.25rem;
  }
  
  .footer-single {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   CHECKOUT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 19, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
}

.modal-overlay[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.modal-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.modal-title {
  font-family: var(--font-headers);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-field input,
.phone-group select,
.phone-group input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-field input:focus,
.phone-group select:focus,
.phone-group input:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(79, 117, 255, 0.2);
}

.form-field input::placeholder {
  color: var(--text-muted);
}

.phone-group {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 10px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
  margin-top: 4px;
}

.form-check input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-blue);
}

.form-check a {
  color: var(--color-blue);
  text-decoration: underline;
}

.field-error {
  color: #ff6b6b;
  font-size: 0.75rem;
  display: none;
}

.field-error.show {
  display: block;
}

.form-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  line-height: 1.4;
  margin-top: 2px;
}

.form-error[hidden] {
  display: none;
}

.form-field.invalid input,
.form-field.invalid select {
  border-color: #ff6b6b;
}

.modal-submit {
  width: 100%;
  margin-top: 8px;
}

.modal-success {
  text-align: center;
  padding: 10px 0;
}

.modal-success[hidden] {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(254, 106, 0, 0.12);
  color: var(--color-orange);
}

.modal-success .modal-title {
  margin-bottom: 10px;
}

.modal-success .modal-subtitle {
  margin-bottom: 24px;
}

@media (max-width: 560px) {
  .modal {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .phone-group {
    grid-template-columns: 96px 1fr;
  }

  .modal-title {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   WORDPRESS INTEGRATION GUARD
   Reafirma as cores de links/botões da landing mesmo que o tema-pai ou o
   Kit global do Elementor injetem regras do tipo `.elementor-kit-XXX a { ... }`
   (especificidade classe+tipo, maior que uma classe simples).
   ========================================================================== */
.main-header .nav-item {
  color: var(--text-secondary);
}

.main-header .nav-item:hover {
  color: var(--text-primary);
}

.main-header .header-cta,
.main-header .header-cta:hover {
  color: #ffffff;
}

.hero-bottom-strip .strip-cta-block {
  color: #ffffff;
}

main a.btn-primary,
main a.btn {
  color: #ffffff;
}

main a.text-link {
  color: var(--color-blue);
}

.checkout-form .form-check a {
  color: var(--color-blue);
}
