/* ============================================
   RESET E VARIÁVEIS GLOBAIS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta Futurista */
  --primary-blue: #0a1e3f;
  --secondary-blue: #1a3a6e;
  --accent-cyan: #00d9ff;
  --accent-purple: #7c3aed;
  --accent-pink: #ec4899;
  --dark-bg: #0f172a;
  --darker-bg: #0a0f1f;
  --light-text: #f0f4f8;
  --text-gray: #a0aec0;
  --white: #ffffff;

  /* Sombras Modernas */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.25);
  --glow: 0 0 20px rgba(0, 217, 255, 0.3);

  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  overflow-x: hidden;
}

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

/* ============================================
   HEADER E NAVEGAÇÃO
   ============================================ */
.header {
  background: rgba(10, 30, 63, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
  filter: brightness(1.1);
}

.logo img:hover {
  transform: scale(1.08);
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
}

.logo-text h1 {
  color: var(--accent-cyan);
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.logo-text p {
  color: var(--accent-purple);
  font-size: 11px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--light-text);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-inscricao {
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-purple) 100%
  );
  color: var(--dark-bg) !important;
  padding: 10px 28px;
  border-radius: 25px;
  transition: var(--transition);
  font-weight: 600;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-inscricao::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-inscricao:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.btn-inscricao:hover::before {
  left: 100%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--accent-cyan);
  cursor: pointer;
}

/* ============================================
   BOTÕES GERAIS
   ============================================ */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-purple) 100%
  );
  color: var(--dark-bg);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::after {
  width: 300px;
  height: 300px;
}

.btn-large {
  padding: 15px 40px;
  font-size: 16px;
}

.btn-secondary {
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--accent-cyan);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.btn-secondary-outline {
  background: transparent;
  color: var(--accent-cyan);
  border: 2px solid var(--accent-cyan);
  font-weight: 600;
}

.btn-secondary-outline:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-3px);
}

.btn-small {
  padding: 10px 24px;
  font-size: 13px;
}

/* ============================================
   HERO BANNER (CAROUSEL)
   ============================================ */
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  padding: 60px 0;
}

.hero-carousel-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0; /* Inicialmente invisível */
  transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
  transform: scale(1.05); /* Efeito de zoom sutil */
}

.hero-bg-image.active {
  opacity: 1;
  transform: scale(1);
}

.animated-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.animated-bg-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-cyan);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.element-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-purple);
  bottom: -50px;
  left: 10%;
  animation-delay: 1s;
}

.element-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-pink);
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 63, 0.7) 0%,
    rgba(26, 58, 110, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
  display: flex; /* Para centralizar o conteúdo do slide */
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Garante que o conteúdo do hero tenha altura mínima */
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(20px); /* Efeito de entrada */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.slide-content-wrapper {
  max-width: 800px;
  padding: 20px;
  background: rgba(
    15,
    23,
    42,
    0.6
  ); /* Fundo semi-transparente para o conteúdo */
  backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.carousel-slide.active .slide-content-wrapper {
  animation: slideUp 0.8s ease-out;
}

/* Alinhamento de Conteúdo */
.content-left {
  text-align: left;
}

.content-right {
  text-align: right;
}

.content-left .hero-cta,
.content-right .hero-cta {
  justify-content: flex-start;
}

.content-right .hero-cta {
  justify-content: flex-end;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.5); /* Efeito de brilho */
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 217, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 25px;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 13px;
  animation: pulse 2s ease-in-out infinite;
  transition: var(--transition);
}

.tech-badge {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.15);
  animation: pulse-purple 2s ease-in-out infinite;
}

.growth-badge {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
  background: rgba(236, 72, 153, 0.15);
  animation: pulse-pink 2s ease-in-out infinite;
}

@keyframes pulse-purple {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
  }
}

@keyframes pulse-pink {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
  }
}

/* Navegação do Carousel */
.carousel-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
}

