@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

html, body {
  height: 100%;
  margin: 0;
  background-image: url("../img/fondo.jpg");
  background-size: cover;
  font-family: 'Manrope', sans-serif;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

#wrapper {
  min-height: 100%;
}

#container_texto {
  position: absolute;
  bottom: 2em;
  left: 3em;
}

#texto_superiord {
  position: absolute;
  font-weight: 300;
  text-align: right;
  color: white;
  top: 2em;
  right: 3em;
}

#texto_inferiori {
  position: absolute;
  font-weight: 700;
  color: white;
  margin-block-end: 0;
  margin-block-start: 0;
  bottom: 0.8em;
  left: 0.8em;
  font-size: 5.6em;
  line-height: 1em;
}

.color_azul {
  color: #009de0;
}

#tabla {
  position: absolute;
  bottom: 3em;
  right: 1em;
  text-align: center;
}

td {
  padding-top: 2em;
}

.social_icon {
  color: white;
}

#direccion {
  color: white;
  opacity: 0.6;
}
.cookiesAlineadas {
  text-align: right;
  display: block;
}

/* Media Queries */
@media (max-width: 576px) {
  #logo {
    display: block;
    max-width: 78%;
    height: auto;
    padding-top: 2rem;
    padding-left: 2rem;
  }

  #direccion {
    display: none;
  }

  #tabla {
    position: absolute;
    bottom: 2.5rem;
    right: 1rem;
    text-align: center;
  }

  #texto_superiord {
    top: 7rem;
    right: 1rem;
  }

  #texto_inferiori {
    bottom: 2rem;
    left: 1.5rem;    
    font-size: 3rem;
    line-height: 3rem;    
  }
}

@media only screen and (min-width: 576px) {
  #logo {
    display: block;
    max-width: 74%;
    height: auto;
    padding-top: 3rem;
    padding-left: 3rem;
  }

  #direccion {
    display: none;
  }

  #tabla {
    position: absolute;
    bottom: 2.8rem;
    right: 1rem;
    text-align: center;
  }

  #texto_superiord {
    top: 7rem;
    right: 1rem;
  }

  #texto_inferiori {
    bottom: 2rem;
    left: 2rem;    
    font-size: 4rem;
    line-height: 4rem;    
  }
}

@media only screen and (min-width: 768px) {
  #logo {
    display: block;
    max-width: 90%;
    height: auto;
    padding-top: 3rem;
    padding-left: 3rem;
  }

  #direccion {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  #logo {
    display: block;
    max-width: 66%;
    height: auto;
    padding-top: 3rem;
    padding-left: 3rem;
  }

  #direccion {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  #logo {
    display: block;
    max-width: 60%;
    height: auto;
    padding-top: 3rem;
    padding-left: 3rem;
  }

  #direccion {
    display: block;
  }

  #texto_superiord {
    top: 2em;
    right: 2rem;
  }

  #texto_inferiori {
    bottom: 2.5rem;
    left: 2.5rem;    
    font-size: 6rem;
    line-height: 5.5rem;    
  }
}

#cuadroCookies {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

#cuadroCookies button {
  background: white;
  color: black;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

#cuadroCookies button:hover {
  background: #ddd;
}