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

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* ===== ESTILOS BASE PARA IMÁGENES (MOBILE-FIRST) ===== */
.container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Por defecto (móvil): mostrar Mobile, ocultar Web */
.container img[alt="Logo Dr. Osvaldo"] {
  display: none;
}

.container img[alt="Ruleta Dr. Osvaldo"] {
  display: block;
}

/* ===== CONTENEDOR DE BOTONES (MOBILE-FIRST) ===== */
.botones-container {
  position: absolute;
  bottom: 3%;
  left: 7.5%;
  right: 0;
  width: 82%;
  height: 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8%;
}

.boton {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

/* ===== MEDIA QUERIES - TABLET ===== */
@media screen and (min-width: 768px) {
  .container {
    max-width: 100%;
  }

  /* En tablet: mostrar Web, ocultar Mobile */
  .container img[alt="Logo Dr. Osvaldo"] {
    display: block;
  }

  .container img[alt="Ruleta Dr. Osvaldo"] {
    display: none;
  }

  /* En tablet: cambiar a flex horizontal con medidas específicas */
  .botones-container {
    position: absolute;
    bottom: 4%;
    left: 7.5%;
    right: 0;
    width: 83%;
    height: 5.5%;
    display: flex;
    gap: 3%;
    justify-content: space-between;
    align-items: center;
  }
}

/* ===== MEDIA QUERIES - DESKTOP ===== */
@media screen and (min-width: 1024px) {
  .container {
    max-width: 100%;
  }

  /* En desktop: mostrar Web, ocultar Mobile */
  .container img[alt="Logo Dr. Osvaldo"] {
    display: block;
  }

  .container img[alt="Ruleta Dr. Osvaldo"] {
    display: none;
  }

  /* En desktop: mantener flex horizontal con medidas específicas */
  .botones-container {
    position: absolute;
    bottom: 4%;
    left: 7.5%;
    right: 0;
    width: 83%;
    height: 5.5%;
    display: flex;
    gap: 3%;
    justify-content: space-between;
    align-items: center;
  }
}
