@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --colorFor:#444;
    --colorLetrasPrincipal: #202124;
    --colorLetrasSecundarias: #5f6368;
    --linkColorPrincipal: #1a73e8;
    --fondoClaro:#faf3cc;
    --fondoNormal:#f7eeb3;
    --fondoOscuro:#f5e899;
    --temaClaro:#e5c500;
    --temaNormal:#816e04;
    --temaOscuro:#d4c963;
    --shadow:0 13px 30px 0 rgba(0,0,0,.08);
    --ancho:95%;
    --maxAncho:100%;
    --limiteAncho:1024px;
}
 
*{
    font-family: 'Poppins', sans-serif;
    text-decoration:none;
    list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .2s linear;
}
  html{
    scroll-behavior: smooth;
  }
  .up{
    position: fixed;
    top: 80%;
    left: 0;
    transform:rotate(180deg) translateY(100px);
    padding:20px;
    font-size:30px;
   
    background-color:#fff;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 10px 15px #ccc;
    color:var(--linkColorPrincipal);

    opacity: 0;
    transition:.5s ease-in-out;
  }
  .up:hover{
    color:blue;
  }
  .up.active{
    transform:rotate(0deg) translateY(0);
    opacity: 1;
    cursor: pointer;
  }

  #menuDesgloce{
    width:100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;


    visibility: hidden;
    opacity: 0;
    transition: .2s;

    position: fixed;
    z-index: -10;
  }
  #menuDesgloce.active{
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
  #menuDesgloce .mebnuBackClose{
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #0004;

    cursor: no-drop;
  }
  #menuDesgloce #menuBox{
    display: flex;
    flex-direction: column;
    text-align: end;

    transform: translateX(150px);
    transition:.5s;

    padding:20px;
    border-radius:0 10px;
    background-color:#ffffffef;
  }
  #menuDesgloce.active #menuBox{
    transform: translateX(0);
  }
  #menuDesgloce #menuBox span,
  #menuDesgloce #menuBox a{
    margin:20px 0;
    color:var(--linkColorPrincipal);

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    cursor: pointer;
  }
  #menuDesgloce #menuBox span:hover,
  #menuDesgloce #menuBox a:hover,
  #menuDesgloce #menuBox a:hover span{
    color: blue;
  }

  header .menuPegajosoBlog{
    position: relative;
    top:0;
    left:0;
    height: 60px;
    width: 100%;
    padding:10px;
  
    background-color: #fff5;
    
    z-index: 100;
  
    transition: linear 1.5s;
  }
  header .menuPegajosoBlog div{
      display: flex;
      justify-content: space-between;
      align-items: center;

      padding:5px 10%;
  } 
  header .menuPegajosoBlog div a,
  header .menuPegajosoBlog div div{
    width:15%;
    text-align:center;
  }
  header .menuPegajosoBlog div #cloneTitleBlog{
    width:75%;
    text-align:center;
    margin: 0 auto;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-weight: 600;
    letter-spacing: -.5px;
  }
  header .menuPegajosoBlog div .options{
    padding:0;
  }
  header .menuPegajosoBlog div .options #menu,
  header .menuPegajosoBlog div a{
    color:var(--colorLetrasPrincipal);
    font-size:20px;
    text-align:center;
    display: block;
    margin:0 auto;
    cursor: pointer;
  }
  header .menuPegajosoBlog div .options #menu{
    cursor: context-menu;
  }

