/* === ACADEMY.CSS MODERNO === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  color: #2D3436;
}

.hero {
  background: linear-gradient(135deg, #4F9DFF 0%, #1E88E5 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  clip-path: ellipse(100% 100% at 50% 0%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  animation: fadeInLeft 1s ease;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
  animation: fadeInRight 1s ease;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
}

.resaltado {
  color: #FFD700;
  font-weight: bold;
}

.button-animated {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #1E88E5;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.button-animated:hover {
  background-color: #FFD700;
  color: #1E1E1E;
  transform: translateY(-2px);
}

.cta {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 18px;
  color: #555;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}


/* TERMINAL VISUAL STUDIO CODE STYLE */
.terminal {
  background-color: #1e1e1e;
  color: #d4d4d4;
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 15px;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
  white-space: pre-wrap;
  line-height: 1.5;
  margin-top: 40px;
  max-width: 100%;
}

.terminal pre {
  margin: 0;
}

/* SIMULACIÓN DE CURSOR */
#typewriter::after {
  content: ' ';
  display: inline-block;
  width: 8px;
  height: 20px;
  background-color: #d4d4d4;
  margin-left: 2px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
