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

:root {
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --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-links a.active,
.nav-dropdown-menu a.active {
  opacity: 1;
  color: var(--accent);
}

.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-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.nav-logout:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: transform 0.2s;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 180px;
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  opacity: 1 !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;
}

/* ===== INAUGURATION RIBBON ===== */
.inauguration-ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px 0;
  cursor: pointer;
  background: rgba(245, 166, 35, 0.15);
  padding: 12px;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.3);
  transition: all 0.3s ease;
  animation: ribbon-pulse 2s infinite;
}

.inauguration-ribbon:hover {
  transform: scale(1.1) rotate(5deg);
  background: rgba(245, 166, 35, 0.25);
}

@keyframes ribbon-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.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, #2563eb 0%, #3b82f6 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;
}

/* ── Opportunities filters ─────────────────────────────── */
.opp-filters {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.opp-filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  transition: border-color 0.2s;
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

.opp-filter-group:focus-within {
  border-color: var(--accent);
}

.opp-filter-group svg {
  color: var(--text-light);
  flex-shrink: 0;
}

.opp-filter-input {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  width: 100%;
}

.opp-filter-input::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.opp-filter-select {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  width: 100%;
  cursor: pointer;
  appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.opp-filter-select:focus {
  outline: none;
}

/* ── Opportunities grid ─────────────────────────────────── */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.opp-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.opp-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(26, 107, 196, 0.08);
  transform: translateY(-2px);
}

.opp-item-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.opp-item-titulo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.opp-item-empresa {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.opp-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opp-item-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-light);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.opp-item-descricao {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.opp-item-descricao.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.opp-ler-mais {
  display: inline-block;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  align-self: flex-start;
  transition: color 0.2s;
}

.opp-ler-mais:hover {
  color: var(--accent-hover);
}

.opp-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.opp-item-data {
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.7;
}

.opp-item-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.opp-item-link:hover {
  color: var(--accent-hover);
}

.opp-item-admin {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.opp-item-edit,
.opp-item-delete {
  padding: 6px 14px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.opp-item-edit {
  background: var(--bg);
  color: var(--accent);
}

.opp-item-edit:hover {
  background: rgba(26, 107, 196, 0.1);
}

.opp-item-delete {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}

.opp-item-delete:hover {
  background: rgba(239, 68, 68, 0.15);
}

.opp-item-expired {
  opacity: 0.6;
}

.opp-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.opp-badge-expired {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* ── Loading ────────────────────────────────────────────── */
.opp-loading {
  text-align: center;
  padding: 40px;
}

/* ── Admin bar ──────────────────────────────────────────── */
.opp-admin-bar {
  margin-top: 24px;
  margin-bottom: 0;
}

.opp-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.opp-admin-btn:hover {
  background: var(--accent-hover);
}

/* ── Modal ──────────────────────────────────────────────── */
.opp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  overflow-y: auto;
}

.opp-modal-content {
  background: white;
  border-radius: 20px;
  padding: 32px;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.opp-modal-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.opp-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.opp-modal-close:hover {
  color: var(--text);
}

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

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

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

.opp-form .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.opp-form .form-group input,
.opp-form .form-group select,
.opp-form .form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.opp-form .form-group input:focus,
.opp-form .form-group select:focus,
.opp-form .form-group textarea:focus {
  border-color: var(--accent);
}

.opp-form .form-group textarea {
  resize: vertical;
}

.opp-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.opp-btn-cancel {
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.opp-btn-cancel:hover {
  background: var(--bg);
}

.opp-btn-save {
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.opp-btn-save:hover {
  background: var(--accent-hover);
}

.opp-btn-save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .opp-filters {
    flex-direction: column;
  }

  .opp-filter-group {
    max-width: none;
  }

  .opp-grid {
    grid-template-columns: 1fr;
  }

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

  .opp-modal-content {
    padding: 24px;
  }

  .opp-item-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== 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, #2563eb, #60a5fa); }
.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, #3b82f6, #2563eb); }
.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);
}

/* ===== TEXT MODAL ===== */
.text-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.text-modal-content {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.text-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s ease;
  line-height: 1;
}

.text-modal-close:hover {
  color: var(--accent);
}

.text-modal-body {
  color: var(--text);
}

.modal-ribbon-icon {
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.text-modal-body h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--bg-dark);
  text-align: center;
}

.text-modal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: justify;
}

/* ===== 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;
  position: relative;
  cursor: pointer;
}

.partner-name {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 10;
  letter-spacing: 0.3px;
}

.partner-name::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--primary);
}

.partner-logo.active .partner-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.partner-logo:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
  border-color: transparent;
  color: var(--text);
}

.partner-img {
  padding: 10px;
}

.partner-img img {
  max-width: 110%;
  max-height: 110%;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.partner-logo:hover .partner-img img,
.partner-img img:hover {
  filter: grayscale(0%);
}

.remove-bg {
  mix-blend-mode: multiply;
}

.partner-lg img {
  max-width: 130%;
  max-height: 130%;
}

.partner-vektor img {
  max-width: 160%;
  max-height: 160%;
}

.partner-cta {
  text-align: center;
}

.partner-cta-card {
  text-decoration: none;
  border-style: dashed;
  border-color: var(--primary);
  background: var(--bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.partner-cta-card:hover {
  background: var(--primary);
  color: white;
  border-style: solid;
  border-color: var(--primary);
}

/* ===== CONTACT ===== */
.contact {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 0;
  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);
}


/* ===== 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: 24px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .nav-logo {
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 12px;
  opacity: 0.5;
  line-height: 1.5;
  max-width: 800px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  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: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-bottom p {
  font-size: 12px;
  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; gap: 16px; }
  .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: 4px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links > li > a { padding: 12px 0; display: block; }
  .nav-toggle { display: flex; }
  .nav-dropdown-menu {
    position: static;
    display: block !important;
    background: rgba(255,255,255,0.06);
    border: none;
    box-shadow: none;
    margin-top: 0;
    border-radius: 6px;
    padding: 4px 0;
  }
  .nav-dropdown > a { padding: 12px 0; pointer-events: none; }
  .nav-dropdown > a::after { display: none; }
  .nav-dropdown-menu a { padding: 10px 16px; font-size: 13px; }
  .nav-cta { width: 100%; text-align: center; display: block !important; }
  .nav-links > li:nth-last-child(2) > a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white !important;
    opacity: 1 !important;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .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: 20px 0 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
  .footer-brand { flex-wrap: wrap; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .nav-logo-sub { font-size: 10px; }
  .auth-card { padding: 28px 20px; }
  .carteira-card { padding: 24px 20px 20px; }
  .carteira-card-main { gap: 16px; }
  .carteira-card-photo { width: 72px; height: 90px; }
  .carteira-card-row { gap: 16px; }
  .carteira-actions { grid-template-columns: 1fr; }
  .carteira-wrapper { max-width: 100%; }
}

@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-x: hidden;
  overflow-y: visible;
  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;
  padding-bottom: 40px;
}

.partners-marquee .partners-track {
  display: flex;
  gap: 24px;
  animation: scroll-partners 90s linear infinite;
  width: max-content;
}

@keyframes scroll-partners {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.partners-marquee .partner-logo {
  flex-shrink: 0;
}

/* ===== AUTH PAGES (Login / Cadastro) ===== */
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 60px;
  background: var(--bg);
}

.auth-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  background: white;
  margin-bottom: 20px;
}