.nav-button:hover {
  background: var(--accent-cyan);
  color: var(--dark-bg);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.dot.active {
  background: var(--accent-cyan);
  transform: scale(1.2);
  border-color: var(--light-text);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Efeito de Transição de Conteúdo */
.carousel-slide.slide-out {
  opacity: 0;
  transform: translateY(-20px);
}

.carousel-slide.slide-in {
  opacity: 1;
  transform: translateY(0);
}

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

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 217, 255, 0.15);
  border: 1px solid var(--accent-cyan);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 25px;
  color: var(--accent-cyan);
  font-weight: 600;
  font-size: 13px;
  animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
  font-size: 16px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

.promo-highlight {
  margin: 40px 0;
}

.promo-card {
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid var(--accent-cyan);
  border-radius: 16px;
  padding: 30px;
  display: inline-block;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  animation: float 4s ease-in-out infinite;
}

.promo-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.currency {
  font-size: 18px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.period {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 600;
}

.promo-description {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 5px;
  font-weight: 600;
}

.promo-validity {
  font-size: 12px;
  color: var(--accent-pink);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.stat-label {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 5px;
  font-weight: 600;
}

/* ============================================
   SEÇÃO DE CONFIANÇA
   ============================================ */
.trust-section {
  background: linear-gradient(
    135deg,
    rgba(26, 58, 110, 0.3) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.trust-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.trust-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(10, 30, 63, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(0, 217, 255, 0.2);
  backdrop-filter: blur(10px);
}

.trust-item:hover {
  transform: translateY(-8px);
  background: rgba(10, 30, 63, 0.6);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
  border-color: var(--accent-cyan);
}

.trust-icon {
  font-size: 48px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.trust-item h3 {
  color: var(--accent-cyan);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.trust-item p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   TÍTULOS DE SEÇÃO
   ============================================ */
.section-title {
  font-size: 42px;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(
    135deg,
    var(--accent-cyan) 0%,
    var(--accent-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 50px;
  font-weight: 500;
}

/* ============================================
   SEÇÃO DE DESTAQUES
   ============================================ */
.highlights-section {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 217, 255, 0.05) 100%
  );
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.highlight-card {
  background: rgba(10, 30, 63, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.highlight-card:hover {
  transform: translateY(-8px);
  background: rgba(10, 30, 63, 0.7);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  border-color: var(--accent-cyan);
}

.highlight-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.tech-card .highlight-icon {
  color: var(--accent-cyan);
  background: rgba(0, 217, 255, 0.1);
}

.business-card .highlight-icon {
  color: var(--accent-purple);
  background: rgba(124, 58, 237, 0.1);
}

.education-card .highlight-icon {
  color: var(--accent-pink);
  background: rgba(236, 72, 153, 0.1);
}

.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--light-text);
  font-weight: 700;
}

.highlight-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.highlight-features {
  list-style: none;
  margin-bottom: 20px;
}

.highlight-features li {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-features i {
  color: var(--accent-cyan);
  font-size: 16px;
}

/* ============================================
   SEÇÃO DE CURSOS
   ============================================ */
.courses-section {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    var(--darker-bg) 0%,
    var(--dark-bg) 100%
  );
}

.course-category {
  margin-bottom: 70px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.category-icon {
  font-size: 40px;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.category-header h3 {
  font-size: 28px;
  color: var(--light-text);
  font-weight: 700;
  margin: 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.course-card {
  background: rgba(10, 30, 63, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.course-card:hover {
  transform: translateY(-8px);
  background: rgba(10, 30, 63, 0.7);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  border-color: var(--accent-cyan);
}

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: var(--dark-bg);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.course-icon {
  font-size: 40px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.course-card h4 {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 12px;
  font-weight: 700;
}

.course-card p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.course-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-gray);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.course-meta i {
  color: var(--accent-cyan);
}

/* ============================================
   SEÇÃO DE DEPOIMENTOS
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 110, 0.3) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: rgba(10, 30, 63, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(10, 30, 63, 0.7);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  border-color: var(--accent-cyan);
}

.testimonial-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  font-size: 48px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.testimonial-info h4 {
  color: var(--light-text);
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 700;
}

.testimonial-info p {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 8px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: var(--accent-pink);
  font-size: 14px;
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-badge {
  display: inline-block;
  background: rgba(0, 217, 255, 0.1);
  color: var(--accent-cyan);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

/* ============================================
   SEÇÃO DE BENEFÍCIOS
   ============================================ */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    var(--darker-bg) 0%,
    var(--dark-bg) 100%
  );
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(10, 30, 63, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.benefit-item:hover {
  transform: translateY(-8px);
  background: rgba(10, 30, 63, 0.7);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  border-color: var(--accent-cyan);
}

.benefit-icon {
  font-size: 48px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.2) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.benefit-item h3 {
  color: var(--light-text);
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.benefit-item p {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   FORMULÁRIO DE INSCRIÇÃO
   ============================================ */
.registration-form-container {
  background: var(--darker-bg);
  padding: 35px;
  border-radius: 15px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 500px;
  margin-left: 40px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.form-steps-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}

.form-steps-indicator .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid var(--primary-blue);
  transition: var(--transition);
}

.form-steps-indicator .step.active {
  background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
  color: var(--white);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
  transform: scale(1.1);
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 26px;
  color: var(--accent-cyan);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.step-description {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 25px;
  font-size: 15px;
}
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.form-navigation .btn {
  flex-grow: 1;
  margin: 0 5px;
}

.form-navigation .btn:first-child {
  margin-left: 0;
}

.form-navigation .btn:last-child {
  margin-right: 0;
}

.document-deadline-notice {
  background-color: rgba(255, 165, 0, 0.1); /* Laranja suave */
  border-left: 4px solid var(--accent-pink);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: var(--light-text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.document-deadline-notice i {
  color: var(--accent-pink);
  font-size: 18px;
}

.document-deadline-notice strong {
  color: var(--accent-cyan);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 15px; /* Espaçamento entre os botões */
}

.form-navigation .btn {
  flex: 1; /* Faz com que os botões ocupem o espaço disponível igualmente */
  margin: 0; /* Remove margens laterais duplicadas */
}
}

.summary-details p {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--light-text);
  line-height: 1.8;
}

.summary-details strong {
  color: var(--accent-cyan);
  font-weight: 700;
}

.summary-details span {
  color: var(--white);
  font-weight: 500;
}

.pix-info {
  font-size: 14px;
  color: var(--accent-pink);
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(236, 72, 153, 0.1);
  border-left: 4px solid var(--accent-pink);
  border-radius: 5px;
}

/* Estilos para os campos de arquivo */
.form-group input[type="file"] {
  background-color: var(--primary-blue);
  color: var(--light-text);
  border: 1px solid var(--secondary-blue);
  padding: 10px;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}

.form-group input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}

.form-group input[type="file"]::before {
  content: "Selecionar Arquivos";
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-cyan), var(--accent-purple));
  color: var(--dark-bg);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input[type="file"]:hover::before {
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-cyan));
}

.form-group input[type="file"]:active {
  outline: 0;
}

.form-group input[type="file"]:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.3);
}

.form-group input[type="file"] + label {
  margin-bottom: 8px;
  display: block;
  color: var(--light-text);
  font-weight: 500;
}

/* Ajustes para o formulário */
.registration-form h3 {
  font-size: 28px;
  color: var(--accent-cyan);
  margin-bottom: 5px; /* Ajuste para incluir a mensagem de obrigatório */
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.required-fields-notice,
.required-fields-notice-form {
  color: var(--accent-pink);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.required-fields-notice {
  text-align: left;
  justify-content: flex-start;
}

.required-fields-notice-form {
  text-align: center;
  justify-content: center;
  margin-bottom: 20px;
}

.registration-form .form-group {
  margin-bottom: 20px;
}

.registration-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--light-text);
  font-weight: 500;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"],
.registration-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--secondary-blue);
  border-radius: 8px;
  background-color: var(--primary-blue);
  color: var(--light-text);
  font-size: 16px;
  transition: var(--transition);
}

/* Estilo específico para o campo de seleção de curso */
.registration-form select {
  background-color: var(--secondary-blue); /* Cor de fundo para destacar */
  border-color: var(--accent-cyan);
  font-weight: 600;
}

.registration-form select option {
  background-color: var(
    --secondary-blue
  ); /* Garante que as opções tenham fundo escuro */
  color: var(--light-text);
}

.registration-form input[type="text"]:focus,
.registration-form input[type="email"]:focus,
.registration-form input[type="tel"]:focus,
.registration-form select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.3);
  outline: none;
}

.registration-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%20viewBox%3D%220%200%20292.4%20292.4%22%3E%3Cpath%20fill%3D%22%23A0AEC0%22%20d%3D%22M287%20197.9l-133.5-133.6c-3.2-3.2-8.3-3.2-11.5%200L5.4%20197.9c-3.2%203.2-3.2%208.3%200%2011.5l11.5%2011.5c3.2%203.2%208.3%203.2%2011.5%200l117.8-117.8c3.2-3.2%208.3-3.2%2011.5%200l117.8%20117.8c3.2%203.2%208.3%203.2%2011.5%200l11.5-11.5c3.2-3.1%203.2-8.2%200-11.4z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
  padding-right: 35px;
}

.registration-form .checkbox-group {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
}

.registration-form .checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  accent-color: var(--accent-cyan);
}

.registration-form .checkbox-group label {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-gray);
}

.registration-form .checkbox-group label a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
}

.registration-form .checkbox-group label a:hover {
  text-decoration: underline;
}

.registration-form .btn-primary {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  font-size: 13px;
  color: var(--text-gray);
  text-align: center;
  margin-top: 20px;
}

/* Responsividade para o formulário */
@media (max-width: 768px) {
  .registration-content {
    flex-direction: column;
    align-items: center;
  }

  .registration-text {
    margin-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .registration-form-container {
    margin-left: 0;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .registration-form-container {
    padding: 25px;
  }

  .registration-form h3 {
    font-size: 24px;
  }

  .form-steps-indicator .step {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .form-navigation {
    flex-direction: column;
  }

  .form-navigation .btn {
    width: 100%;
  }
}
istration-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--secondary-blue) 0%,
    var(--dark-bg) 100%
  );
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.registration-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 217, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.registration-content {
  display: flex;
  gap: 60px;
  align-items: flex-start; /* Alinhamento ao topo */
  position: relative;
  z-index: 1;
  /* Proporção 1:2 (Texto:Formulário) */
}

.registration-text {
  flex: 1; /* Reduz a largura para 1 parte */
  max-width: 400px; /* Limite para o texto */
}

.registration-form-container {
  flex: 2; /* Aumenta a largura para 2 partes */
  max-width: 700px; /* Limite máximo para o formulário */
  margin-left: 0 !important; /* Remove margin-left: 40px do estilo antigo */
}

.registration-text h2 {
  font-size: 36px;
  color: var(--light-text);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.registration-text p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.urgency-indicator {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-pink);
  font-weight: 600;
  font-size: 14px;
}

.urgency-indicator i {
  font-size: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.registration-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-text);
  font-size: 14px;
}

.benefit-check i {
  color: var(--accent-cyan);
  font-size: 18px;
}

.registration-form {
  background: rgba(10, 30, 63, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.registration-form h3 {
  color: var(--light-text);
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--light-text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--light-text);
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.form-group input::placeholder {
  color: var(--text-gray);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  font-size: 13px;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-note {
  color: var(--text-gray);
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(10, 30, 63, 0.8);
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  padding: 50px 0 20px;
  color: var(--text-gray);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--accent-cyan);
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 50%;
  color: var(--accent-cyan);
  transition: var(--transition);
  font-size: 16px;
}

.social-links a:hover {
  background: var(--accent-cyan);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  font-size: 13px;
  color: var(--text-gray);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
  .navbar {
    gap: 20px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 24px;
  }

  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 30, 63, 0.95);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    display: none;
  }

  .navbar.active {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .promo-card {
    padding: 20px;
  }

  .price {
    font-size: 36px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .registration-form {
    padding: 25px;
  }

  .courses-grid,
  .highlights-grid,
  .testimonials-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   SEÇÃO DE CURSOS DINÂMICA
   ============================================ */

.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

#courses-container {
    margin-top: 40px;
}

.course-category {
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(5px);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    padding-bottom: 15px;
}

.category-icon {
    font-size: 36px;
    color: var(--accent-cyan);
    margin-right: 15px;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.category-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
    letter-spacing: 0.5px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--secondary-blue);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
    border-color: var(--accent-cyan);
}

.course-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 10px;
    margin-bottom: 10px;
}

.course-card p {
    font-size: 14px;
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.course-meta span i {
    margin-right: 5px;
    color: var(--accent-purple);
}

.course-card .btn-details {
    margin-right: 10px;
    padding: 8px 15px;
    font-size: 13px;
}

.course-card .btn-enroll {
    padding: 8px 15px;
    font-size: 13px;
}

/* Estilo para o placeholder de carregamento */
.loading-spinner {
    text-align: center;
    font-size: 18px;
    color: var(--accent-cyan);
    padding: 50px;
}

.loading-spinner i {
    margin-right: 10px;
}

/* ============================================
   MODAL DE DETALHES DO CURSO
   ============================================ */

.modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(5px);
    padding-top: 60px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background-color: var(--dark-bg);
    margin: 5% auto; /* 5% do topo e centralizado */
    padding: 30px;
    border: 1px solid var(--accent-cyan);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
    color: var(--light-text); /* Garante que todo o texto do modal seja claro */
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-button {
    color: var(--accent-cyan);
    float: right;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-pink);
    text-decoration: none;
}

.modal-title {
    color: var(--accent-cyan);
    font-size: 32px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
    padding-bottom: 10px;
}

.modal-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--light-text); /* Cor mais clara para melhor legibilidade */
}

.modal-meta span {
    margin-right: 20px;
    color: var(--accent-cyan); /* Cor cyan para destacar as informações */
    font-weight: 600; /* Texto um pouco mais negrito */
}

.modal-meta i {
    color: var(--accent-cyan); /* Mesma cor dos spans para manter consistência */
    margin-right: 5px;
}

.modal-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px; /* Tamanho um pouco maior para melhor leitura */
}

.modal-description p {
    margin-bottom: 15px;
    color: var(--light-text); /* Garante que parágrafos também sejam legíveis */
}

.modal-enroll-btn {
    width: 100%;
    margin-top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .course-category {
        padding: 20px;
    }

    .category-header h3 {
        font-size: 24px;
    }

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

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-title {
        font-size: 24px;
    }
}
