@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Oswald', sans-serif;
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
  }

  .btn-wsp {
    position: fixed;
    z-index: 999;
    right: 40px;
    bottom: 40px;
    cursor: pointer;
    -webkit-animation: resaltar .7s linear infinite alternate;
            animation: resaltar .7s linear infinite alternate;
  }
  
  .btn-wsp img {
    width: 120%;
    height: 120%;
  }
  
  .btn-wsp:hover {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
  
  @media (max-width: 700px) {
    .btn-wsp {
      right: 20px;
      bottom: 15px;
    }
    .btn-wsp img {
      width: 90%;
      height: 90%;
    }
  }
  @media (min-width: 1500px) {
    .btn-wsp {
      right: 100px;
      bottom: 100px;
    }
    .btn-wsp img {
      width: 250%;
      height: 250%;
    }
  }
  
  .btn-consultar {
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: auto auto;
    padding: 20px 30px;
    background-color: #1c7311;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  
  .btn-consultar:hover {
    background-color: rgba(27, 165, 50, 0.767);
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
    -webkit-box-shadow: 1px 2px 15px #bcbcbc;
            box-shadow: 1px 2px 15px #bcbcbc;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .btn-volver {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: auto auto;
    padding: 20px 30px;
    background-color: #3d3d3d;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  
  .btn-volver:hover {
    background-color: rgba(128, 128, 128, 0.767);
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
    -webkit-box-shadow: 1px 2px 15px #bcbcbc;
            box-shadow: 1px 2px 15px #bcbcbc;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  
  .fondo {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), color-stop(75%, rgba(0, 0, 0, 0.7)), to(#000)), url("../assets/portada.jpg");
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 75%, #000 100%), url("../assets/portada.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  
  .fondo .pagina-principal {
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 20px;
  }


  .fondo .pagina-principal .titulo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 800px;
    min-height: 300px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 40px 30px;
    color: #fff;
    text-align: center;
  }
  
  .fondo .pagina-principal .titulo .btn-consultar {
    -webkit-animation: resaltar2 1.2s linear infinite alternate;
            animation: resaltar2 1.2s linear infinite alternate;
  }
  
  .politicas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #030303;
    padding: 20px 15px;
  }
  
  .politicas .advertencia {
    margin: auto auto;
    background-color: rgba(255, 255, 255, 0.438);
    padding: 20px;
    max-width: 600px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 15px;
  }
  
  .politicas .advertencia h2 {
    text-align: center;
  }
  
  .politicas .advertencia ul li {
    color: #4a4b2c;
    margin-left: 20px;
    font-weight: 200;
  }
  
  .politicas p {
    color: #bcbcbc;
    text-align: center;
  }
  
  @-webkit-keyframes aparecer {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  @keyframes aparecer {
    0% {
      opacity: 0;
      -webkit-transform: translateY(100px);
              transform: translateY(100px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  
  .ocultar {
    opacity: 0;
  }
  
  .animar {
    -webkit-animation: aparecer .5s;
            animation: aparecer .5s;
  }
  
  @-webkit-keyframes resaltar {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
    }
  }
  
  @keyframes resaltar {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
    }
    100% {
      -webkit-transform: scale(1.3);
              transform: scale(1.3);
    }
  }
  
  @-webkit-keyframes resaltar2 {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      -webkit-box-shadow: 1px 2px 15px #bcbcbc85;
              box-shadow: 1px 2px 15px #bcbcbc85;
    }
    100% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      -webkit-box-shadow: 1px 2px 15px #bcbcbc;
              box-shadow: 1px 2px 15px #bcbcbc;
    }
  }
  
  @keyframes resaltar2 {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.05);
              transform: scale(1.05);
      -webkit-box-shadow: 1px 2px 15px #bcbcbc85;
              box-shadow: 1px 2px 15px #bcbcbc85;
    }
    100% {
      -webkit-transform: scale(1.1);
              transform: scale(1.1);
      -webkit-box-shadow: 1px 2px 15px #bcbcbc;
              box-shadow: 1px 2px 15px #bcbcbc;
    }
  }
  
  @-webkit-keyframes sacudir {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(12px);
              transform: translateY(12px);
    }
    100% {
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
    }
  }
  
  @keyframes sacudir {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(12px);
              transform: translateY(12px);
    }
    100% {
      -webkit-transform: translateY(25px);
              transform: translateY(25px);
    }
  }

  
.fondo .pagina-principal .titulo h1 {
    font-size: 40px;
    text-transform: uppercase;
  }
  
  .fondo .pagina-principal .titulo h2 {
    margin: auto auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 35px;
    background-color: rgba(0, 0, 0, 0.233);
    color: #cce200;
    font-weight: 500;
  }
  
  .fondo .pagina-principal .titulo ul {
    max-width: 700px;;
    text-align: justify;
    margin: auto auto;
    font-size: 20px;
    padding: 15px 35px;
    font-weight: 300;
    background-color: rgba(255, 255, 255, 0.233);
    color: white;
  }
  
  @media (max-width: 320px) {
    .fondo .pagina-principal .titulo ul {
      font-size: 15px;
      padding: 10px 30px;
    }
  }
  
  @media (min-width: 1600px) {
    .fondo .pagina-principal .titulo h1 {
      font-size: 65px;
    }
    .fondo .pagina-principal .titulo h2 {
      font-size: 2.4em;
    }
    .fondo .pagina-principal .titulo ul {
      font-size: 35px;
      padding-inline: 50px;
    }
    .fondo .pagina-principal .titulo a {
      font-size: 40px;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  }