
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Inter", sans-serif;
  background-color: black;
  color: white;
  box-sizing: border-box;
  line-height: 1.5;
}

a{
  text-decoration: none;
  color: inherit;
}

#videoFondo {
  position: fixed !important;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  
}

/* -------------------------------
   NAVBAR / HEADER
-------------------------------- */
.barra-navegacion {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  column-gap: 60px;
  background-color: white;
  padding: 10px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.barra-navegacion a {
  word-spacing: 5px;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: black;
  padding: 8px 12px;
  border-radius: 12px;
  transition: background 0.3s;
}

.barra-navegacion a:hover:not(.logo):not(.boton-mail) {
  background-color: rgba(0, 0, 0, 0.05);
}

.barra-navegacion .logo img {
  display: block;
  height: auto;
}

.barra-navegacion .boton-mail {
  background-color: #FFD700;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  transition: background 0.3s;
}

.barra-navegacion .boton-mail:hover {
  background-color: #e6c200;
}

/* -------------------------------
   TÍTULO CENTRAL
-------------------------------- */
.titulo-central {
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 80px;
  font-weight: 500;
  color: white;
  z-index: 2;
}

/* -------------------------------
   IMÁGENES
-------------------------------- */
.contenedor-imagenes {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  gap: 80px;
  z-index: 2;
}

.img-1 {
  width: 100px;
  margin-top: 200px;
}

.img-2 {
  width: 180px;
  margin-top: 220px;
}

.img-3 {
  width: 130px;
  margin-top: 200px;
}

/* -------------------------------
   FOOTER
-------------------------------- */
.footer-links {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  z-index: 2;
}

.footer-links-privacidad {
  position: absolute;
  top: 3200px;
  padding-bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  z-index: 2;
}

.footer-links-cookies {
  position: absolute;
  top: 2900px;
  padding-bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  z-index: 2;
}
.footer-links-legal {
  position: absolute;
  top: 1300px;
  padding-bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 50px;
  z-index: 2;
}

.footer-links a {
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* -------------------------------
   RESPONSIVE
-------------------------------- */

@media (max-width: 900px) {
  .titulo-central {
    font-size: 48px;
    top: 350px;
  }

  .barra-navegacion {
    margin-top: 0 !important;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
  }


  .contenedor-imagenes {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    top: 650px !important;
  }

  .img-1,
  .img-2,
  .img-3 {
    margin-top: 0;
  }

  .footer-links {
    top: 1050px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 3%;
  }

  
  .container{
    top: 300px !important;
  }
}

@media (max-width: 1135px) {
  .contenedor-imagenes{
    top: 500px
  }
  .footer-links-privacidad {
    display: none;
  }

  .footer-links-cookies {
    display: none;
  }
  .footer-links-legal {
    display: none;
  }
}


/* -------------------------------
   LINKS LEGALES
-------------------------------- */

a{
  text-decoration: none;
  color: inherit;
}
li{
  list-style: none;
}

h1 {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 61px;
}

h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

h2, h3 {
  font-weight: 700;
}

h1,h2,h3,h4,h5,h6{
  padding-top: 30px;
}

td, th {
  vertical-align: middle;
  padding: 1.2rem .4rem;
}

.my-50 {
  margin: 50px 0;
}

.container{
    position: absolute;
    top: 200px;
    max-width: 145rem;
    margin: 0 auto;
    width: 96%;
    padding: 0 calc(4rem / 2);
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

.img-1,
.img-2,
.img-3,
.titulo-central {
  will-change: transform;
}