@import url("/css/main.css");

main {
    padding-bottom: 10rem;
}

/* Profile */

body {
    background-color: #f6f6f6;
}

.profile {
    position: relative;
    padding-top: 8rem;
}

.profile-banner {
    background-image: url(/assets/img/img-menu/Profile-banner.png);
    width: 100%;
    height: 25rem;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.2rem;
}

.profile-banner-user-img {
    width: 8rem;
    height: 8rem;
}

.profile-banner-user-name {
    color: #fff;
    font-size: 1.6rem;
}
.profile-banner-user-gmail {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
}

.profile-info {
    position: relative;
    top: -3rem;
    padding: 0 2rem;
    z-index: 999;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.profile-info-grupo {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 3px 4px 7px 3px #bbbbbb1e;
    padding: 0 2rem;
}
.profile-item {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-bottom: 1px solid #ececec;
}
.profile-item-left {
    display: flex;
    gap: 1.5rem;
}
.profile-item-title {
    color: #434343;
    font-size: 1.4rem;
}

/* Footer */

.footer-nav {
    grid-area: footer-nav;
    background-color: #f5f5f5bb;

    backdrop-filter: blur(20px);
    z-index: 2000;
    position: fixed;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.footer-nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.3rem 1rem 0.5rem 1rem;
    border-radius: 1rem;
}

.footer-nav-icon {
    position: relative;
}

.numerito {
    position: absolute;
    background-color: #695757;
    color: #ffffff;
    width: 1.8rem;
    font-size: 1rem;
    border-radius: 1rem;
    top: -8px;
    left: 10px;
    text-align: center;
}
.footer-nav-item p {
    font-size: 1.2rem;
    color: #000;
}
.footer-nav-item svg path {
    fill: #4c4c4c;
}

.footer-nav-item--active {
    background-color: #695757;
}

.footer-nav-item--active svg path {
    fill: #fff;
}

.footer-nav-item--active p {
    color: #fff;
    font-size: 1.2rem;
}
