.elementor-21465 .elementor-element.elementor-element-d5b185f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9bbb18f *//* Contenedor centrado */
.platzi-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ocupa toda la pantalla */
  background: #0f0f0f; /* Fondo oscuro estilo Platzi */
}

/* Tarjeta principal */
.platzi-card {
  width: 320px;
  height: 480px;
  background: linear-gradient(135deg, #3b82f6, #1e293b);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.1s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  perspective: 1000px;
  text-align: center;
  padding: 20px;
}

/* Imagen */
.platzi-card img {
  width: 120px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Título */
.platzi-card h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

/* Texto */
.platzi-card p {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* Botón */
.platzi-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00e676;
  color: #0f0f0f;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.platzi-btn:hover {
  background: #1db954;
  transform: scale(1.05);
}/* End custom CSS */