/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #667eea, #764ba2);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: white;
}

.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 6px white);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #f0f0f0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.card {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.card p {
  font-size: 0.95rem;
  color: #f9f9f9;
}

.slogan {
  margin-top: 40px;
  font-size: 1rem;
  color: #ffeb3b; /* Amarillo vibrante */
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
