:root {
  --enojo-base: #6366f1;
  --enojo-dark: #4338ca;
  --gradiente-furia: linear-gradient(135deg, #ff4b2b, #ff416c);
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f5f6fa;
  color: #2f3640;
}


.topbar {
  width: 100%;
  background-color: #374151;
  color: #e5e7eb;
}

.contenedor-topbar {
  max-width: 1100px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-pills {
  display: flex;
  gap: 10px;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
}

.logo span {
  color: #4f46e5;
}


.pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: var(--enojo-base);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pill:hover {
  transform: translateY(-2px);
  background-color: var(--enojo-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pill:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 3px;
}

.pill:active {
  transform: scale(0.96);
}


.hero-enojo {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradiente-furia);
  color: white;
  text-align: center;
}

.titulo-enojo {
  font-size: 60px;
  letter-spacing: 4px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}


main {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

section {
  margin-bottom: 40px;
}

.bloque-contenido {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}


.fila {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.columna {
  flex: 1;
  min-width: 300px;
}


.tarjeta {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  height: 100%;
}


h2 {
  color: #e74c3c;
}

h3 {
  color: #e74c3c;
}

p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}


ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 20px;
}


section:last-of-type {
  background: #2f3640;
  color: white;
  padding: 40px;
  border-radius: 20px;
}

section:last-of-type h2 {
  color: #f1c40f;
  text-align: center;
}

section:last-of-type strong {
  color: #f1c40f;
}


footer {
  background: white;
  text-align: center;
  padding: 40px;
  border-top: 1px solid #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .titulo-enojo {
    font-size: 40px;
  }

  .fila {
    flex-direction: column;
  }
}