@import url(//fonts.googleapis.com/css?family=Abril+Fatface|Droid+Serif:400,700,400italic,700italic);
.containercat {
    padding: 20px;
}

.profile-cat {
    background-color: #222222;
        background: linear-gradient(45deg, var(--corGradCardCateg1), var(--corGradCardCateg2), var(--corGradCardCateg3));
    margin-bottom: 20px;
    box-shadow:  0px 0px 10px rgba(0, 0, 0, 0.5);
    max-height: 600px;
    min-height: 600px;
    font-family: 'Droid Serif', serif;
    border-radius: 20px;
}
.imagem-cat{
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    border-radius: 20px;
}

.profile-pic {
    position: absolute;
    top: -115px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    
    /* sombra concentrada no topo */
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.6);
    
    transition: all 0.4s ease;
}


.profile-info {
    color: #BDBDBD;
    padding: 25px;
    position: relative;
    margin-top: 15px;
}

.profile-info h2 {
    color: #E8E8E8;
    letter-spacing: 4px;
    padding-bottom: 12px;
}

.profile-info span {
    display: block;
    font-size: 12px;
    color: wheat;
    letter-spacing: 2px;
    padding: 4px;
}

.profile-info a {
    color: #4CB493;
}
.profile-info i {
    padding: 15px 35px 0px 35px;
}


.profile-cat:hover .profile-pic {
    transform: scale(1.2);
}

.profile-cat:hover .profile-info hr  {
    opacity: 1;
}




/* Underline From Center */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow: hidden;
}
.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 52%;
    right: 52%;
    bottom: 0;
    background: #FFFFFF;
    border-radius: 50%;
    height: 2px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.profile-cat:hover .hvr-underline-from-center:before, .profile-cat:focus .hvr-underline-from-center:before, .profile-cat:active .hvr-underline-from-center:before {
    left: 0;
    right: 0;
    height: 2px;
    background: #CECECE;
    border-radius: 0;
}