/* ============================================
   Enem10x — Home Page
   Paleta: #107568 (teal/primary), #1B3132 (dark),
           #2E503D (forest), #03B866 (green CTA),
           #CEA581 (sandy accent)
   ============================================ */

:root {
  --primary: #107568;
  --primary-dark: #1B3132;
  --primary-mid: #2E503D;
  --accent: #03B866;
  --accent-warm: #CEA581;
  --bg: #f4f8f7;
  --bg-white: #ffffff;
  --bg-dark: #1B3132;
  --text-dark: #1B3132;
  --text-mid: #2E503D;
  --text-muted: #6b7280;
  --border: rgba(16, 117, 104, 0.12);
  --shadow-sm: 0 1px 3px rgba(16, 117, 104, 0.08);
  --shadow-md: 0 4px 16px rgba(16, 117, 104, 0.1);
  --shadow-lg: 0 10px 40px rgba(16, 117, 104, 0.12);
  --shadow-hover: 0 16px 48px rgba(16, 117, 104, 0.18);
  --grad-primary: linear-gradient(135deg, #107568, #1B3132);
  --grad-hero: linear-gradient(135deg, #f0f7f5 0%, #d9eeea 50%, #e8f0ee 100%);
  --radius: 14px;
  --radius-lg: 22px;
}

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

.enem10x-page {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.enem10x-page a { text-decoration: none; }
.enem10x-page a:visited { color: inherit; }

/* ============================================
   NAVBAR
   ============================================ */
.en-navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1300px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.en-navbar.scrolled { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12); }

.en-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
}

.en-brand { display: flex; align-items: center; gap: 0.7rem; }
.en-brand-logo { height: 54px; width: auto; }
.en-brand-name { font-weight: 700; font-size: 1.15rem; color: var(--primary); letter-spacing: -0.3px; }

.en-nav-links { display: flex; align-items: center; gap: 1.8rem; }
.en-nav-link { color: var(--text-mid); font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.en-nav-link:hover { color: var(--primary); }

.en-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.25rem;
  background: var(--primary);
  color: #ffffff !important;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.en-btn-login:hover { background: var(--primary-dark); transform: translateY(-1px); color: #ffffff !important; }
.en-btn-login:visited { color: #ffffff !important; }

.en-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.3rem;
}

/* ============================================
   HERO
   ============================================ */
.en-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--grad-hero);
  padding: 6rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.en-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(4, 217, 118, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.en-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 117, 104, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.en-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

/* Blurred classroom background (no color wash) */
.en-hero { background: #e9eef0; }
.en-hero::before, .en-hero::after { display: none; }
.en-hero-bg {
  position: absolute;
  inset: -40px;
  background: url("hero-bg.76ad93d89748.jpg") center center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.08);
  z-index: 0;
}

.en-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(4, 217, 118, 0.12);
  border: 1px solid rgba(4, 217, 118, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.en-hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #03B866;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.en-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.en-hero-title span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.en-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.en-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.en-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  background: #ffffff;
  color: var(--primary-dark);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.en-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18); color: var(--primary-dark); }

.en-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  background: rgba(16, 117, 104, 0.08);
  color: var(--primary);
  border: 2px solid rgba(16, 117, 104, 0.25);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
.en-btn-secondary:hover { background: rgba(16, 117, 104, 0.14); border-color: var(--primary); color: var(--primary); }

/* Hero visual cards */
.en-hero-visual { display: flex; flex-direction: column; gap: 1rem; }

.en-stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.en-stat-card:hover { transform: translateX(4px); }

.en-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 117, 104, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--primary);
}

.en-stat-icon.green { background: rgba(4, 217, 118, 0.12); color: #059669; }
.en-stat-icon.warm { background: rgba(206, 165, 129, 0.15); color: #92632b; }

.en-stat-info { display: flex; flex-direction: column; gap: 0.2rem; }
.en-stat-value { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.en-stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ============================================
   SECTION COMMONS
   ============================================ */
.en-section { padding: 5rem 1.5rem; }
.en-section.bg-white { background: var(--bg-white); }
.en-section.bg-dark { background: var(--bg-dark); }

.en-section-inner { max-width: 1200px; margin: 0 auto; }

.en-section-header { text-align: center; margin-bottom: 3rem; }

.en-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(16, 117, 104, 0.08);
  border: 1px solid rgba(16, 117, 104, 0.2);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.en-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.en-section-sub { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

.en-foryou-hook {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.en-foryou-hook strong { color: var(--primary); font-weight: 800; }
@media (max-width: 600px) { .en-foryou-hook { font-size: 1.4rem; } }

/* ============================================
   FEATURES GRID
   ============================================ */
.en-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.en-feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.en-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(16, 117, 104, 0.25); }

.en-feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(16, 117, 104, 0.06);
  border-bottom: 1px solid var(--border);
}

.en-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.en-feature-card:hover .en-feature-media img { transform: scale(1.03); }

/* Fallback for cards without a screenshot — centered icon chip */
.en-feature-media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary);
  background: rgba(16, 117, 104, 0.1);
}

.en-feature-body { padding: 1.5rem 1.75rem 1.75rem; }

.en-feature-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.en-feature-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.en-features-more {
  text-align: center;
  margin: 2.5rem 0 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ============================================
   CURSO + PLATAFORMA SECTION
   ============================================ */
.en-combo {
  background: var(--bg-white);
  padding: 5rem 1.5rem;
}

.en-combo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.en-combo-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.en-combo-text h2 span { color: var(--primary); }

.en-combo-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.en-combo-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }

.en-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: rgba(16, 117, 104, 0.08);
  border: 1px solid rgba(16, 117, 104, 0.2);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
}

