body {
  background: #1F1F1F;
  color: #F3ECE2;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1; /* detrás de todo */
}

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

/* Capa oscura */
.video-container .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* ajusta opacidad al gusto */
}

.main {
  display: flex;
  justify-content: center;
  height: 100vh;
  align-items: center;
  /*margin-top: -5%;*/
}

.inner {
  width: 100%;
  text-align: center;
  padding: 0 16px;
}
.inner-container {
      background: #1F1F1F;
    max-width: fit-content;
    margin: auto;
    padding: 32px;
    border: 6px solid #F3ECE2;
    border-radius: 3px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
  .inner-container {
    padding: 16px;
      max-width: 100%;
  }
}

.titulo {
  font-size: 50px;
  margin-top: 0;
  margin-bottom: 55px;
}

@media (max-width: 600px) {
  .titulo {
    font-size: 24px;
    text-align: left;
    margin-bottom: 40px;
  }
}

.links {
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
      padding: 0;
    margin: 0;
}

@media (max-width: 600px) {
.links {
    flex-direction: column;
    gap: 16px;
    text-align: left;
  }
}

a {
  font-size: 18px;
  color: #F3ECE2;
  text-decoration: none;
}

a span {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: text-decoration-color 0.3s;
}

a span:hover {
  text-decoration-color: #ffffff;
}