:root {
  --orange: #F07800;
  --orange-light: #FF9A30;
  --dark: #0A0C10;
  --dark-card: #111318;
  --dark-border: #1E2230;
  --white: #FFFFFF;
  --gray: #8A90A0;
  --light-bg: #F5F6FA;
  --text-dark: #1A1D2E;
  --text-light: #FFFFFF;
  --border-card: #E7E9F0;
  --primary-dark: #1E2230;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 80px;
}

/* ── NAV ── */
nav {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo img {
  padding-top: 8px;
  padding-left: 20px;
  width: 150px;
  max-width: 600px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
nav ul a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
nav ul a:hover {
  background-color: #F07800;
  color: #ffffff;
}
.btn-nav {
  background: #F07800;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 15px;
  font-size: 15px;
  transition: background 0.2s;
}
.btn-nav:hover {
  background: burlywood;
  color: #2a2e40;
}

.nav-toggle-checkbox { 
  display: none; 
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
/* checkbox is a sibling of the label and the menu, so :checked can drive both via ~ */
.nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(1) { 
  transform: translateY(7px) rotate(45deg); 
}


.nav-toggle-checkbox:checked ~ .nav-toggle span:nth-child(2) { 
  opacity: 0; 
}


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

/* ── Circuit SVG background ── */
.circuit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c { stroke-dasharray: 600; stroke-dashoffset: 600; }
.c1  { animation: drawLine 3s ease forwards 0.2s; }
.c2  { animation: drawLine 3.2s ease forwards 0.6s; }
.c3  { animation: drawLine 3.5s ease forwards 1.0s; }
.c4  { animation: drawLine 2.8s ease forwards 1.3s; }
.c5  { animation: drawLine 3.1s ease forwards 0.4s; }
.c6  { animation: drawLine 2.6s ease forwards 0.9s; }
.c7  { animation: drawLine 3.3s ease forwards 1.5s; }
.c8  { animation: drawLine 2.9s ease forwards 0.7s; }
.c9  { animation: drawLine 3.4s ease forwards 1.1s; }
.c10 { animation: drawLine 3.0s ease forwards 1.6s; }
.c11 { animation: drawLine 3.2s ease forwards 0.5s; }
.c12 { animation: drawLine 2.7s ease forwards 1.2s; }
.c13 { animation: drawLine 3.5s ease forwards 0.3s; }
.c14 { animation: drawLine 2.5s ease forwards 1.8s; }
.c15 { animation: drawLine 3.1s ease forwards 0.8s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.dot { opacity: 0; animation: dotPop 0.4s ease forwards; }
.d1  { animation-delay: 2s; }   .d2  { animation-delay: 2.4s; }
.d3  { animation-delay: 2.2s; } .d4  { animation-delay: 2.6s; }
.d5  { animation-delay: 2.1s; } .d6  { animation-delay: 2.8s; }
.d7  { animation-delay: 3.0s; } .d8  { animation-delay: 2.3s; }
.d9  { animation-delay: 2.7s; } .d10 { animation-delay: 2.5s; }
@keyframes dotPop {
  0%   { opacity: 0; transform: scale(0); }
  60%  { opacity: 1; transform: scale(1.6); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── CSS Particles ── */
.particles { position: absolute; inset: 0; pointer-events: none; }
.p { position: absolute; border-radius: 50%; top: 50%; left: 50%; animation: orbit 6s linear infinite; }
.p1  { width:4px; height:4px; background:rgba(240,120,0,0.8); box-shadow:0 0 6px rgba(240,120,0,0.6); margin:-2px; animation-duration:5.0s; animation-delay:0.0s;  --rx:130px; --ry:60px; }
.p2  { width:3px; height:3px; background:rgba(240,120,0,0.6); box-shadow:0 0 4px rgba(240,120,0,0.4); margin:-1.5px; animation-duration:6.5s; animation-delay:0.4s; --rx:150px; --ry:70px; }
.p3  { width:5px; height:5px; background:rgba(240,120,0,0.5); box-shadow:0 0 8px rgba(240,120,0,0.5); margin:-2.5px; animation-duration:4.8s; animation-delay:0.9s; --rx:110px; --ry:50px; }
.p4  { width:3px; height:3px; background:rgba(255,154,48,0.7); box-shadow:0 0 5px rgba(255,154,48,0.5); margin:-1.5px; animation-duration:7.2s; animation-delay:1.3s; --rx:170px; --ry:80px; }
.p5  { width:4px; height:4px; background:rgba(240,120,0,0.9); box-shadow:0 0 7px rgba(240,120,0,0.7); margin:-2px; animation-duration:5.5s; animation-delay:1.8s; --rx:140px; --ry:65px; }
.p6  { width:2px; height:2px; background:rgba(240,120,0,0.5); margin:-1px; animation-duration:8.0s; animation-delay:2.2s; --rx:190px; --ry:85px; }
.p7  { width:3px; height:3px; background:rgba(255,154,48,0.6); box-shadow:0 0 4px rgba(255,154,48,0.4); margin:-1.5px; animation-duration:6.0s; animation-delay:2.7s; --rx:125px; --ry:55px; }
.p8  { width:4px; height:4px; background:rgba(240,120,0,0.7); box-shadow:0 0 6px rgba(240,120,0,0.5); margin:-2px; animation-duration:5.8s; animation-delay:3.1s; --rx:160px; --ry:75px; }
.p9  { width:3px; height:3px; background:rgba(64,196,255,0.7); box-shadow:0 0 5px rgba(64,196,255,0.5); margin:-1.5px; animation-duration:5.3s; animation-delay:0.6s;  --rx:145px; --ry:68px; animation-direction:reverse; }
.p10 { width:4px; height:4px; background:rgba(64,196,255,0.5); box-shadow:0 0 7px rgba(64,196,255,0.4); margin:-2px; animation-duration:7.0s; animation-delay:1.1s; --rx:165px; --ry:72px; animation-direction:reverse; }
.p11 { width:2px; height:2px; background:rgba(64,196,255,0.8); box-shadow:0 0 4px rgba(64,196,255,0.6); margin:-1px; animation-duration:4.5s; animation-delay:1.6s; --rx:120px; --ry:52px; animation-direction:reverse; }
.p12 { width:3px; height:3px; background:rgba(64,196,255,0.6); margin:-1.5px; animation-duration:6.8s; animation-delay:2.0s; --rx:180px; --ry:82px; animation-direction:reverse; }
.p13 { width:5px; height:5px; background:rgba(64,196,255,0.4); box-shadow:0 0 8px rgba(64,196,255,0.3); margin:-2.5px; animation-duration:5.6s; animation-delay:2.5s; --rx:135px; --ry:62px; animation-direction:reverse; }
.p14 { width:2px; height:2px; background:rgba(64,196,255,0.7); margin:-1px; animation-duration:7.5s; animation-delay:3.0s; --rx:155px; --ry:70px; animation-direction:reverse; }
.p15 { width:2px; height:2px; background:rgba(255,255,255,0.3); margin:-1px; animation-duration:9.0s; animation-delay:0.3s; --rx:200px; --ry:90px; }
.p16 { width:2px; height:2px; background:rgba(255,255,255,0.2); margin:-1px; animation-duration:8.5s; animation-delay:1.4s; --rx:115px; --ry:48px; animation-direction:reverse; }
.p17 { width:3px; height:3px; background:rgba(255,255,255,0.25); margin:-1.5px; animation-duration:7.8s; animation-delay:2.8s; --rx:175px; --ry:78px; }
.p18 { width:2px; height:2px; background:rgba(240,120,0,0.4); margin:-1px; animation-duration:6.2s; animation-delay:3.5s; --rx:105px; --ry:45px; animation-direction:reverse; }
@keyframes orbit {
  0%   { transform: translate(calc(var(--rx) * 1),  calc(var(--ry) * 0)); }
  25%  { transform: translate(calc(var(--rx) * 0),  calc(var(--ry) * 1)); }
  50%  { transform: translate(calc(var(--rx) * -1), calc(var(--ry) * 0)); }
  75%  { transform: translate(calc(var(--rx) * 0),  calc(var(--ry) * -1)); }
  100% { transform: translate(calc(var(--rx) * 1),  calc(var(--ry) * 0)); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 48px 60px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(240,120,0,0.08) 0%, transparent 70%);
}
.hero-badge {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.0s;
}
.hero-title {
  /*font-family: 'Barlow Condensed', sans-serif;*/
  font-weight: 900;
  font-size: 58px;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.0s;
}
.hero-title .accent { 
  color: var(--orange); 
}


.orange-divider {
  width: 110px;
  height: 3px;
  background-color: var(--orange);
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 2px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 0.8s;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.0s;
}
.hero-hours { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  margin-bottom: 6px; 
}

.hero-hours img { 
  width: 50px; 
}


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

.duration-text .hours { 
  color: #ffffff; 
  font-size: 60px; 
  font-weight: 700; 
  line-height: 1; 
}

.duration-text .label { 
  color: #cbd5e1; 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: 1px; 
  margin-top: 4px; 
}

.hero-desc {
  color: #9AA0B8;
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
  opacity: 0;
  margin-bottom: 30px;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.2s;
}
.hero-desc span { color: var(--orange); }
.hero-pillars {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.2s;
}
.pillar { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.pillar-icon { width: 40px; height: 40px; border-radius: 4px; color: #ffffff; }
.pillar-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8A90A0;
  line-height: 1.3;
}

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease forwards;
  animation-delay: 1.2s;
}
.rack-body {
  position: relative;
  width: 240px;
  height: 400px;
  background: linear-gradient(135deg, #1a1e2e 0%, #0d0f1a 100%);
  border-radius: 8px;
  border: 1px solid #2a2e40;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  box-shadow: 0 0 60px rgba(240,120,0,0.25), 0 0 120px rgba(240,120,0,0.1);
}
.rack-unit {
  height: 28px;
  border-radius: 3px;
  background: linear-gradient(90deg, #1e2235 0%, #252a3d 100%);
  border: 1px solid #2e3448;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}
.rack-led { 
  width: 5px; 
  height: 5px; 
  border-radius: 50%; 
  background: var(--orange); 
  box-shadow: 0 0 6px var(--orange); 
  animation: blink 2s infinite; 
}

.rack-led.green { 
  background: #00E676; 
  box-shadow: 0 0 6px #00E676; 
  animation-delay: 0.5s; 
}

.rack-led.blue { 
  background: #40C4FF; 
  box-shadow: 0 0 6px #40C4FF; 
  animation-delay: 1s; 
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.rack-bar { 
  flex: 1; 
  height: 3px; 
  background: #2e3448; 
  border-radius: 2px; 
}

.rack-logo { 
  position: absolute; 
  inset: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.rack-logo img { 
  width: 40%; 
  color: var(--orange); 
  opacity: 0.4; 
}

.glow-ring {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.4;
}
.float-badge {
  position: absolute;
  background: rgba(15,17,26,0.9);
  border: 1px solid var(--dark-border);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #B0B8CC;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.float-badge.top-left { top: 10px; left: -20px; }
.float-badge.top-right { top: 10px; right: 70px; }
.float-badge.mid-left { top: 45%; left: -40px; }
.float-badge.mid-right { top: 45%; right: 0px; }
.float-badge.bot-right { bottom: 40px; right: 50px; }
.float-badge .badge-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 6px var(--orange);
}

/* ── SECTION TITLE (shared) ── */
.section-title { 
  text-align: center; 
  margin-bottom: 60px; 
}

.section-title h1 { 
  font-size: 50px; 
  color: #1E2230; 
  margin-bottom: 10px; 
  /*font-family: 'Barlow Condensed', sans-serif; */
  font-weight: 800; 
}

.section-title h2 { 
  font-size: 20px; 
  color: #F07800; 
  margin-bottom: 20px; 
  letter-spacing: 1px; 
}

.section-title p { 
  margin-top: 20px; 
  color: #2a2e40; 
  max-width: 620px; 
  margin-left: auto; 
  margin-right: auto; 
}

.section-title.light h1 { 
  color: var(--white); 
}

.section-title.light p { 
  color: #B0B8CC; 
}


/* ── SOBRE A FORMAÇÃO ── */
.sobre {
  background: var(--white);
  padding: 90px 8%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange);
}
.sobre-text h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 22px;
}
.sobre-text h2 .accent { color: var(--orange); }
.sobre-text p {
  color: #4b5165;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
}

.sobre-stats {
  display: flex;
  gap: 0;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
}
.sobre-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 28px;
  border-left: 1px solid var(--border-card);
}
.sobre-stat:first-child { padding-left: 0; border-left: none; }
.stat-icon { width: 20px; height: 20px; color: var(--orange); }
.sobre-stat .num { font-size: 34px; font-weight: 800; color: var(--primary-dark); line-height: 1; }
.sobre-stat .lbl {
  font-size: 11.5px;
  color: #6b7185;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Sobre: terminal signature panel ── */
.sobre-terminal {
  background: #0D0F16;
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #12141C;
  border-bottom: 1px solid var(--dark-border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #7A8098;
}
.terminal-status { display: flex; align-items: center; gap: 8px; }
.terminal-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 6px var(--orange);
}
.terminal-live {
  display: flex; align-items: center; gap: 6px;
  color: #00E676; font-weight: 600; letter-spacing: 0.4px;
  text-transform: uppercase; font-size: 11px;
}
.terminal-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #00E676; box-shadow: 0 0 6px #00E676;
  animation: blink 2s infinite;
}
.terminal-body {
  margin: 0;
  padding: 24px 26px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.9;
  color: #C7CCDB;
  overflow-x: auto;
  white-space: pre;
}
.t-prompt { color: var(--orange-light); font-weight: 600; }
.t-muted { color: #5A6178; }
.t-key { color: #40C4FF; }
.t-comment { color: #5A6178; font-style: italic; }
.t-cursor { color: var(--orange); animation: blink 1s steps(1) infinite; }















/* ── MÓDULOS ── */
.modules { 
  background: #f8f9fb; 
  color: #111; 
  padding: 90px 8%; 
}


.modulos-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 20px; 
}


.modulo-card {
  background-color: var(--text-light);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 30px 20px 20px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s, box-shadow 0.2s;
}

.modulo-card h1 {
  font-size: 50px;
  padding-top: 60px;
  padding-bottom: 20px;
}

.modulo-card h2 {
  font-size: 40px;
  padding-top: 30px;
  padding-bottom: 20px;
}

.modulo-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2); 
}


.modulo-number {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--orange);
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  padding: 3px 8px;
  border-radius: 4px;
}
.modulo-icon { 
  margin: 15px 0; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  min-height: 90px; 
}


.modulo-card h3 { 
  font-size: 15px; 
  color: var(--primary-dark); 
  font-weight: 600; 
  line-height: 1.4; 
  margin-bottom: 12px; 
  min-height: 54px; 
}

.modulo-hours { 
  font-size: 30px; 
  font-weight: 500; 
  color: var(--orange); 
  margin-bottom: 15px; 
}

.modulo-details {
  font-size: 15px;
  font-weight: 600;
  color: #1E2230;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  width: 100%;
  text-align: center;
}
.modulo-icon img { 
  display: flex; 
  width: 100px; 
  padding: 5px; 
  margin: 0 auto; 
}
.modulo-icon-issabel { 
  margin: 15px 0; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  min-height: 90px; 
}

.modulo-icon-issabel img { 
  display: flex; 
  width: 200px; 
  padding: 5px; 
  margin: 0 auto; 
}

.modulo-icon-mysql { 
  margin: 15px 0; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  min-height: 90px; 
}

.modulo-icon-mysql img { 
  display: flex; 
  width: 150px; 
  padding: 5px; 
  margin: 0 auto; 
}

.gray-divider {
  width: 110px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  margin-top: 7px;
  margin-bottom: 7px;
  border-radius: 2px;
}

.eyebrow_modulos {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}










/* ── METODOLOGIA ── */
.metodologia { 
  background: var(--dark); 
  padding: 90px 8%; 
}

.metodo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}
.metodo-step {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
}
.metodo-step-number {
  display: inline-block;
  /*font-family: 'Barlow Condensed', sans-serif;*/
  font-size: 46px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}
.metodo-step h3 { 
  color: var(--white); 
  font-size: 20px; 
  text-transform: uppercase; 
  margin-bottom: 10px; 
  letter-spacing: 0.5px; 
}

.metodo-step p { 
  color: #9AA0B8; 
  font-size: 14px; 
  line-height: 1.6; 
}

.metodo-tutores-title { 
  text-align: center; 
  color: var(--white); 
  /*font-family: 'Barlow Condensed', sans-serif;*/ 
  font-size: 26px; 
  text-transform: uppercase; 
  margin-bottom: 30px; 
}

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

.tutor-card { 
  background: var(--dark-card); 
  border: 1px solid var(--dark-border); 
  border-radius: 12px; 
  padding: 22px 20px; 
}

.tutor-area { 
  display: block; 
  color: var(--orange-light); 
  font-size: 13px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.4px; 
  margin-bottom: 10px; 
}

.tutor-card p { 
  color: #9AA0B8; 
  font-size: 13px; 
  line-height: 1.55; 
}

.metodo-tutores-note { 
  text-align: center; 
  color: #6B7185; 
  font-size: 12.5px; 
}


.eyebrow_metodologia {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.eyebrow_metodologia {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}








/* ── SAÍDAS PROFISSIONAIS ── */
.saidas { 
  background: #f8f9fb; 
  padding: 50px 8%; 
}

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

.saida-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.saida-card h3 { 
  color: var(--primary-dark); 
  font-size: 16px; 
  margin-bottom: 10px; 
  font-weight: 700; 
}

.saida-card p { 
  color: #5a5f72; 
  font-size: 13.5px; 
  line-height: 1.6; 
}

.saidas-legal { 
  text-align: center; 
  color: #6B7185; 
  font-size: 12px; 
  max-width: 720px; 
  margin: 0 auto; 
  line-height: 1.6; 
}

.eyebrow_saidas {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}










/* ── BENEFITS ── */
.benefits { 
  padding: 90px 8%; 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); 
  gap: 30px; 
}

.benefit-card { 
  background: #101b29; 
  padding: 30px; 
  border-radius: 20px; 
  text-align: center; 
  color: var(--white); 
}

.benefit-card img { 
  width: 70px; 
  height: 70px; 
  margin-bottom: 20px; 
}

.benefit-card h3 { 
  margin-bottom: 12px; 
  font-size: 15px; 
  letter-spacing: 0.5px; 
}

.benefit-card p { 
  color: #B0B8CC; 
  font-size: 13.5px; 
  line-height: 1.5; 
}













/* ── CTA ── */
.cta-section {
  background: linear-gradient(to right, #1a0a00 20%, #3d1500 40%, #7a2e00 70%, #c44e00 85%, #e86000 100%);
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  /*font-family: 'Barlow Condensed', sans-serif;*/
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 30px;
}
.cta-title .accent { 
  color: var(--orange-light); 
}

.cta-desc { 
  color: #ffffff; 
  font-size: 16px; 
  max-width: 340px; 
  line-height: 1.5; 
}

.cta-right { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 16px; 
  flex-shrink: 0; 
}

.btn-cta {
  background: var(--orange);
  color: var(--white);
  /*font-family: 'Barlow Condensed', sans-serif;*/
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 70px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  white-space: nowrap;
}
.btn-cta:hover { 
  background: burlywood; 
  color: #2a2e40; 
}

.cta-badges { 
  display: flex; 
  gap: 20px; 
  align-items: center; 
  flex-wrap: wrap; 
  justify-content: center; 
}

.cta-badge { 
  display: flex; 
  align-items: center; 
  gap: 7px; 
  font-size: 11px; 
  font-weight: 600; 
  color: rgba(255,255,255,0.7); 
  letter-spacing: 0.3px; 
  white-space: nowrap; 
}

.cta-badge img { 
  width: 30px; 
}

.cta-badge-label { 
  text-transform: uppercase; 
  font-size: 13px; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  line-height: 1.3; 
}

.cta-sep { 
  width: 1px; 
  height: 28px; 
  background: rgba(255,255,255,0.2); 
}


/* ── LIGHTBOX MODAL 100% CSS ── */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none; /* Invisível e não clicável por padrão */
  transition: opacity 0.3s ease;
  font-family: 'Inter', sans-serif;
}

/* O TRUQUE: Quando o botão com a âncora é clicado, ativa esta classe */
.lightbox-modal:target {
  opacity: 1;
  pointer-events: auto; /* Torna o modal visível e interativo */
}

/* Fundo escurecido e desfocado (Substituto do backdrop) */
.lightbox-overlay-close {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(5px);
  cursor: default;
}

/* Caixa de Conteúdo do Modal */
.lightbox-content {
  position: relative;
  background: var(--dark-card, #111318);
  color: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(240, 120, 0, 0.15);
  z-index: 10;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

/* Efeito de subir/descer suave ao abrir */
.lightbox-modal:target .lightbox-content {
  transform: translateY(0);
}

/* Botão de Fechar (X) */
.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--gray, #8A90A0);
  font-size: 28px;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: var(--orange);
}

/* Cabeçalho do Modal */
.lightbox-header h3 {
  font-family: 'Syncopate', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}
.lightbox-header p {
  font-size: 13.5px;
  color: var(--gray, #8A90A0);
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Formulário e Inputs */
.lightbox-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input, 
.form-group select {
  background: #1A1D26;
  border: 1px solid var(--dark-border, #1E2230);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus, 
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

/* Botão de Envio */
.btn-submit-inscricao {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 10px;
}
.btn-submit-inscricao:hover {
  background: var(--orange-light);
}
.btn-submit-inscricao:active {
  transform: scale(0.98);
}









/* ── FOOTER ── */
.site-footer { 
  background: var(--dark); 
  padding: 60px 8% 24px; 
}


.footer-top { 
  display: grid; 
  grid-template-columns: 1.4fr 1fr 1fr 1fr; 
  gap: 40px; 
  padding-bottom: 36px; 
  border-bottom: 1px solid var(--dark-border); 
}


.footer-logo { 
  width: 170px; 
  margin-bottom: 14px; 
}


.footer-brand p { 
  color: #7A8098; 
  font-size: 13.5px; 
  line-height: 1.6; 
  max-width: 280px; 
}


.footer-col h4 { 
  color: var(--white); 
  font-size: 14px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-bottom: 16px; 
}


.footer-col ul { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}


.footer-col ul li { 
  color: #9AA0B8;
  font-size: 13.5px; 
}


.footer-col ul a { 
  color: #9AA0B8; 
  text-decoration: none; 
  transition: color 0.2s; 
}


.footer-col ul a:hover { 
  color: var(--orange-light); 
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  color: #5A5F72;
  font-size: 12px;
}



/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .modulos-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .tutores-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .saidas-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: flex; }
  nav ul {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 20px 20px;
    border-top: 1px solid var(--dark-border);
    display: none;
  }
  .nav-toggle-checkbox:checked ~ ul { display: flex; }
  nav ul a { display: block; width: 100%; }

  .hero { grid-template-columns: 1fr; padding: 48px 24px; }
  .hero-visual { margin-top: 40px; }
  .hero-title { font-size: 44px; }
  .float-badge.top-left, .float-badge.mid-left { left: 4px; }
  .float-badge.top-right, .float-badge.mid-right, .float-badge.bot-right { right: 4px; }

  .sobre { grid-template-columns: 1fr; padding: 60px 24px; }
  .metodo-steps { grid-template-columns: 1fr; }
  .tutores-grid { grid-template-columns: 1fr 1fr; }
  .saidas-grid { grid-template-columns: 1fr; }

  .modulos-grid { grid-template-columns: repeat(2, 1fr); }
  .modules, .metodologia, .saidas { padding: 60px 6%; }

  .cta-section { flex-direction: column; text-align: center; padding: 48px 24px; }
  .cta-left { text-align: center; }
  .cta-desc { max-width: 100%; }

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

@media (max-width: 520px) {
  .modulos-grid { grid-template-columns: 1fr; }
  .tutores-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 34px; }
  .duration-text .hours { font-size: 44px; }
  .btn-cta { padding: 14px 40px; font-size: 20px; }
  .section-title h1 { font-size: 34px; }
  .terminal-body { font-size: 11.5px; padding: 20px 18px 22px; }
  .sobre-stats { gap: 0 18px; }
  .sobre-stat { padding: 0 18px; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .c { stroke-dashoffset: 0; }
  .hero-badge, .hero-title, .orange-divider, .hero-divider, .hero-desc, .hero-pillars, .hero-visual { opacity: 1; }
}