.en-pill i { font-size: 0.75rem; }

.en-combo-cards { display: flex; flex-direction: column; gap: 1rem; }

.en-combo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.en-combo-card:hover { box-shadow: var(--shadow-md); border-color: rgba(16, 117, 104, 0.22); }

.en-combo-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.en-combo-card-icon.teal { background: rgba(16, 117, 104, 0.1); color: var(--primary); }
.en-combo-card-icon.green { background: rgba(4, 217, 118, 0.12); color: #059669; }

.en-combo-card-body h4 { font-size: 0.97rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.3rem; }
.en-combo-card-body p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================
   APP SECTION
   ============================================ */
.en-app {
  background: var(--grad-primary);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.en-app::before { display: none; }

.en-app-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.en-app-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.en-app-text p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2rem; }

.en-app-stores { display: flex; gap: 1rem; flex-wrap: wrap; }

.en-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.en-store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--primary-dark); }
.en-store-btn i { font-size: 1.4rem; color: var(--primary); }

.en-store-btn .btn-sub { font-size: 0.7rem; font-weight: 400; opacity: 0.6; display: block; line-height: 1; }
.en-store-btn .btn-main { display: block; line-height: 1.2; }

.en-app-features { display: flex; flex-direction: column; gap: 0.9rem; }

.en-app-feat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.en-app-feat i { color: #03B866; font-size: 1.1rem; flex-shrink: 0; }
.en-app-feat span { color: rgba(255,255,255,0.9); font-size: 0.93rem; font-weight: 500; }

/* ============================================
   CHECKLIST / ABOUT
   ============================================ */
.en-about { padding: 5rem 1.5rem; }

.en-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.en-about-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.en-about-content p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

.en-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }

.en-checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.97rem;
  color: var(--text-mid);
  font-weight: 500;
}

.en-checklist li i { color: #03B866; font-size: 1rem; flex-shrink: 0; }

.en-about-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.en-about-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(16, 117, 104, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

.en-about-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; }
.en-about-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   CTA
   ============================================ */
.en-cta {
  padding: 5rem 1.5rem;
  background: var(--bg);
  text-align: center;
}

.en-cta-inner { max-width: 700px; margin: 0 auto; }

.en-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.en-cta p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }

.en-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.5rem;
  background: #03B866;
  color: #1B3132;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(4, 217, 118, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.en-btn-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(4, 217, 118, 0.45); color: #1B3132; }

/* ============================================
   FOOTER
   ============================================ */
.en-footer {
  background: var(--primary-dark);
  padding: 2.5rem 1.5rem;
}

.en-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.en-footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.en-footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.en-footer-name { color: rgba(255,255,255,0.9); font-weight: 700; font-size: 1rem; }

.en-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.en-footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.en-footer-links a:hover { color: #03B866; }

.en-footer-copy { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .en-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .en-hero-title { font-size: 2.4rem; }
  .en-features-grid { grid-template-columns: repeat(2, 1fr); }
  .en-combo-inner, .en-app-inner, .en-about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .en-hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .en-navbar { top: 8px; width: calc(100% - 24px); }
  .en-nav-links { display: none; flex-direction: column; position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border-radius: 12px; padding: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 0.5rem; }
  .en-nav-links.open { display: flex; }
  .en-menu-toggle { display: block; }
  .en-hero { padding: 6.5rem 1rem 3rem; }
  .en-hero-title { font-size: 2rem; }
  .en-features-grid { grid-template-columns: 1fr; }
  .en-hero-visual { grid-template-columns: 1fr; }
  .en-footer-inner { flex-direction: column; text-align: center; }
  .en-footer-links { justify-content: center; }
}

/* ============================================
   FUNNEL ADDITIONS (reuse :root tokens)
   ============================================ */

/* Hero brand title + tagline */
.en-hero-title-brand {
  font-size: 5.2rem;
  letter-spacing: -2px;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.en-hero-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

/* Hero Diego photo + floating stat chips */
.en-hero-text {
  align-self: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 12px 44px rgba(27, 49, 50, 0.14);
}
.en-hero-visual { height: 100%; flex-direction: row; align-items: flex-end; justify-content: center; }
.en-hero-photo { position: relative; display: flex; justify-content: center; align-items: flex-end; height: 100%; width: 100%; }
.en-hero-photo::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 108%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,117,104,0.16) 0%, rgba(4,217,118,0.07) 45%, transparent 70%);
  z-index: 0;
}
.en-hero-diego {
  position: relative;
  z-index: 1;
  max-height: 92vh;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 22px 44px rgba(16,117,104,0.28));
}
.en-hero-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow-md);
}
.en-hero-chip.chip-top { top: 14%; left: -6px; }
.en-hero-chip.chip-bottom { bottom: 16%; right: -6px; }

