/* ===========================================================
   🌌 NEXT_FBR.CSS · Versión horizontal estilo FBR Welcome
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

body {
  background: radial-gradient(circle at top, #0a0a0a, #000);
  color: #fff;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
}

.logo {
  width: 110px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #00c4cc);
}

h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 10px 0;
}

h1 span {
  color: #00c4cc;
}

p {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

/* ====== TARJETAS HORIZONTALES ====== */
.card-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background: rgba(25, 25, 25, 0.9);
  border-radius: 18px;
  padding: 35px 25px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 196, 204, 0.15), rgba(0, 119, 255, 0.15));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 196, 204, 0.35);
}

.icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.card h2 {
  color: #00c4cc;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ====== FOOTER ====== */
footer {
  color: #777;
  font-size: 0.9rem;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .card-container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  p { font-size: 0.95rem; }
  .card-container {
    flex-direction: column;
    align-items: center;
  }
  .card {
    max-width: 90%;
  }
}
