*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #0a2540;
  --primary-light: #0f3460;
  --accent: #1a6bc4;
  --accent-hover: #145aa0;
  --green: #10b981;
  --gold: #f5a623;
  --bg: #f8f9fb;
  --bg-dark: #0a2540;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --text-white: #e2e8f0;
  --card: #ffffff;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: white;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  background: white;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.nav-logo-sub {
  font-size: 11px;
  color: var(--text-white);
  opacity: 0.6;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-hover) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0a2540 0%, #0f3460 40%, #16213e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 107, 196, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold), #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-white);
  opacity: 0.65;
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 107, 196, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(26, 107, 196, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-stat-icon.icon-gold {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold);
}

.hero-stat-icon.icon-green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
}

.hero-stat-location {
  font-size: 16px;
  line-height: 1.35;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-white);
  opacity: 0.45;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-image {
  border-radius: 20px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 20px;
}

.about-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-card {
  background: var(--bg);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-card:nth-child(1) { border-top: 3px solid var(--accent); }
.value-card:nth-child(2) { border-top: 3px solid var(--gold); }
.value-card:nth-child(3) { border-top: 3px solid var(--green); }

.value-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card:nth-child(1) h4 { color: var(--accent); }
.value-card:nth-child(2) h4 { color: var(--gold); }
.value-card:nth-child(3) h4 { color: var(--green); }

.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.president-info {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.president-info:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.president-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.president-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

.president-role {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.cnpj-info {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cnpj-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ===== BENEFITS ===== */
.benefits { background: var(--bg); }

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header .section-subtitle {
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:nth-child(1) .benefit-icon,
.benefit-card:nth-child(5) .benefit-icon { color: var(--accent); background: linear-gradient(135deg, rgba(26, 107, 196, 0.1), rgba(26, 107, 196, 0.02)); }
.benefit-card:nth-child(2) .benefit-icon,
.benefit-card:nth-child(6) .benefit-icon { color: var(--gold); background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(245, 166, 35, 0.02)); }
.benefit-card:nth-child(3) .benefit-icon,
.benefit-card:nth-child(7) .benefit-icon { color: var(--green); background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.02)); }
.benefit-card:nth-child(4) .benefit-icon,
.benefit-card:nth-child(8) .benefit-icon { color: var(--accent); background: linear-gradient(135deg, rgba(26, 107, 196, 0.1), rgba(26, 107, 196, 0.02)); }

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(-5deg);
}

.benefit-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.4;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== PILARS ===== */
.pilars { background: white; }

.pilars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.pilar-card {
  padding: 40px 32px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pilar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pilar-card.represent { background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%); }
.pilar-card.employ { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.pilar-card.train { background: linear-gradient(135deg, #f5a623 0%, #e8971e 100%); }

.pilar-number {
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.pilar-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.pilar-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.pilar-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
}

/* ===== SECTORS ===== */
.sectors {
  background: var(--bg-dark);
  overflow: hidden;
}

.sectors .section-label { color: var(--gold); }

.sectors-header {
  text-align: center;
  margin-bottom: 48px;
}

.sectors-header .section-title { color: white; }
.sectors-header .section-subtitle { color: var(--text-white); opacity: 0.6; margin: 0 auto; }

.sectors-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.sectors-track {
  display: flex;
  gap: 16px;
  animation: scroll-sectors 45s linear infinite;
  width: max-content;
}

@keyframes scroll-sectors {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

.sector-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.sector-pill:nth-child(odd) .sector-pill-dot { background: var(--accent); }
.sector-pill:nth-child(even) .sector-pill-dot { background: var(--gold); }

/* ===== COURSES ===== */
.courses { background: white; }

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.course-features {
  display: grid;
  gap: 16px;
}

.course-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.course-feature:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.course-feature:nth-child(1) .course-feature-icon { background: rgba(26, 107, 196, 0.08); color: var(--accent); }
.course-feature:nth-child(2) .course-feature-icon { background: rgba(245, 166, 35, 0.08); color: var(--gold); }
.course-feature:nth-child(3) .course-feature-icon { background: rgba(16, 185, 129, 0.08); color: var(--green); }

.course-feature h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.course-feature p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== OPPORTUNITIES ===== */
.opportunities {
  background: var(--bg);
  text-align: center;
}

.opportunities .section-subtitle {
  margin: 0 auto 40px;
}

.opp-card {
  background: white;
  border: 2px dashed var(--border);
  border-radius: 24px;
  padding: 80px 40px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease;
}

.opp-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(26, 107, 196, 0.05);
}

.opp-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-light);
  opacity: 0.2;
  line-height: 1;
}

.opp-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 12px;
}

.opp-sub {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.5;
  margin-top: 8px;
}

/* ===== BOARD ===== */
.board { background: white; }

.board-header {
  text-align: center;
  margin-bottom: 60px;
}

.board-header .section-subtitle { margin: 0 auto; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.board-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border);
}

