/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* CONTENEDOR */
.container {
  position: relative;
  width: 100%;
}

/* IMAGEN INVITACIÓN */
.fondo {
  width: 100%;
  height: auto; /* 🔥 NO usar 100vh */
  display: block;
}

/* 🔥 BOTONES SOBRE LA IMAGEN */
.botones {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-wrap: nowrap; /* 🔥 evita que bajen */
}

/* BOTONES */
.btn {
  background: none;
  border: none;
  cursor: pointer;
}

/* IMÁGENES DE BOTÓN */
.btn img {
  width: 70%;
  max-width: 280px;
  height: auto;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* HOVER (desktop) */
.btn img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

/* CLICK */
.btn:active img {
  transform: scale(0.95);
}

/* 📱 MOBILE AJUSTES */
@media (max-width: 768px) {

  .botones {
    bottom: 4.6%; /* sube un poco para no tapar fuego */
    gap: 25px;
    width:70%
  }

  .btn img {
    width: 110%;
    max-width: 260px;
  }
}

/* 💻 DESKTOP AJUSTES */
@media (min-width: 769px) {

  .container {
    display: flex;
    justify-content: center;
  }

  .fondo {
    max-width: 500px; /* efecto póster centrado */
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  }

  .botones {
    flex-direction: row !important; /* 🔥 fuerza */
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .btn img {
    width: 48vw !important;  /* 🔥 más grandes */
    max-width: 220px;        /* límite */
  }
}