header{
    height: 700px;
    width:100%;

    display:flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction:column;
    margin-bottom:50px;

    background-size:contain;
    background-position-x: center ;
    background-position-y: 100% ;
    background-color: #fff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: 0s;

    color: var(--colorLetrasPrincipal);
    position: sticky;
    top:-640px;
   
    z-index: 5;
    overflow: hidden;
}header.active{
  box-shadow:0 0 15px rgb(82, 77, 77);
}
header::before{
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 40%;
  background: linear-gradient( to top, #fff, transparent);
}
header .title {
  width: 100%;
  margin-bottom:50px ;
  z-index:2;
  transition: 2s ease-in-out;
}
header .title h1{
  width:95%;
  max-width:1400px;
  margin:0 auto;
  font-size:40px;
  font-weight: 600;
  text-align: center;
  
}
header .title small{
    width:95%;
    margin:0 auto;
    display: block;
    text-align: center;
    font-size:18px;
}

main{
    width:100%;
    background-color: #fff;

    padding:20px 0px;
    /* margin-top: 85vh; */
}
main section{
    max-width: 800px;
    width: 90%;
    margin: auto;
    text-align: justify;
}
main section h2
{
    width:85%;
    margin:15px auto;
    font-weight: 400;
    font-size: 24px;
}
main section h3
{
  width:80%;
  margin:0 auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: 20px;
}
main section h4
{
  width:80%;
  margin:0 auto;
  margin-top: 10px;
  font-weight: 500;
  font-size: 18px;
}
main section p 
{
    width: 75%;
    font-size: 17px;
    font-weight: 300;
    margin: 30px auto;

    line-height:34px;
    color:var(--colorLetrasSecundarias);
}

main section img{
    display:block;
    margin:0px auto;
    width: 100%;
}

main section iframe{
    display:block;
    margin:0px auto;
    width: 100%;
    min-height: 450px;
}

main aside{
  max-width: 500px;
  width: 95%;
  margin: auto;
  padding-top: 50px;
}
main aside h2,
main aside p,
main aside a{
    width: 95%;
    margin:0 auto;
    text-align: center;
    display: block;
}
main aside .boxCard{  
    width:95%;
    margin:0 auto;
    position: sticky;
    top: 10px;
    margin-bottom: 10px;
}

.card_post, .card {
  height: auto;
  width:100%;
  margin:10px auto;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;

  border:solid #ccc 1px;
  border-radius: 0 10px;
}
.card_post .description, .card .description{
  height: auto;
  width:60%;
  padding:5px;
}
.card_post .description h2, .card .description h2{
  color: var(--colorLetrasPrincipal);
  text-align: center;
  font-size:15px;
  max-height: 100px;
  overflow: hidden;
}
.card_post .description p, .card .description p{
color:var(--colorLetrasSecundarias);
text-align: center;
font-size:15px;
}
.card_post .background, .card .background{
  height: calc(150px - 10px);
  margin:5px 5px;
  width:calc(40% - 10px);
  background-size:cover;
  background-position:center;

}

.creditos{
   display: flex; 
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
   width: 90%;
   margin: 0 auto;
   padding: 50px 0;
   border-top: 2px #ccc solid;
   border-bottom: 2px #ccc solid;
}
.creditos .bx{
  width: 45%;
  position: relative;
}
.creditos .bx small
{
  color: var(--colorLetrasSecundarias);
  transition: .75s;
}
.creditos .bx .imgBx
{
  width: 100%;
  height: 100%;
  transition: .75s ease-in-out;
}
.creditos .bx:hover .imgBx
{
  box-shadow: 0 10px 15px #0003;
  margin-top: -50px;
}
.creditos .bx .imgBx img{
  width: 100%;
  height: 100%;
}
.creditos .bx h3{
  position: absolute;
    top: 50%;
    left: 0;
  width: 100%;
  text-align: center;
  color: var(--colorLetrasPrincipal);
  opacity: 0;
  transition: 1.5s ease-in-out;
  text-decoration: underline 2px #ccc;
}
.creditos .bx:hover h3
{
    top: 100%;
    left: 0;
    opacity: 1;
} 
.creditos p,
.creditos small{
  width: 100%;
  color: var(--colorLetrasSecundarias);

  text-align: center;
  margin: 0;
}
.creditos p{
  margin-top: 50px;
}
@media (max-width: 900px){
    /* header{
      background-size:cover;
    } */
    header .title{
      margin-bottom:30px;
    }
    header .title h1{
      font-size: 35px;
    }
    header .title small{
        display: none;
    }
    main{
        width:var(--maxAncho);
    }
    header nav div{
      padding:5px 0px;
    }
    main{
        flex-direction:column;
    }
    main section{
        width:var(--maxAncho);
        padding:0 10px;
    }
    main aside{
        width:100%;
    }
    main aside .boxCard{
        display:flex;
        flex-wrap: wrap;

        justify-content: space-between;
    }
    main aside .boxCard .card{
        margin:5px auto;
        width:95%;
    }
}
@media(max-width: 720px){
    header{
      height: 400px;
      top: -340px;
    }
    header::before{
      height: 270px;
    }
    
    header .title h1{
      font-size: 25px;
    }
  }
 @media (max-width: 500px){
  header nav div:nth-child(2) p{
    text-align: end;
  }
  header nav div:nth-child(2) p span{
    display:none;
  }

}
@media (max-width: 370px){
  header nav div:nth-child(2) p{
    font-size:12px;
  }
  header nav div:nth-child(2) a{
    margin-left:5px ;
  }
}


  ul{
    width: 60%;
    margin: 20px auto;
  }
  ul li{
    list-style: disc;
    color:var(--colorLetrasSecundarias);
    margin-bottom: 10px;
    font-size:17px;
    font-weight: 300;
  }



/* formulario */

.newsletter{
  width:95%;
  margin:10px auto; 
  display:none;

  border: solid 1px #ccc;
  border-radius: 10px;
  padding:20px 10px;
}
.newsletter h3{
  font-size: 25px;
  text-align:center;
}
.newsletter p{
  text-align: center;
  margin:0;
}
.newsletter a{
  display:block;
  margin-top:20px;
  padding:20px 10px;
  border-radius: 3px;  
  background-color:var(--linkColorPrincipal);  
  color:#fff;
  text-align: center;
  font-size:20px;
}
.newsletter a:hover{
    background-color: darkblue;
}


.share{
  max-width: 500px;
  width:95%;
  margin:0 auto; 
  text-align: start;

  /* border: solid 1px #ccc; */
  border-radius: 10px;
  padding:20px 10px;
}    
.share h3{
  width: 100%;
  text-align:center;
  font-size:20px;
}
.share p{
  width: 100%;
  font-size: 15px;
  margin-bottom:10px;
}
.share .contain{
  margin:0 auto;
  width:100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.share .contain a{
  border-radius: 4px;
  padding:4px 10px;

  background-color: #3b5998;
  font-size: 15px;

  color:#fff;
} 
.share .contain a:hover
{
  background-color: #233d74;
}

/* .share .contain a:nth-child(1){
  color:#2867B2;
  border:solid 1px #2867B2;
}
.share .contain a:nth-child(2){
  color:#4267B2;
  border:solid 1px #4267B2;
}

.share .contain a:hover,
.share .contain a:nth-child(3):hover,
.share .contain a:nth-child(2):hover,
.share .contain a:nth-child(1):hover{
  border-color:#000;
  background-color:#000;
  color:#fff;
} */
