@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;
  }
}

/* Tarjeta menú */
.menu-card {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 25svw;
  min-width: 380px;
  height: 15.166svw;
  min-height: 230px;
  background-image: url(img/bg-id-corsa.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;
}

.enlacecorsa{
  text-decoration: none;
  color: #222;
}

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

.socialnetworkscontainer-corsa{
  display: flex;
  position: absolute;
  width:8svw;
  bottom:14px;
  left: 14px;
  z-index: 9;
  gap: 10px;
  min-width: 140px;
}

.socialnetwork-corsa{
  width:100px;
  opacity: 0.7;
}

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

@media (max-width: 768px) {
  .socialnetworkscontainer-corsa{
    left:50%;
    bottom:15px;
    transform: translateX(-50%);
    min-width: 170px;
  }
}