* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0f172a;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #334155;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.logo-accent {
  color: #3b82f6;
}

.nav-desktop {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.btn-login {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-login:hover {
  color: white;
}

.btn-primary {
  background: #2563eb;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.25);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-menu-cta {
  padding-top: 1rem;
  border-top: 1px solid #475569;
}

.btn-primary-mobile {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-mobile:hover {
  background: #1d4ed8;
}

/* Hero Styles */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.2) 0%,
    #0f172a 50%,
    #0f172a 100%
  );
}

.hero-circle-1 {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-circle-2 {
  position: absolute;
  bottom: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  border: 1px solid #475569;
  width: fit-content;
}

.hero-badge i {
  color: #60a5fa;
  margin-right: 0.5rem;
}

.hero-badge span {
  color: #cbd5e1;
  font-size: 0.875rem;
}

.hero-title {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-title-gradient {
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 32rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.avatars-group {
  display: flex;
  margin-left: -0.5rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  border: 2px solid #0f172a;
  margin-left: -0.5rem;
}

.avatars-info {
  margin-left: 1rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.25rem;
}

.stars i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.avatars-info p {
  font-size: 0.875rem;
  color: #94a3b8;
}

.hero-stat {
  display: flex;
  align-items: center;
  color: #cbd5e1;
}

.hero-stat i {
  margin-right: 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-hero-primary {
  background: #2563eb;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
  transform: scale(1.05);
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: scale(1.1);
}

.btn-hero-secondary {
  border: 1px solid #475569;
  background: transparent;
  color: #cbd5e1;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  color: white;
  border-color: #64748b;
  background: rgba(30, 41, 59, 0.5);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
}

.metric-label {
  color: #94a3b8;
}

/* Hero Visual - 360° Course Presentation */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-360 {
  position: relative;
  width: 24rem;
  height: 24rem;
}

.rotating-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.ring-dot {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.inner-ring {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 50%;
  animation: rotate-reverse 30s linear infinite;
}

.inner-dot-1 {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #a78bfa;
  border-radius: 50%;
}

.inner-dot-2 {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #60a5fa;
  border-radius: 50%;
}

.course-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b, #334155);
  width: 16rem;
  height: 16rem;
  border-radius: 1.5rem;
  border: 1px solid #475569;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: auto;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: scale(1.05);
}

.course-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.course-icon i {
  color: white;
  font-size: 2rem;
}

.course-card h3 {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.course-card p {
  color: #cbd5e1;
  text-align: center;
  font-size: 0.875rem;
}

.course-price {
  margin-top: 1rem;
  background: #0f172a;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #60a5fa;
  font-weight: bold;
}

.floating-badge {
  position: absolute;
  background: #1e293b;
  border: 1px solid #475569;
  border-radius: 0.5rem;
  padding: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.floating-badge-1 {
  top: 2rem;
  right: 2rem;
}

.floating-badge-2 {
  bottom: 2rem;
  left: 2rem;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
}

.floating-badge-1 .badge-text {
  color: #10b981;
}

.floating-badge-2 .badge-text {
  color: #60a5fa;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator i {
  color: #94a3b8;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.scroll-indicator:hover i {
  color: white;
}

/* Modules Section */
.modules {
  padding: 6rem 0;
  background: #0f172a;
  position: relative;
}

.modules-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0f172a, #1e293b, #0f172a);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.title-gradient {
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.modules-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.module-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.module-card:hover {
  background: rgba(30, 41, 59, 0.8);
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.1);
}

.module-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.module-card:hover .module-icon {
  transform: scale(1.1);
}

.module-icon i {
  color: white;
  font-size: 2rem;
}

.module-icon-blue {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.module-icon-purple {
  background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.module-icon-green {
  background: linear-gradient(to right, #10b981, #059669);
}

.module-icon-orange {
  background: linear-gradient(to right, #f59e0b, #ef4444);
}

.module-icon-indigo {
  background: linear-gradient(to right, #6366f1, #3b82f6);
}

.module-icon-yellow {
  background: linear-gradient(to right, #eab308, #f59e0b);
}

.module-icon-cyan {
  background: linear-gradient(to right, #06b6d4, #0891b2);
}

.module-icon-pink {
  background: linear-gradient(to right, #ec4899, #be185d);
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.module-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  transition: color 0.3s ease;
}

.module-card:hover .module-title {
  color: #60a5fa;
}

.module-duration {
  background: #334155;
  color: #cbd5e1;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.module-topics {
  list-style: none;
  margin-bottom: 1.5rem;
}

.module-topics li {
  display: flex;
  align-items: center;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.topic-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #3b82f6;
  border-radius: 50%;
  margin-right: 0.75rem;
  transition: background 0.3s ease;
}

.module-card:hover .topic-dot {
  background: #60a5fa;
}

.module-btn {
  width: 100%;
  background: #334155;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.module-card:hover .module-btn {
  background: #2563eb;
}

.course-summary {
  text-align: center;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

.summary-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.summary-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .summary-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.summary-stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: bold;
}

.stat-blue {
  color: #60a5fa;
}
.stat-purple {
  color: #a78bfa;
}
.stat-green {
  color: #34d399;
}
.stat-yellow {
  color: #fbbf24;
}

.stat-label {
  color: #94a3b8;
}

/* Preview Section */
.preview {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
}

.preview-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .preview-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.video-player {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #475569;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.video-container {
  position: relative;
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: #0f172a;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
}

.play-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.play-btn i {
  color: white;
  font-size: 3rem;
  margin-left: 0.25rem;
}

.video-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  padding: 1rem;
}

.progress-time {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  height: 0.25rem;
}

.progress-fill {
  background: #3b82f6;
  height: 100%;
  border-radius: 9999px;
  width: 33%;
}

.video-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.control-btn {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.control-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.control-btn i {
  color: white;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lesson-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lesson-list-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.lessons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lesson-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #475569;
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lesson-item:hover {
  background: rgba(30, 41, 59, 0.8);
  transform: scale(1.02);
}

.lesson-item.active {
  border-color: #3b82f6;
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.lesson-thumbnail {
  position: relative;
  width: 5rem;
  height: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.lesson-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lesson-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.lesson-play-overlay i {
  color: white;
  font-size: 1rem;
}

.lesson-info {
  flex: 1;
}

.lesson-info h4 {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.lesson-meta {
  display: flex;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.75rem;
}

.all-lessons-cta {
  background: linear-gradient(to right, #2563eb, #8b5cf6);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.all-lessons-cta h4 {
  color: white;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.all-lessons-cta p {
  color: #dbeafe;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.btn-all-lessons {
  background: white;
  color: #2563eb;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-all-lessons:hover {
  background: #f1f5f9;
}

/* Comparison Section */
.comparison {
  padding: 6rem 0;
  background: #1e293b;
  position: relative;
}

.comparison-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #1e293b, #334155, #1e293b);
}

.comparison-table-container {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid #475569;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
}

.comparison-table th {
  font-weight: 500;
  color: #cbd5e1;
}

.feature-column {
  text-align: left;
  width: 200px;
}

.coursepro-column {
  background: linear-gradient(to right, #2563eb, #8b5cf6);
  position: relative;
  text-align: center;
  width: 80px;
}

.coursepro-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  font-weight: bold;
}

.coursepro-header i {
  color: #fbbf24;
}

.best-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #fbbf24;
  color: #0f172a;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
}

.competitor-column {
  text-align: center;
  color: #94a3b8;
  width: 120px;
}

.comparison-table td {
  color: #cbd5e1;
  font-weight: 500;
}

.coursepro-column td {
  background: rgba(37, 99, 235, 0.1);
  text-align: center;
}

.check-icon {
  color: #10b981;
  font-size: 1.5rem;
}

.x-icon {
  color: #ef4444;
  font-size: 1.5rem;
}

.price-row {
  background: linear-gradient(
    to right,
    rgba(37, 99, 235, 0.2),
    rgba(139, 92, 246, 0.2)
  );
}

.price-row td {
  font-weight: bold;
  font-size: 1.125rem;
}

.price-coursepro {
  color: white;
}

.price-original {
  font-size: 0.875rem;
  color: #cbd5e1;
  text-decoration: line-through;
  display: block;
}

.price-competitor {
  color: #94a3b8;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: scale(1.05);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.benefit-icon i {
  color: white;
  font-size: 2rem;
}

.benefit-icon-green {
  background: linear-gradient(to right, #10b981, #059669);
}

.benefit-icon-blue {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.benefit-icon-purple {
  background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.benefit-card h3 {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #cbd5e1;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(to right, #2563eb, #8b5cf6, #2563eb);
  position: relative;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.1),
    transparent,
    transparent
  );
}

.cta-circle-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.cta-circle-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(3rem);
}

.cta-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.cta-badge i {
  color: white;
  margin-right: 0.5rem;
}

.cta-badge span {
  color: white;
  font-weight: 600;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3.75rem;
  }
}

.cta-title span {
  display: block;
}

.cta-description {
  font-size: 1.25rem;
  color: #dbeafe;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-stat {
  text-align: center;
}

.cta-stat-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.cta-stat-icon i {
  color: white;
  font-size: 2rem;
}

.cta-stat-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
}

.cta-stat-label {
  color: #dbeafe;
}

.cta-pricing {
  text-align: center;
}

.price-display {
  margin-bottom: 1rem;
}

.current-price {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.original-price {
  font-size: 1.5rem;
  color: #dbeafe;
  text-decoration: line-through;
  margin-left: 1rem;
}

.installments {
  color: #dbeafe;
  margin-bottom: 1.5rem;
}

.btn-cta-main {
  background: white;
  color: #2563eb;
  padding: 1.5rem 3rem;
  border: none;
  border-radius: 1rem;
  font-weight: bold;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-cta-main:hover {
  background: #f1f5f9;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-cta-main i {
  transition: transform 0.3s ease;
}

.btn-cta-main:hover i {
  transform: translateX(0.25rem);
}

.cta-guarantee {
  color: #dbeafe;
  font-size: 0.875rem;
  margin-top: 1rem;
}

.cta-features {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .cta-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-feature {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.cta-feature h4 {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.cta-feature p {
  color: #dbeafe;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: #0f172a;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: #94a3b8;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: #1e293b;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #334155;
}

.social-link i {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.social-link:hover i {
  color: white;
}

.footer-title {
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  color: #94a3b8;
}

.contact-item i {
  margin-right: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }

}

.copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cnpj {
  color: #94a3b8;
  font-size: 0.875rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
}

.payment-method {
  background: #334155;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40%,
  43% {
    transform: translateX(-50%) translateY(-30px);
  }
  70% {
    transform: translateX(-50%) translateY(-15px);
  }
  90% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .floating-badge-2 {
    bottom: 0rem;
  left: 2rem; 
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .course-360 {
    width: 20rem;
    height: 20rem;
  }

  .course-card {
    width: 14rem;
    height: 14rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
button:focus,
a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
