.footer-img {
    width: 100%;
    height: 200px;
    margin-top: -10px;
}

.content-portada {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 11rem;
    margin-bottom: -70px;
}

.imagen-con-texto {
    position: relative;
    width: 100%;
    height: 100%;
}

.imagen-con-texto img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    filter: brightness(50%);
}

.textos-y-boton {
    position: absolute;
    top: 53%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.texto-1,
.texto-2,
.boton {
    margin-bottom: 20px;
}

.texto-1 {
    font-size: 60px;
    font-weight: bold;
}

.texto-2 {
    font-size: 40px;
}

.boton-portada {
    align-self: flex-start;
    padding: 0.7rem;
    font-size: 20px;
    background-color: #B52E23;
    border: none;
    border: #E5CE69 solid 1.5px;
    box-shadow: 0px 0px 5px #E5CE69;
    transition: 0.5s all ease-in-out;
    color: white;
    border-radius: 7px;
    cursor: pointer;
}

.boton-portada:hover {
    color: white;
    font-weight: 480;
    background-color: #3E2505;
    transition: 0.5s all ease-in-out;
    cursor: pointer;

}

@media(max-width: 768px) {
    .content-portada {
        margin-top: 9rem;
    }

    .texto-1 {
        font-size: 40px;
    }

    .texto-2 {
        font-size: 20px;
    }

    .boton-portada {
        font-size: 15px;
    }

    .textos-y-boton {
        top: 8rem;
    }
}

@media(max-width: 600px) {
    .texto-1 {
        font-size: 20px;
    }

    .texto-2 {
        font-size: 15px;
    }

    .boton-portada {
        font-size: 15px;
        padding: 0.5rem;
    }

    .textos-y-boton {
        top: 7rem;
    }
}

@media(max-width: 480px) {
    .texto-1 {
        font-size: 12px;
        font-weight: bold;
    }

    .texto-2 {
        font-size: 10px;
    }

    .boton-portada {
        font-size: 7px;
        padding: 0.5rem;
    }

    .textos-y-boton {
        top: 5rem;
    }


    .texto-1,
    .texto-2,
    .boton {
        margin-bottom: 5px;
    }
}