/* Hero positioning line */
.en-hero-hook {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 480px;
  padding-left: 0.9rem;
  border-left: 3px solid var(--accent);
}
.en-hero-hook strong { color: var(--primary); font-weight: 700; }

/* CTA modifier */
.en-btn-cta.full { width: 100%; justify-content: center; }

/* Section title/badge/sub light variants (for dark bg) */
.en-section-title.light { color: #fff; }
.en-section-sub.light { color: rgba(255,255,255,0.78); }
.en-section-badge.light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92);
}

/* --- É PRA VOCÊ QUE --- */
.en-foryou { padding: 5rem 1.5rem; background: var(--bg); }
.en-foryou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.en-foryou-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.5;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.en-foryou-item:hover { box-shadow: var(--shadow-md); border-color: rgba(16,117,104,0.22); }
.en-foryou-item i { color: var(--accent); font-size: 1.05rem; flex-shrink: 0; margin-top: 0.15rem; }
.en-foryou-cta { text-align: center; }

/* --- MÉTODO / SISTEMA --- */
.en-method {
  padding: 5rem 1.5rem;
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
}
.en-method::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(4,217,118,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.en-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.en-method-pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, background 0.2s;
}
.en-method-pillar:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.en-method-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.en-method-pillar h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.en-method-pillar p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.en-method-cta { text-align: center; }

/* --- DEPOIMENTOS --- */
.en-depo-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.en-depo-video {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.en-depo-frame { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.en-depo-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Vídeo de apresentação — player único centralizado */
.en-intro-video {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

/* Lite YouTube facade */
.en-yt { cursor: pointer; border: 0; overflow: hidden; }
.en-yt:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.en-yt-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.en-yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 50px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.72);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.25rem;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}
.en-yt:hover .en-yt-play, .en-yt:focus-visible .en-yt-play {
  background: var(--accent);
  color: #06301f;
  transform: translate(-50%, -50%) scale(1.06);
}
.en-depo-video h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 1.25rem 1.5rem 0.5rem; }
.en-depo-video p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0 1.5rem 1.5rem; }

.en-depo-carousel-title { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); text-align: center; margin-bottom: 1.25rem; }
.en-carousel { display: flex; align-items: center; gap: 0.75rem; }
.en-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.en-carousel-track::-webkit-scrollbar { display: none; }
.en-carousel-slide {
  scroll-snap-align: start;
  flex: 0 0 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
}
.en-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.en-carousel-slide.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--bg);
  border: 2px dashed rgba(16,117,104,0.25);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.en-carousel-slide.placeholder i { font-size: 1.8rem; color: rgba(16,117,104,0.4); }

/* Review screenshots (uniform height film-strip) */
.en-review { flex: 0 0 auto; }
.en-review img {
  display: block;
  height: 360px;
  width: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
@media (max-width: 640px) { .en-review img { height: 300px; } }
.en-carousel-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.2s;
}
.en-carousel-btn:hover { background: var(--primary); color: #fff; transform: scale(1.05); }

/* --- APP SCREENSHOTS CAROUSEL --- */
.en-appshots { background: var(--bg); }
.en-appshots-carousel .en-carousel-track { align-items: stretch; padding-bottom: 0.5rem; }
.en-appshot { scroll-snap-align: start; flex: 0 0 250px; }
.en-appshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) {
  .en-appshot { flex-basis: 200px; }
}

