/* ---- RESET BÁSICO ---- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: Inter, sans-serif;
  background-color: #0b1020;
  color: #f9fafb;
  line-height: 1.5;
}

/* ---- CONTENEDOR PRINCIPAL ---- */

.min-h-screen {
  min-height: 100vh;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-wrapper {
  padding: 1.5rem;
}

/* ---- TARJETA ---- */

.card {
  background-color: rgba(0, 0, 0, 0.8);
  border: 1px solid hsl(217.2 32.6% 17.5%);
  border-radius: 0.5rem;
  max-width: 48rem;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* ---- LOGOS ---- */

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.logos-row img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

/* En pantallas muy pequeñas, reducimos tamaño pero seguimos en línea */
@media (max-width: 480px) {
  .logos-row img {
    width: 100px;
    height: 100px;
  }
}

/* ---- TEXTO ---- */

.text-center {
  text-align: center;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(255 215 0);
  margin-bottom: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.info-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.info-block {
  text-align: center;
}

.info-block strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* ---- PAYPAL ---- */

.paypal-section {
  margin-top: 2rem;
  text-align: center;
}

/* ---- IMAGEN DEL EVENTO ---- */

.event-image {
  margin-bottom: 2rem;
  text-align: center;
}

.event-image img {
  max-width: 25%;
  height: auto;
  border-radius: 0.5rem;
}
