@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

.wrp{
    width: 100%; height: 600px;
    position: relative;
}
.portada{
    width: 1920; height: 580px;
   background:black;
    background-attachment:scroll;
 
    font-family: 'Poppins', sans-serif;
}
.contenido{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.contenido .info{
    width: 100%;
    max-width: 750px;
    text-align: center;
}
.contenido .info h1{
    font-size: 70px;
    font-weight: 900;
    color: #FEBA0B;
}
.contenido .info h2{
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}
.contenido .info a{
    display: inline-block;
    text-decoration: none;
    font-size: 19px;
    padding: 10px 25px;
    color: #fff;
    background: #FEBA0B;
    border-radius: 50px;
    margin-bottom: 40px;
    border: 2px solid transparent;
    transition: all 300ms ease;
    letter-spacing: 0.1px; /*Para separar un poco las letras*/
}
.contenido .info a:hover{
    background: transparent; /*Fondo transparente*/
    border: 2px solid #fff;
}
.curveado{
    position: absolute;
    width: 100%;
    bottom: -10px;
}
.curveado img{
    width: 100%;
}
@media(max-width:768px){
    .contenido .info h1{
        font-size: 50px;
    }   
    .contenido .info h2{
        font-size: 30px;
    }  
}