/* ========================================
   CRISTETECH CURSOS — style.css
   Cores: #14133A #99C21D #E0E2E3 #FFFFFF
======================================== */

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

:root {
  --dark:    #14133A;
  --dark2:   #0e0d28;
  --dark3:   #1c1b4a;
  --green:   #99C21D;
  --green2:  #7da018;
  --light:   #E0E2E3;
  --white:   #FFFFFF;
  --gray:    #8b8fa8;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius:  14px;
  --radius-sm: 8px;
  --shadow:  0 4px 30px rgba(0,0,0,0.3);
  --transition: 0.3s ease;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
.highlight { color: var(--green); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 42px); color: var(--white); margin: 12px 0; }
.section-header p { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  background: rgba(153, 194, 29, 0.15);
  border: 1px solid rgba(153, 194, 29, 0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--dark);
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(153, 194, 29, 0.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-large { padding: 18px 36px; font-size: 17px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-nav:hover { background: var(--green2); }

.pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(153, 194, 29, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(153, 194, 29, 0); }
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 19, 58, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.header.scrolled { background: rgba(14, 13, 40, 0.97); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 36px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(153,194,29,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153,194,29,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(153,194,29,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(153, 194, 29, 0.12);
  border: 1px solid rgba(153, 194, 29, 0.25);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--light); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item strong { font-size: 26px; font-weight: 800; color: var(--green); line-height: 1; }
.stat-item span { font-size: 13px; color: var(--gray); margin-top: 4px; }

/* Code Window */
.hero-visual { z-index: 1; }
.code-window {
  background: #0d0c24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: 'Courier New', monospace;
}
.code-bar {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.code-file { margin-left: 8px; font-size: 13px; color: var(--gray); font-family: var(--font); }
.code-body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #abb2bf;
}
.code-body code { display: block; }
.ct { color: #c678dd; }
.cc { color: #e5c07b; }
.cf { color: #61afef; }
.cm { color: #5c6370; font-style: italic; }

.tech-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tech-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.tech-badge i { color: var(--green); }
.tech-badge:hover { border-color: var(--green); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray);
  animation: bounce 2s ease-in-out infinite;
  font-size: 18px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
}
.trust-item i { color: var(--green); font-size: 18px; }

/* ---- FOR WHO ---- */
.for-who { background: var(--dark2); }
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.fw-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.fw-card:hover { border-color: rgba(153, 194, 29, 0.3); transform: translateY(-4px); }
.fw-icon {
  width: 56px;
  height: 56px;
  background: rgba(153, 194, 29, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fw-icon i { font-size: 22px; color: var(--green); }
.fw-card h3 { font-size: 18px; color: var(--white); margin-bottom: 12px; }
.fw-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ---- NUMBERS ---- */
.numbers-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green2) 100%);
  padding: 70px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  text-align: center;
}
.number-card {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.number-card:last-child { border-right: none; }
.number-value {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  display: inline;
}
.number-plus {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark);
  display: inline;
}
.number-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: rgba(20,19,58,0.75);
  margin-top: 8px;
}

/* ---- METHODOLOGY ---- */
.method { background: var(--dark); }
.method-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 32px 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.step:hover { border-color: rgba(153,194,29,0.3); }
.step-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(153,194,29,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 { font-size: 17px; color: var(--white); margin-bottom: 12px; }
.step-content p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.step-arrow {
  align-self: center;
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ---- MODULES ---- */
.modules { background: var(--dark2); }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.module-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.module-card:hover {
  border-color: rgba(153,194,29,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(153,194,29,0.08);
}
.module-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(153,194,29,0.4);
  letter-spacing: 1px;
}
.module-icon {
  width: 44px;
  height: 44px;
  background: rgba(153,194,29,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.module-icon i { font-size: 18px; color: var(--green); }
.module-card h4 { font-size: 15px; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.module-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.modules-more {
  margin: 36px 0 16px;
}
.modules-more-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(153,194,29,0.06);
  border: 1px dashed rgba(153,194,29,0.3);
  border-radius: var(--radius);
  padding: 24px 32px;
}
.modules-more-inner i {
  font-size: 28px;
  color: var(--green);
  flex-shrink: 0;
}
.modules-more-inner p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
.modules-more-inner p strong { color: var(--light); }
.modules-cta { text-align: center; margin-top: 32px; }

/* ---- INCLUDED ---- */
.included { background: var(--dark); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.included-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.included-card:hover { border-color: rgba(153,194,29,0.3); transform: translateY(-4px); }
.included-card > i {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 20px;
  display: block;
}
.included-card h4 { font-size: 18px; color: var(--white); margin-bottom: 12px; }
.included-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* ---- INSTRUCTOR ---- */
.instructor { background: var(--dark2); }
.instructor-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.instructor-img-wrap { position: relative; }
.instructor-img-frame {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(153,194,29,0.1), rgba(153,194,29,0.02));
  border: 1px solid rgba(153,194,29,0.2);
}
.instructor-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: luminosity;
  filter: grayscale(20%);
  transition: var(--transition);
}
.instructor-img-frame:hover img { mix-blend-mode: normal; filter: grayscale(0%); }
.instructor-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.ibadge {
  background: rgba(153,194,29,0.1);
  border: 1px solid rgba(153,194,29,0.2);
  color: var(--light);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ibadge i { color: var(--green); }
.instructor-content .section-tag { margin-bottom: 16px; }
.instructor-content h2 { font-size: clamp(30px, 3.5vw, 44px); color: var(--white); margin-bottom: 24px; }
.instructor-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.instructor-content p strong { color: var(--light); }
.instructor-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.instructor-techs span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--dark); }

.carousel-outer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide */
.tc-slide {
  flex: 0 0 calc(100% / 2);
  min-width: calc(100% / 2);
  padding: 0 10px;
  box-sizing: border-box;
}

/* Card inside slide */
.tc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: var(--transition);
}
.tc-card:hover {
  border-color: rgba(153,194,29,0.25);
  transform: translateY(-3px);
}

.tc-quote i {
  font-size: 28px;
  color: var(--green);
  opacity: 0.6;
}

.tc-text {
  font-size: 15px;
  color: #b0b3c8;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.tc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.tc-author-info { flex: 1; min-width: 0; }
.tc-author-info strong { display: block; font-size: 15px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-author-info span { font-size: 12px; color: var(--gray); }
.tc-stars { color: #f5c518; font-size: 12px; display: flex; gap: 2px; flex-shrink: 0; }

.carousel-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 16px;
}
.carousel-btn:hover { background: var(--green); border-color: var(--green); color: var(--dark); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* ---- TOOLS ---- */
.tools { background: var(--dark2); }
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--light);
  transition: var(--transition);
  cursor: default;
}
.tool-item i {
  font-size: 20px;
  color: var(--green);
}
.tool-item:hover {
  border-color: rgba(153,194,29,0.35);
  background: rgba(153,194,29,0.06);
  transform: translateY(-3px);
}

/* Module card deploy highlight */
.module-card-deploy {
  border-color: rgba(153,194,29,0.3);
  background: rgba(153,194,29,0.05);
}
.module-card-deploy .module-icon { background: rgba(153,194,29,0.18); }
.module-card-deploy .module-num { color: var(--green); font-size: 18px; top: 12px; }

/* ---- PRICING ---- */
.pricing { background: var(--dark2); }
.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(153,194,29,0.25);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green2));
}
.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--green);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 48px;
  transform: rotate(30deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-header { text-align: center; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pricing-header h3 { font-size: 24px; color: var(--white); margin: 16px 0 8px; }
.pricing-header p { font-size: 15px; color: var(--gray); }

.pricing-list { margin-bottom: 36px; }
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 15px;
  color: var(--light);
}
.pricing-list li i { color: var(--green); font-size: 16px; flex-shrink: 0; }

.pricing-price { text-align: center; margin-bottom: 32px; }
.price-from { display: block; font-size: 16px; color: var(--gray); margin-bottom: 8px; }
.price-from s { color: #ff6b6b; }
.price-current { margin: 8px 0; }
.price-label { display: block; font-size: 14px; color: var(--gray); }
.price-current strong { font-size: clamp(40px, 5vw, 56px); color: var(--green); font-weight: 900; }
.price-installment { display: block; font-size: 15px; color: var(--gray); margin-top: 8px; }
.price-installment strong { color: var(--light); }

.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(153,194,29,0.06);
  border: 1px solid rgba(153,194,29,0.15);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}
.pricing-guarantee i { color: var(--green); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.pricing-guarantee strong { color: var(--light); }
.pricing-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--gray);
  font-size: 24px;
}
.pix-badge {
  background: #32BCAD;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ---- FAQ ---- */
.faq { background: var(--dark); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green); }
.faq-question i {
  color: var(--green);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 14px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--gray); line-height: 1.8; }

/* ---- FINAL CTA ---- */
.final-cta { background: var(--dark2); }
.final-cta-inner {
  background: linear-gradient(135deg, rgba(153,194,29,0.08) 0%, rgba(153,194,29,0.02) 100%);
  border: 1px solid rgba(153,194,29,0.2);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(153,194,29,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner .section-tag { margin-bottom: 20px; }
.final-cta-inner h2 { font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 20px; }
.final-cta-inner > p { font-size: 18px; color: var(--gray); max-width: 560px; margin: 0 auto 40px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final-cta-guarantee { font-size: 14px; color: var(--gray); display: flex; align-items: center; justify-content: center; gap: 8px; }
.final-cta-guarantee i { color: var(--green); }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 40px;
}
.footer-logo { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 260px; margin-bottom: 20px; }
.footer-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.footer-wpp:hover { opacity: 0.8; }
.footer-links h5 { font-size: 15px; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--green); }
.footer-cta-col h5 { font-size: 15px; color: var(--white); margin-bottom: 20px; }
.footer-guarantee { font-size: 12px; color: var(--gray); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.footer-guarantee i { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}

/* ---- WHATSAPP FLOAT ---- */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: wpp-pulse 2.5s ease-in-out infinite;
}
.wpp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}
.wpp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark3);
  color: var(--white);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}
.wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark3);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .instructor-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .instructor-img-wrap { max-width: 400px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(34px, 8vw, 48px); }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-item strong { font-size: 22px; }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark2);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .hamburger { display: flex; }

  .method-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .step { max-width: 100%; }

  .modules-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .trust-grid { gap: 20px; }
  .trust-item span { display: none; }

  .number-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .number-card:last-child { border-bottom: none; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pricing-card { padding: 32px 24px; }
  .final-cta-inner { padding: 48px 24px; }

  .instructor-badges { flex-direction: row; flex-wrap: wrap; }
  .ibadge { flex: 1; min-width: 140px; }

  /* Carousel — mobile: 1 card por vez */
  .tc-slide { flex: 0 0 100%; min-width: 100%; }
  .carousel-outer { gap: 8px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 13px; }

  .tools-grid { gap: 10px; }
  .tool-item { padding: 10px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-large { width: 100%; justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat-sep { display: none; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
}
