@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500&display=swap');

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

    body {
      font-family: 'Rajdhani', sans-serif;
      background: url('fondo.jpg') no-repeat center center fixed;
      background-size: cover;
      height: 100vh;
      position: relative;
    }

    .center-logo {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: white;
    }

    .center-logo h1 {
      font-size: 4em;
      letter-spacing: 5px;
    }

    .center-logo p {
      font-size: 1.2em;
      margin-top: 0.5em;
      letter-spacing: 3px;
    }
    img{
        position: relative;
        width: 600px;
        
    }
    .button {
      position: absolute;
      background-color: #e70606;
      color: white;
      padding: 15px 20px;
      border-radius: 25px;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      width: 200px;
    }

   /* .left-top    { top: 15%; left: -10px; border-top-right-radius: 50px; border-bottom-right-radius: 50px; }*/ 
    .left-middle { top:43%; left: -15px; border-top-right-radius: 50px; border-bottom-right-radius: 50px; }
    .left-bottom { bottom: 25%; left: -15px; border-top-right-radius: 50px; border-bottom-right-radius: 50px; }

    .right-top   { top: 20%; right: -20px; border-top-left-radius: 50px; border-bottom-left-radius: 50px; }
    .right-bottom{ bottom: 35%; right: -20px; border-top-left-radius: 50px; border-bottom-left-radius: 50px; }


.button.disabled {
  background-color: #555 !important;
  cursor: not-allowed;
  
  opacity: 0.5;
}

.mensaje-horario {
  color: #f80e0e;
  font-size: 0.85rem;
  margin-top: 8px;
  text-align: left;
  max-width: 160px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.botones-container {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-content {
  background-color: #222;
  color: white;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.cerrar {
  float: right;
  font-size: 1.2rem;
  cursor: pointer;
}


    /* =========================
       RESPONSIVE PARA MOVILES
       ========================= */
    @media (max-width: 768px) {
      img{
        position: relative;
        width: 200px;
      }
      .center-logo {
        position: relative;
        top: 30%;
        left: auto;
        transform: none;
        margin: 30px auto;
        text-align: center;
      }

      .center-logo h1 {
        font-size: 2.2em;
      }

      .center-logo p {
        font-size: 1em;
      }

      body {
        background-attachment: scroll;
        padding-bottom: 80px;
      }
    }