/* --- ANCORAGEM + OFERTA --- */
.en-anchor { padding: 5rem 1.5rem; background: var(--bg-white); }
.en-anchor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.en-anchor-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.en-anchor-card.sozinho {
  background: var(--bg-white);
  border: 1px solid var(--border);
}
.en-anchor-card.sozinho h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.25rem; }
.en-anchor-card.sozinho h3 i { color: #c0392b; margin-right: 0.4rem; }
.en-anchor-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.en-anchor-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }
.en-anchor-list li i { font-size: 0.4rem; color: var(--accent-warm); margin-top: 0.5rem; flex-shrink: 0; }
.en-anchor-total {
  border-top: 1px dashed var(--border);
  padding-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.en-anchor-total strong { color: #c0392b; font-size: 1.05rem; }
.en-anchor-total span { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem; }

.en-anchor-card.oferta {
  background: var(--grad-primary);
  border: 1px solid var(--primary);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.en-pricing-badge {
  display: inline-block;
  background: var(--accent);
  color: #06301f;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.en-pricing-lead { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1.5rem; max-width: 320px; }
.en-pricing-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; }
.en-pricing-price { margin-bottom: 0.5rem; }
.en-pricing-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.en-pricing-cash { display: block; color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.25rem; }
.en-pricing-access {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.en-anchor-card.oferta .en-btn-cta { max-width: 320px; }

/* --- BÔNUS --- */
.en-bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.en-bonus-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.en-bonus-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.en-bonus-card:hover .en-bonus-img { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.en-bonus-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
}

/* --- GARANTIA --- */
.en-garantia { padding: 4rem 1.5rem; background: var(--bg-white); }
.en-garantia-card {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.en-garantia-seal {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(4,217,118,0.12);
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.en-garantia-seal i { font-size: 2.2rem; margin-bottom: 0.25rem; }
.en-garantia-seal span { font-size: 0.95rem; font-weight: 800; }
.en-garantia-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.6rem; }
.en-garantia-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 0.6rem; }
.en-garantia-text strong { color: var(--primary); font-size: 1rem; }

/* --- FAQ --- */
.en-faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.en-faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.en-faq-item.open { border-color: rgba(16,117,104,0.3); }
.en-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  font-family: inherit;
  box-shadow: none;
  outline: none;
}
.en-faq-q:hover, .en-faq-q:focus, .en-faq-q:focus-visible, .en-faq-q:active {
  box-shadow: none;
  outline: none;
  border: none;
}
.en-faq-q i { color: var(--primary); font-size: 0.9rem; transition: transform 0.25s; flex-shrink: 0; }
.en-faq-item.open .en-faq-q i { transform: rotate(45deg); }
.en-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.en-faq-item.open .en-faq-a { max-height: 320px; }
.en-faq-a p { padding: 0.9rem 1.4rem 1.3rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* --- PROFESSOR --- */
.en-prof { padding: 5rem 1.5rem; background: var(--bg); }
.en-prof-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.en-prof-media { position: relative; max-width: 420px; }
.en-prof-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 540px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-md);
}
.en-prof-text h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text-dark); margin: 0.5rem 0 1rem; }
.en-prof-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.en-prof-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.en-prof-stats div { display: flex; flex-direction: column; }
.en-prof-stats span { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.en-prof-stats small { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

/* --- Funnel responsive --- */
@media (max-width: 900px) {
  .en-hero { padding-bottom: 2rem; }
  .en-hero-title-brand { font-size: 4.2rem; }
  .en-hero-photo { margin-top: 1rem; }
  .en-hero-diego { max-height: 460px; }
  .en-foryou-grid { grid-template-columns: repeat(2, 1fr); }
  .en-method-grid { grid-template-columns: repeat(2, 1fr); }
  .en-depo-videos { grid-template-columns: 1fr; }
  .en-anchor-grid { grid-template-columns: 1fr; }
  .en-bonus-grid { grid-template-columns: 1fr; }
  .en-prof-grid { grid-template-columns: 1fr; gap: 2rem; }
  .en-garantia-card { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .en-hero-title-brand { font-size: 3.2rem; }
  .en-hero-diego { max-height: 360px; }
  .en-hero-chip.chip-top { left: 0; top: 8%; }
  .en-hero-chip.chip-bottom { right: 0; bottom: 10%; }
  .en-foryou-grid { grid-template-columns: 1fr; }
  .en-method-grid { grid-template-columns: 1fr; }
  .en-carousel-slide { flex-basis: 220px; height: 160px; }
  .en-pricing-value { font-size: 2.6rem; }
  .en-anchor-card, .en-garantia-card { padding: 1.75rem; }
}

/* ===== Lightbox para ampliar screenshots dos recursos ===== */
.en-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(27, 49, 50, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.en-lightbox.open { opacity: 1; visibility: visible; }

.en-lightbox-img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.en-lightbox.open .en-lightbox-img { transform: scale(1); }

.en-lightbox-close {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.5rem);
  right: clamp(0.75rem, 2vw, 1.5rem);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.en-lightbox-close:hover { background: rgba(255, 255, 255, 0.26); transform: scale(1.06); }
