* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --color-esqueleto-transparent: rgba(239, 243, 245, 0.5);
  --blue-light: #0b92a7;
  --blue-medium: #0b3f8b;
  --blue-transparent: #08286491;
  --blue-light-transparent: #0b92a794;
  --blue-dark: #020d22;
  --blue-dark-transparent: #020d22dc;
  --gray-medium: #373737;
  --gray-dark: #242424;
  --gray-transpárent: #20202049;
  --title: "Kanit", sans-serif;
  --sub-title: "Poppins", sans-serif;
  --paragraph: "Nunito", sans-serif;
  --size-title: 3rem;
  --pinkV: #ab06f8;
}

body {
  background-image: linear-gradient(#ffffffd2, #ffffffda),
    url("../images/cod\ pmc.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/******* *NAVIGATION* *******/
.menu {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #0b3f8b;
  border-radius: 10px;
  top: 20px;
  z-index: 1000;
}

.menu__container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.logo {
  width: 150px;
  margin-top: 15px;
}

/****************/
/* CONTENIDO */
/****************/
.terminos {
  margin: 0 auto;
}
.container__terminos {
  width: 100%;
  max-width: 1000px;
  margin-top: 10px;
  margin: 10px auto 20px auto;
}

.text__terminos {
  margin: 0 0 0 30px;
}

.title {
  text-align: center;
  font-family: var(--title);
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--blue-medium);
}

.paragraph {
  font-size: 1rem;
  font-family: var(--paragraph);
  color: var(--blue-dark);
  padding-bottom: 30px;
}

/***** BANNER COOKIES *****/
.banner__cookies {
  display: none;
  background: var(--blue-dark);
  padding: 20px;
  width: 100%;
  line-height: 150%;
  border: 1px solid #fff;
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  padding-top: 40px;
  box-shadow: 0px 2px 20px 10px var(--blue-medium);
  text-align: center;
}

.banner__cookies.activo {
  display: block;
}

.title__cookies {
  color: #fff;
  font-family: var(--title);
  font-weight: 400;
  font-size: 1.8rem;
}

.paragraph__cookies {
  color: #fff;
  font-family: var(--paragraph);
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 300;
}

.boton {
  font-family: var(--sub-title);
  margin-right: 20px;
  padding: 5px 20px;
  color: var(--blue-medium);
  background-color: #757070;
  border-radius: 4px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}

.boton:hover {
  background-color: #fff;
  color: var(--blue-light);
}

.enlace {
  font-family: var(--sub-title);
  color: #fff;
  font-weight: 200;
  font-size: 0.9rem;
  transition: 0.3s;
}

.enlace:hover {
  color: var(--blue-light);
  text-decoration: underline;
  letter-spacing: 0.5px;
}

.background-cookies {
  display: none;
  background: var(--blue-dark-transparent);
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.background-cookies.activo {
  display: block;
}

/******* *FOOTER* *******/
footer {
  position: relative;
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.158);
  border-left: 1px solid rgba(255, 255, 255, 0.664);
  border: 2px solid var(--blue-medium);
  width: 100%;
  height: 100%;
}

.footer__container {
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.partFooter {
  width: 20%;
  text-align: center;
}

.partFooter img {
  width: 50%;
  margin-top: 10px;
}

.partFooter h4 {
  color: var(--blue-light);
  font-size: 1.3em;
  font-weight: 400;
  font-family: var(--title);
  margin-top: 20px;
  margin-bottom: 10px;
}

.partFooter a {
  display: block;
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  transform: color 0.3s ease-in-out;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
}


.partFooter .blue:hover {
  color: var(--blue-light);
}

.partFooter a:hover {
  color: var(--blue-transparent);
}

.social__media {
  display: flex;
  justify-content: space-between;
  width: 250px;
}

.social__media a {
  display: inline-block;
  margin: 0px;
  width: 190px;
  transition: 1s;
  cursor: pointer;
  animation: move 6s ease-in-out infinite;
}

.social__media a img {
  width: 50px;
}

.social__media a:hover {
  box-shadow: 0 0 5px rgba(253, 251, 253, 0.726);
}

@keyframes move {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.footer__copy {
  position: absolute;
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
  font-size: 1em;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  background: #2828294b;
  color: #fffcfc;
  border-top: 2px solid var(--blue-medium);
}

.footer--copyright {
  height: 30px;

  & p {
    margin-top: 15px;
  }
}

/******* *MEDIA QUIERIES* *******/
/******* *RESPONSIVE* *******/
@media screen and (max-width: 992px) {
  /******* *NAVIGATON* *******/
  .logo {
    width: 100px;  
  }

  /******* *RESPONSIVE* *******/
  .container__terminos {
    width: 80%;
  }

  /******* *FOOTER* *******/
  .footer__container {
    width: 100%;
  }

  .partFooter {
    margin-right: 30px;
  }

  .partFooter h4 {
    font-size: 1.2rem;
    margin-right: 20px;
  }

  .partFooter a {
    font-size: 0.9rem;
  }

  .social__media a img {
    width: 45px;
  }

  .social__media {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 40px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 20px;
  }

  .social__media {
    margin-right: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 20px;
  }
}


@media screen and (max-width: 384px) {
  /****************/
  /* CONTENIDO */
  /****************/
  .title {
    font-size: 1.6rem;
  }

  /******* *FOOTER* *******/
  .footer__container {
    flex-direction: column;
  }

  .partFooter {
    width: 300px;
    justify-content: center;
  }

  .partFooter h4 {
    font-size: 1.3;
    margin-bottom: 0px;
    margin-left: 50px;
  }

  .partFooter a {
    font-size: 0.9em;
    margin-left: 20px;
  }

  .social__media {
    margin-right: 10px;
  }

  .social__media a img {
    width: 50px;
    margin: 20px;
  }
}
