@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,600;1,600&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background-color: black;
}

/* Contenedor de video */
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Video */
video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Video mobile oculto por defecto */
#video-mobile {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  #video-pc {
    display: none;
  }

  #video-mobile {
    display: block;
  }

  video {
    height: 100svh;
  }
}

.content-general{
position: fixed;
  top: 50%;
  left: 50%;
}

/* Tarjeta menú */
.menu-card {
  
  width: 25svw;
  min-width: 380px;
  height: 15.166svw;
  min-height: 230px;
  background-image: url(img/bg-id-corsa-choli.webp);
  z-index: 10;
  padding: 1vw;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.card-content{
  display: block;
  width:100%;
  position:absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: max(16px, 0.9vw);
  color:#222;
}

.CholiTickets{
  padding-top: 30px;
  padding-bottom: 10px;
}

.CholiTickets a{
  text-decoration: none;
  color: #222;
  font-size: max(32px, 2.2vw);

  background: url('img/ruido.png');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.CholiTickets a:hover{
  text-decoration: underline;
}

.enlacecorsa{
  text-decoration: none;
  color: #222;
  background: url('img/ruido.png');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.enlacecorsa:hover{
  text-decoration: underline;
}

.socialnetworkscontainer-corsa{
  display: flex;
  gap: 10px;
  z-index: 20;
  transform: translateX(-50%);
  position: relative;
  bottom: max(130px, 8.5vw);
  width:100%;
  align-items: center;
  justify-content: center;
}

.socialnetwork-corsa{
  width:max(36px, 2.4vw);
  opacity: 0.8;
  display: block;
}

.socialnetwork-corsa:hover{
  opacity: 1;
}