.auth-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
}

.auth-form {
  margin-top: 0;
}

.auth-error {
  color: #ef4444;
  font-size: 13px;
  font-weight: 500;
  min-height: 20px;
  margin-bottom: 12px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-back:hover {
  color: var(--accent);
  text-decoration: none;
}

.auth-loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: auth-spin 0.6s linear infinite;
}

@keyframes auth-spin {
  to { transform: rotate(360deg); }
}

/* ===== CARTEIRA DIGITAL ===== */
.carteira-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.carteira-card {
  background: linear-gradient(145deg, #0a2540 0%, #0f3460 60%, #16213e 100%);
  border-radius: 20px;
  padding: 32px 28px 24px;
  color: white;
  box-shadow: 0 12px 40px rgba(10,37,64,0.35);
  position: relative;
  overflow: hidden;
  max-width: 520px;
}

.carteira-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.carteira-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.carteira-card > * {
  position: relative;
  z-index: 1;
}

.carteira-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.carteira-card-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: white;
  padding: 4px;
}

.carteira-card-org {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.carteira-card-sub {
  font-size: 11px;
  opacity: 0.55;
  font-weight: 400;
  margin-top: 2px;
}

.carteira-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

.carteira-card-row {
  display: flex;
  gap: 24px;
}

.carteira-card-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.carteira-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.5;
  font-weight: 600;
}