.board-card:hover {
  background: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: transparent;
  transform: translateY(-3px);
}

.board-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.board-avatar.president { background: linear-gradient(135deg, #0a2540, #0f3460); }
.board-avatar.vice { background: linear-gradient(135deg, #10b981, #059669); }
.board-avatar.admin { background: linear-gradient(135deg, #f5a623, #e8971e); }
.board-avatar.comms { background: linear-gradient(135deg, #1a6bc4, #145aa0); }
.board-avatar.technical { background: linear-gradient(135deg, #10b981, #059669); }
.board-avatar.legal { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.board-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.board-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.board-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

.board-number {
  font-size: 11px;
  color: var(--text-light);
  opacity: 0.4;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--bg); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text-light);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: transparent;
}

.gallery-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-thumb {
  transform: scale(1.05);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-thumb::after {
  opacity: 1;
}

.gallery-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 11px;
  color: white;
  font-weight: 500;
  z-index: 1;
}

.gallery-info {
  padding: 16px 20px;
}

.gallery-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-info p {
  font-size: 12px;
  color: var(--text-light);
}

/* ===== VIDEO GALLERY ===== */
.video-thumb {
  cursor: pointer;
}

.play-icon {
  position: absolute;
  font-size: 48px;
  color: white;
  z-index: 2;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.video-thumb:hover .play-icon {
  transform: scale(1.2);
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 2001;
}

.video-modal-close:hover {
  color: var(--accent);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 80vh;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: white;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 2001;
}

.image-modal-close:hover {
  color: var(--accent);
}

/* ===== NEWSLETTER / MEDIA GALLERY ===== */
.newsletter-section {
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  padding: 80px 0;
  overflow-x: hidden;
}

.newsletter-header {
  margin-bottom: 50px;
}

.newsletter-header .section-title {
  margin-bottom: 0;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.newsletter-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.newsletter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}

.newsletter-thumb {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-thumb:hover {
  transform: scale(1.08);
}

.newsletter-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.newsletter-thumb:hover::after {
  opacity: 1;
}

.newsletter-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  inset: 0;
  background: var(--bg);
}

.newsletter-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: rgba(10, 37, 64, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 11px;
  color: white;
  font-weight: 600;
  z-index: 1;
}

.newsletter-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.newsletter-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.newsletter-desc {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}

.newsletter-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  min-height: 60px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== PLANS ===== */
.plans { background: white; }

.plans-header {
  text-align: center;
  margin-bottom: 60px;
}

.plans-header .section-subtitle { margin: 0 auto; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  border: 2px solid var(--border);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.plan-card.popular {
  background: var(--bg-dark);
  color: white;
  border-color: var(--accent);
  transform: scale(1.04);
}

.plan-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 107, 196, 0.2);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(26, 107, 196, 0.3);
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.plan-period {
  font-size: 14px;
  opacity: 0.5;
  margin-bottom: 28px;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.plan-card.popular .plan-features li {
  border-color: rgba(255,255,255,0.08);
}

.plan-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.plan-btn-outline {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border);
}

.plan-btn-outline:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.plan-btn-primary {
  background: var(--accent);
  color: white;
}

.plan-btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 107, 196, 0.35);
}

.donation-note {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--bg);
  border-radius: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.donation-note strong {
  color: var(--accent);
}

/* ===== PARTNERS ===== */
.partners { background: var(--bg); }

.partners-header {
  text-align: center;
  margin-bottom: 48px;
}

.partners-header .section-subtitle { margin: 0 auto; }

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.partner-logo {
  width: 140px;
  height: 80px;
  background: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--text-light);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
  border-color: transparent;
  color: var(--text);
}

.partner-cta {
  text-align: center;
}

/* ===== CONTACT ===== */
.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.contact-item:hover {
  background: var(--bg);
}

.contact-item-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item-value {
  font-weight: 600;
  font-size: 15px;
}

.contact-social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-light);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.contact-social:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.2);
}

.contact-form {
  background: var(--bg);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.25s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 196, 0.08);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 107, 196, 0.3);
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.form-submit:hover::before {
  transform: translateX(100%);
}

/* ===== BENEFIT ICON ===== */
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.course-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.5;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-white);
  opacity: 0.45;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.footer-col ul a:hover {
  opacity: 1;
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-social:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.35;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .courses-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .newsletter-thumb { height: 200px; }
  .plans-grid { max-width: 100%; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.98);
    padding: 24px;
    gap: 16px;
  }
  .nav-toggle { display: flex; }

  .hero-stats { flex-direction: column; gap: 0; padding: 20px 24px; }
  .hero-stat { padding: 14px 0; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pilars-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .newsletter-section { padding: 60px 0; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 16px; }
  .newsletter-thumb { height: 180px; }
  .newsletter-info { padding: 16px; }
  .newsletter-info h3 { font-size: 14px; }
  .newsletter-desc { font-size: 12px; }
  .newsletter-text { font-size: 13px; min-height: 50px; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-particles span { width: 6px; height: 6px; }

  .footer { padding: 60px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand p { max-width: 100%; }
  .footer-col h4 { margin-bottom: 14px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-logo-center { width: 48px; height: 48px; }
  .footer-logo-separator { padding-bottom: 32px; }
  .nav-logo-sub { font-size: 10px; }
}

@media (max-width: 480px) {
  .newsletter-grid { grid-template-columns: 1fr; gap: 12px; }
  .newsletter-section { padding: 40px 0; }
  .newsletter-thumb { height: 150px; }
  .newsletter-card { border-radius: 12px; }
  .newsletter-info { padding: 12px; }
  .newsletter-info h3 { font-size: 13px; margin-bottom: 4px; }
  .newsletter-desc { font-size: 11px; margin-bottom: 8px; }
  .newsletter-text { font-size: 12px; line-height: 1.5; min-height: auto; }
  .container { padding: 0 16px; }
}

@media (max-width: 360px) {
  .newsletter-grid { gap: 10px; }
  .newsletter-section { padding: 30px 0; }
  .newsletter-thumb { height: 140px; }
  .newsletter-info { padding: 10px; }
  .newsletter-info h3 { font-size: 12px; }
  .newsletter-desc { font-size: 10px; }
  .newsletter-text { font-size: 11px; min-height: 40px; }
}

/* ===== HERO PARTICLES ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(26, 107, 196, 0.2);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

.hero-particles span:nth-child(1) { left: 10%; width: 8px; height: 8px; animation-duration: 18s; animation-delay: 0s; background: rgba(26, 107, 196, 0.25); }
.hero-particles span:nth-child(2) { left: 25%; width: 6px; height: 6px; animation-duration: 22s; animation-delay: -3s; background: rgba(245, 166, 35, 0.25); }
.hero-particles span:nth-child(3) { left: 40%; width: 12px; height: 12px; animation-duration: 16s; animation-delay: -6s; background: rgba(255, 255, 255, 0.1); }
.hero-particles span:nth-child(4) { left: 55%; width: 7px; height: 7px; animation-duration: 20s; animation-delay: -2s; background: rgba(16, 185, 129, 0.2); }
.hero-particles span:nth-child(5) { left: 70%; width: 10px; height: 10px; animation-duration: 24s; animation-delay: -5s; background: rgba(245, 166, 35, 0.18); }
.hero-particles span:nth-child(6) { left: 85%; width: 5px; height: 5px; animation-duration: 19s; animation-delay: -1s; background: rgba(255, 255, 255, 0.12); }
.hero-particles span:nth-child(7) { left: 15%; width: 9px; height: 9px; animation-duration: 21s; animation-delay: -4s; background: rgba(16, 185, 129, 0.18); }
.hero-particles span:nth-child(8) { left: 50%; width: 6px; height: 6px; animation-duration: 17s; animation-delay: -7s; background: rgba(26, 107, 196, 0.15); }
.hero-particles span:nth-child(9) { left: 65%; width: 11px; height: 11px; animation-duration: 23s; animation-delay: -8s; background: rgba(245, 166, 35, 0.15); }
.hero-particles span:nth-child(10) { left: 90%; width: 8px; height: 8px; animation-duration: 15s; animation-delay: -3s; background: rgba(255, 255, 255, 0.08); }

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ===== NAVBAR SCROLL EFFECT ===== */
.navbar.scrolled {
  background: rgba(10, 37, 64, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal > *:nth-child(1) { transition-delay: 0.05s; }
.reveal > *:nth-child(2) { transition-delay: 0.1s; }
.reveal > *:nth-child(3) { transition-delay: 0.15s; }
.reveal > *:nth-child(4) { transition-delay: 0.2s; }
.reveal > *:nth-child(5) { transition-delay: 0.25s; }
.reveal > *:nth-child(6) { transition-delay: 0.3s; }
.reveal > *:nth-child(7) { transition-delay: 0.35s; }
.reveal > *:nth-child(8) { transition-delay: 0.4s; }

/* ===== BENEFIT HOVER EFFECTS ===== */

/* ===== PARTNERS MARQUEE ===== */
.partners-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 40px;
}

.partners-marquee .partners-track {
  display: flex;
  gap: 24px;
  animation: scroll-partners 30s linear infinite;
  width: max-content;
}

@keyframes scroll-partners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partners-marquee .partner-logo {
  flex-shrink: 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(26, 107, 196, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 107, 196, 0.4);
}

/* ===== FOOTER LOGO SEPARATOR ===== */
.footer-logo-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 48px;
  position: relative;
}

.footer-logo-separator::before,
.footer-logo-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.footer-logo-center {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,0.08);
  padding: 6px;
  margin: 0 24px;
}

/* end of file */