* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body, html {
            width: 100%;
            height: 100%;
          background-image: url(carta1111/fondo3.jpg);
        }

.container {
  position: relative;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

/* Links */
.section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  text-decoration: none;
}

/* Borde alrededor del texto y animación de latido */
  .text-borde {
  display: inline-block;
  padding: 15px 20px;
  font-size: 40px;
  letter-spacing: 3px;
  color: #DAA520;
  border: 3px solid #DAA520; /* borde blanco, cambia a dorado si querés */
  border-radius: 25px; /* bordes redondeados */
  text-align: center;
  margin-bottom: 10rem;

  /* Animación de latido */
  animation: latido 1.5s infinite;
}

  .text-borde2 {
  display: inline-block;
  padding: 15px 20px;
  font-size: 40px;
  letter-spacing: 3px;
  color: #DAA520;
  border: 3px solid #DAA520; /* borde blanco, cambia a dorado si querés */
  border-radius: 25px; /* bordes redondeados */
  text-align: center;
  margin-top: 10rem;

  /* Animación de latido */
  animation: latido 1.5s infinite;
}

/* Colores */



/* Animación keyframes */
@keyframes latido {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* crece un 10% */
  }
}

/* Logo centrado */
.logo-central {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;

}

/* Opcional: efecto hover adicional */
.section:hover {
  transform: scale(1.1); /* crece un poco más al pasar el mouse */
  cursor: pointer;
}


/* Logo flotante */
.logo-central {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;      /* ajustá tamaño */
  height: auto;
  z-index: 2;        /* arriba de todo */
  pointer-events: none; /* no bloquea clicks */
  margin-top: 1.5rem;
}

 /* Responsive: en mobile se apilan */
        @media (max-width: 768px) {
            .container {
                flex-direction: column;
            }

            .section {
                width: 100%;
                height: 50vh;
            }
        }



/* =========================
   MODAL PROMO MARTES
========================= */

/* OVERLAY */
#modal-overlay,
#modal-overlay-jueves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* MODAL */
.modal {
  position: relative;
  background: #000;

  width: 90%;
  max-width: 420px;
  max-height: 90vh;

  border-radius: 16px;
  border: 2px solid #b026ff;

  overflow: hidden; /* CLAVE */

  box-shadow:
    0 0 10px #b026ff,
    0 0 25px #b026ff,
    0 0 50px rgba(176, 38, 255, 0.8);
}

/* IMAGEN FULL */
.modal img {
  width: 100%;
  height: 100%;

  object-fit: cover; /* llena todo el modal */
  display: block;
}

/* BOTÓN CERRAR */
.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;

  background: rgba(0, 0, 0, 0.4);
  border: none;

  width: 32px;
  height: 32px;
  border-radius: 50%;

  font-size: 22px;
  font-weight: bold;

  color: #b026ff;
  cursor: pointer;
  z-index: 10;

  text-shadow:
    0 0 5px #b026ff,
    0 0 10px #b026ff;
}

.close-modal:hover {
  background: rgba(176, 38, 255, 0.2);
}