header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 10;
}

/* Esquerda (vazia por enquanto) */

main {
    padding-top: 0px !important;
}

.card {
    border-radius: 0% !important;
    box-shadow: none !important;
}

.container-left {
    flex: 1;
}

/* Centro com a logo */
.container-center {
    flex: 1;
    text-align: center;
    margin-left: 225px !important;
}

.logo-image {
    max-height: 40px;
    width: auto;
}

/* Direita com idioma */
.right-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.select-wrapper-img {
    width: 22px;
    height: 23px;
    margin-left: 8px;
    z-index: 2;
    cursor: pointer;
}

/* Estiliza o select para ficar invisível mas funcional */
.select-wrapper select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* invisível */
    cursor: pointer;
    z-index: 3;
}


/* BANNER */

.banner {
    width: 100% !important;
    border-radius: 0% !important;
}

.profile-image-container {
    width: 140px !important;
    height: 140px !important;
    left: 1rem !important;
    top: 6.5rem !important;
    margin-bottom: 2px !important;
}

.user-info {
    padding: 0 16px;
}

.user-name {
    display: flex;
    gap: 2px;
}

.user-name span {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 20px !important;
    color: #67748e !important;
}

.user-name svg {
    width: 18px !important;
    color: rgba(253, 115, 80, 1) !important;
}

.profile-section {
    margin-bottom: 6px !important;
    background-color: white !important;
}

.profile-card {
    margin-top: 28px !important;
}

.subscription-button {
    border-radius: 30px !important;
    padding: 0 25px !important;
    width: 100%;
    height: 60px !important;
    font-size: 18px !important;
    font-weight: 300 !important;
    color: #fefefe !important;
    background: linear-gradient(45deg, #F58170, #F9AF77) !important;
}

.bio {
    font-size: 15px !important;
}

.profile-name p {
    font-size: 16px !important;
}

.social-media-icons {
    display: flex !important;
    gap: 16px !important;
    margin: 0 16px !important;
    overflow-x: auto !important;
}

.social-media-icons .icon-button {
    width: fit-content !important;
    border-radius: 25px !important;
    padding: 12px !important;
    gap: 8px !important;
}

.icon-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid #ccc !important;
    cursor: pointer !important;
}

.banner-stats {
    gap: 12px !important;
}

.social-media {
    margin-bottom: 5px !important;
}

.social-media-icons {
    padding: 10px !important;
}

.social-media-icons a {
    text-decoration: none !important;
}

@media (max-width: 480px) {
    main {
        padding: 0 !important;
        margin: 0 !important;
    }

    .banner-stats {
        font-size: 14px !important;
    }

    .container-center {

        margin-left: 0px !important;
    }

}