html {
  font-family: "Lato", sans-serif; }

body {
  height: 100vh;
  background-image: url(../img/bg-home-talita.png);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%; }
  body main {
    position: relative;
    z-index: 2; }
    body main .logo {
      width: 40rem;
      max-width: 80%;
      margin: 0 auto;
      transition: all .5s ease-in-out; }
      @media (max-width: 768px) {
        body main .logo {
          width: 70%; } }
    body main .contenido h3 {
      text-align: center;
      position: relative;
      margin-bottom: 2rem;
      font-size: 2rem;
      padding: 0 1rem; }
      @media (max-width: 768px) {
        body main .contenido h3 {
          font-size: 1.4rem; } }
      body main .contenido h3::after {
        content: "";
        width: 90px;
        height: 2px;
        background-color: #3D3D3D;
        position: absolute;
        bottom: -1rem;
        left: 0;
        right: 0;
        margin: 0 auto; }
    body main .contenido p {
      text-align: center;
      font-size: 1.1rem;
      padding: 0 1rem; }
    body main .contenido .redes {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; }
      body main .contenido .redes a {
        background-color: #3D3D3D;
        border-radius: 25px;
        height: 30px;
        width: 30px;
        background-size: 22px;
        background-position: center;
        background-repeat: no-repeat;
        margin: 5px;
        transition: all .5s ease-in-out; }
        body main .contenido .redes a:hover {
          filter: brightness(80%);
          background-color: #4FB9AC; }
        body main .contenido .redes a.instagram {
          background-image: url(../img/icn-instagram.svg); }
        body main .contenido .redes a.whatsapp {
          background-image: url(../img/icn-whatsapp.svg); }
    body main .contenido .contenido-descargar {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 70px; }
      body main .contenido .contenido-descargar .descarga {
        margin: 1rem;
        transition: all .5s ease-in-out;
        background-color: #ffffffcb;
        display: flex;
        width: 250px;
        border-radius: 25px;
        padding: 1.1rem;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        border: 3px solid transparent; }
        body main .contenido .contenido-descargar .descarga .icn-descarga {
          width: 90px;
          height: 90px;
          background-image: url("../img/icn-descarga.svg");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          transition: all .5s ease-in-out;
          margin-top: -60px; }
        body main .contenido .contenido-descargar .descarga:hover {
          border: 3px solid #fff;
          box-shadow: 0 0 6px 6px #e6e6e6; }
          body main .contenido .contenido-descargar .descarga:hover .icn-descarga {
            background-image: url("../img/icn-descarga-2.svg"); }
        body main .contenido .contenido-descargar .descarga p {
          text-decoration: none;
          color: #4FB9AC;
          transition: all 5s ease-in-out; }
        body main .contenido .contenido-descargar .descarga.descargada {
          opacity: .5; }
          body main .contenido .contenido-descargar .descarga.descargada .icn-descarga {
            background-image: url("../img/icn-descarga-2.svg"); }
          body main .contenido .contenido-descargar .descarga.descargada p {
            color: #BDD685; }
  body .bg-right {
    position: absolute;
    background-image: url(../img/bg-right.svg);
    top: 10%;
    right: 0;
    background-position: right;
    z-index: 1;
    width: 100%;
    height: 40%;
    background-repeat: no-repeat; }
    @media (max-width: 768px) {
      body .bg-right {
        height: 20%; } }
  body .bg-left {
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 40%;
    background-image: url(../img/bg-left.svg);
    bottom: 20%;
    left: 0;
    z-index: 1;
    background-position: left; }
    @media (max-width: 768px) {
      body .bg-left {
        height: 20%; } }