.carteira-card-value {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.carteira-status {
  color: #34d399;
}

.carteira-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.carteira-card-footer canvas {
  border-radius: 8px;
}

/* Card main layout: body + photo */
.carteira-card-main {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.carteira-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.carteira-card-photo {
  flex-shrink: 0;
  width: 90px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carteira-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carteira-photo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  position: absolute;
  inset: 0;
}

.carteira-photo-btn:hover {
  color: rgba(255,255,255,0.7);
}

.carteira-card-photo img[src] ~ .carteira-photo-btn {
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.2s;
}

.carteira-card-photo:hover .carteira-photo-btn {
  opacity: 1;
}

.carteira-card-photo img[src] ~ .carteira-photo-btn svg {
  display: none;
}

.carteira-card-photo img[src] ~ .carteira-photo-btn::after {
  content: 'Trocar';
  font-size: 11px;
  font-weight: 600;
  color: white;
}

/* Logout button */
.carteira-logout {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.carteira-logout:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

/* Info grid */
.carteira-info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.carteira-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}

.carteira-info-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.carteira-info-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Action buttons */
.carteira-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.carteira-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all 0.25s;
  font-family: inherit;
}

.carteira-action-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.carteira-action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== ADMIN BADGE ===== */
.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== ADMIN PANEL ===== */
.admin-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.admin-search:focus-within {
  border-color: var(--accent);
}

.admin-search svg {
  flex-shrink: 0;
  color: var(--text-light);
}

.admin-search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.admin-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.admin-btn-primary:hover {
  background: var(--accent-hover);
  color: white;
}

/* Table */
.admin-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table thead {
  background: var(--bg);
}

.admin-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.03);
}

.admin-tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
}

.admin-status.ativo::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.admin-status.inativo::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #ef4444;
  border-radius: 50%;
}

.admin-actions-cell {
  display: flex;
  gap: 6px;
}

.admin-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: none;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s;
}

.admin-icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59,130,246,0.05);
}

.admin-icon-btn-danger:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

/* Toggle switch */
.admin-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.admin-toggle input { display: none; }

.admin-toggle-slider {
  width: 38px;
  height: 22px;
  background: var(--border);
  border-radius: 11px;
  position: relative;
  transition: background 0.2s;
}

.admin-toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.admin-toggle input:checked + .admin-toggle-slider {
  background: var(--green);
}

.admin-toggle input:checked + .admin-toggle-slider::after {
  transform: translateX(16px);
}

.admin-toggle-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.admin-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

/* Modal */
.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  overflow-y: auto;
}

.admin-modal-content {
  background: var(--bg);
  width: 100%;
  min-height: 100vh;
  padding: 32px;
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 32px;
}

.admin-modal-header h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.admin-modal-close {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.admin-modal-close:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

.admin-modal-form {
  max-width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 768px) {
  .admin-panel { padding: 20px 16px; }
  .admin-panel-header { flex-direction: column; align-items: flex-start; }
  .admin-table th:nth-child(3),
  .admin-table td:nth-child(3),
  .admin-table th:nth-child(5),
  .admin-table td:nth-child(5) { display: none; }
  .admin-modal-content { padding: 16px; }
  .admin-modal-form { padding: 20px 16px; }
}
}
