body{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    width: 100%;
}

.texto-landing{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
}

.texto-landing p{
    line-height: 20px;
}

p{
    font-weight: 300;
    font-size: 0.9em;
    text-align: left;
    color: #3f3f40;
    text-align: center;
}

h2{
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #3e3e3e;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

h3{
    font-weight: 500;
    font-size: 1.1em;
    text-align: left;
}

.bloque-1{
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
}

.bloque-1 p{
    width: 70%;
    margin: 70px 0 20px 0;
}

hr{
    width: 150px;
    border: 0.4px solid #3f3f40;
    margin: 30px 0;
}

.frase{
    font-style: oblique;
}

.nombre{
    font-weight: 600;
}

.titulo-landing{
    width: 100%;
    padding: 30px 0;
}

.bloque-cards{
    width: 80%;
    padding: 0 10%;
    display: flex;
    flex-direction: row;
    margin-bottom: 80px;
    
}

.card{
    width: 25%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
}

.card-img img{
    width: 100%;
}

img{
    width: 100%;
}

.card-img p{
    text-align: left;
}

.bloque-imagen{
    width: 100%;
    display: flex;
    justify-content: center;
}

.bloque-imagen img{
    width: 90%;
}


.texto{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 80px 0;
}

.texto-1{

    margin: 5px 0;
}

.texto-1 p{
    font-size: 1em;
    font-weight: 500;
}

.texto-2{
    margin: 5px 0;
}

/************BOTON*************/

button {
    font-family: 'Inter', sans-serif;
    border: none;
    position: relative;
    display:block;
    height: 45px;
    padding: 10px 10px;
    font-weight: 500;
    font-size: 0.9em;
    color: black;
    border-bottom: 2px black solid;
    outline: 0;
    overflow:hidden;
    background: none;
    z-index: 1;
    cursor: pointer;
    transition:         0.08s ease-in;
    -o-transition:      0.08s ease-in;
    -ms-transition:     0.08s ease-in;
    -moz-transition:    0.08s ease-in;
    -webkit-transition: 0.08s ease-in;
  }

.svg{
    transition: all 150ms cubic-bezier(0.445, 0.050, 0.550, 0.950); 

  }
  
  .svg:before{
    position:absolute;  
    content:"";
    
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:-1;
    opacity:0;
    transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  }
  
  .svg:after {
    content: "";
    position: absolute;
    background: black;
    bottom: 0;
    left: 0;
    right: 0;
    top: 100%;
    z-index: -2;
    transition: all 250ms cubic-bezier(0.230, 1.000, 0.320, 1.000); 
  }
  .svg:hover{
    color:white;
    border-bottom: 0px black solid;
  }
  .svg:hover:before {
    opacity: .8;
  }
  .svg:hover:after {
    top: 0;
  }

  .bloque-boton{
    width: 100%;
    display: flex;
    align-content: center;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    margin: 80px 0;
  }

  .boton-vermas{
    display: inline-block;
    color: white;
    background-color: black;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    padding: 15px 0px;
    width: 250px;
    line-height: 20px;
    transition-duration: 0.4s;
    font-family: 'Inter', sans-serif;
    font-weight: 500;

}

.boton-vermas:hover{
    background-color: grey;
    color: white;
    width: 270px;
    box-shadow: 0 0 20px #00000024;
}



@media (max-width: 500px){
    p{
        font-size: 1em;
    }

    
    h2{
        font-size: 26px;
    }

    h3{
        font-size: 1.2em;
    }

    .bloque-1{
        width: 90%;
    }

    .bloque-cards{
        flex-wrap: wrap;
        width: 90%;
        padding: 0 5%;
    }
    
    .card{
        width: 100%;
        padding: 30px 0;
    }

    .titulo-landing {
        width: 100%;
        padding: 30px 0 0 0;
    }
    
    button {
        font-size: 1.1em;
    }

    .texto{
        width: 90%;
        margin: 20px 5% 80px 5%;
    }

    .texto-landing{
        margin: 0;
        margin-bottom: 50px;
    }

    .bloque-1{
        width: 100%;
    }

    .bloque-1 p {
        width: 90%;
        margin: 50px 0 20px 0;
    }
}