@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans:wght@700&display=swap');
.img-perfil {
    width: 80%;
    max-width: 300px;
}

.perfil {
    text-align: center;
}

.img-perfil {
    position: relative;
}

.perfil-image-linea {
    background-color: var(--secundary-color);
    height: 15px;
    position: absolute;
    width: 130%;
    left: 0;
    bottom: 0;
}

.info-perfil {
    margin-bottom: 25px;
}

.titulo-perfil {
    font-size: 35px;
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
    font-family: 'Noto Sans', sans-serif;
}

.parafo {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 450px;
    margin: 20px auto;
}

.contacto-wssp {
    background-color: var(--secundary-color);
    color: var(--text-color-inverse);
    border: none;
    font-size: 20px;
    padding: 0.5em 1em;
    border-radius: 7px;
    cursor: pointer;
}

.contacto-wssp a {
    color: var(--text-color-inverse);
}

.contacto-wssp:hover {
    filter: brightness(130%);
}

.numero {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

@media (min-width: 950px) {
    .img-perfil {
        width: 100%;
        max-width: 350px;
    }
    .perfil {
        text-align: left;
        display: flex;
        justify-content: space-between;
        max-width: 980px;
        margin: 0 auto;
        align-items: center;
    }
    .info-perfil {
        margin-bottom: 0px;
    }
    .titulo-perfil {
        font-size: 60px;
    }
    .parafo {
        max-width: 450px;
        margin: 30px 0;
    }
    .contacto-wssp {
        font-size: 30px;
    }
}