* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #F9F9F9;
}

.navbar-brand img {
    max-width: 220px;
}

body.index #navegacao a#index,
body.perfil #navegacao a#perfil,
body.trend-ai #navegacao a#trend-ai,
body.creator-genie #navegacao a#creator-genie,
body.creator-flow #navegacao a#creator-flow,
body.meus-projetos #navegacao a#meus-projetos,
body.validados #navegacao a#validados,
body.plano #navegacao a#plano,
body.suporte #navegacao a#suporte,
body.configuracoes #navegacao a#configuracoes,
body.comunidade #navegacao a#comunidade,
body.creator-builder #navegacao a#creator-builder,
body.leads-ia #navegacao a#leads-ia {
    background: none;
    border: 1px solid rgba(19, 180, 238, 1);
    color: rgb(19, 180, 238);
    border-radius: 10px;
}

/*Sidebar*/
.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    background-color: white;
    padding-top: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar .nav-item {
    margin-bottom: 10px;
}

.sidebar .nav-link {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: #828282;
    font-weight: 500;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-size: 0.8rem;
}

.sidebar .nav-link .icones {
    margin-right: 10px;
    height: 20px;

}

.sidebar .nav-link:hover {
    background-color: rgb(19, 180, 238);
    color: #fff;
}

.submenu {
    padding-left: 30px;
    display: none;
}

.nav-item.open .submenu {
    display: block;
}

.sidebar::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #00bfff;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/*Navbar*/
.nav-vertical {
    margin-left: 250px;
    background-color: #fff;
    padding: 0px 1px 0px 1px
}

.search-bar .input-group-text {
    background-color: transparent;
    color: #8A8A8A;
    border-radius: 20px;
}

.search-bar .form-control {
    border-radius: 20px;
}

.profile-info {
    display: flex;
    align-items: center;
}

.profile-info .foto-perfil {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    object-fit: cover;
    cursor: pointer;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.icones-roxos {
    max-height: 100%;
    max-width: 100%;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

.credits {
    color: #8c00ff;
    font-size: 14px;
}

.profile-details {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    font-size: 11px;
}

.progress-bar {
    background-color: #19b4ee;
}

.progress {
    background-color: #e0f7ff;
    height: 6px;
    border-radius: 5px;
}

/*Menu dropdown*/
.menu-dropdown {
    position: absolute;
    right: 10px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 200px;
    padding: 10px;
    display: none;
    z-index: 10;
    margin-top: -30px;
}

/* Exibe o menu dropdown quando ativo */
.menu-dropdown.active {
    display: block;
}

/* Estilos dos itens do menu */
.menu-dropdown a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.menu-dropdown a:hover {
    background-color: #f1f1f1;
}

.icones-dropdown {
    margin-right: 10px;
    height: 30px;
}

/* Botão de sair */
.menu-dropdown .btn-sair {
    background-color: rgb(98, 43, 226);
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    transition: .3s ease;
    width: 100%;
}

.menu-dropdown .btn-sair:hover {
    background-color: rgb(30, 0, 100);
}

/*Conteudo principal*/
.main-content {
    margin-left: 250px;
    padding: 0 20px 0 20px;
}

/*Top trends*/
.top-trends {
    padding: 0px 20px 0px 20px;
}

.top-trends h1 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
}

.top-trends p {
    color: #8A8A8A;
}

/*Oscar*/
.oscar {
    background-color: #fff;
    background-image: url('../img/trend.png');
    background-repeat: no-repeat;
    background-position: right;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.oscar p,
h3 {
    color: #3D4040;
    font-size: 0.9rem;
    margin: 5px 0;
}

.oscar .btn-youtube {
    background-color: #CE5059;
    color: #fff;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-youtube:hover {
    background-color: #9c252d;
}

.oscar .btn-visualizacoes {
    background: linear-gradient(90deg, rgba(19, 180, 238, 1) 0%, rgba(45, 248, 250, 1) 100%);
    color: #fff;
    padding: 5px;
    border-radius: 20px;
    border: none;
    transition: transform .3s ease;
    width: 80px;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-visualizacoes img {
    width: 20px;
    margin-bottom: 3px;
}

.oscar .btn-visualizacoes:hover {
    transform: scale(1.1);
}

.oscar .btn-like {
    background-color: #6751D1;
    color: #fff;
    padding: 3px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    width: 80px;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-like img {
    width: 20px;
    margin-bottom: 3px;
}

.oscar .btn-like:hover {
    background-color: #3b306e;
}

.oscar .btn-facebook {
    background-color: #386CAF;
    color: #fff;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-facebook:hover {
    background-color: #254877;
}

.oscar .btn-tiktok {
    background-color: #3D4040;
    color: #fff;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-tiktok:hover {
    background-color: #242424;
}

.oscar .btn-google {
    background-color: #319F43;
    color: #fff;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-google:hover {
    background-color: #1e682a;
}

.oscar .btn-x {
    background-color: #1490A1;
    color: #fff;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-x:hover {
    background-color: #0f5d68;
}

.oscar .btn-instagram {
    background-color: #C5630E;
    color: #fff;
    padding: 8px 15px 8px 15px;
    border-radius: 20px;
    border: none;
    transition: background-color .3s ease;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-instagram:hover {
    background-color: #6e3400;
}

.oscar .btn-aproveitar-trends {
    background: linear-gradient(90deg, rgba(209, 81, 83, 1) 0%, rgba(134, 46, 246, 1) 100%);
    color: #fff;
    padding: 3px;
    border-radius: 20px;
    border: none;
    transition: color .3s ease;
    width: 170px;
    font-size: 0.7rem;
    font-weight: 500;
    height: 30px;
}

.oscar .btn-aproveitar-trends .img-fluid {
    margin-right: 10px;
    margin-bottom: 3px;
    height: 20px;
}

.oscar .btn-aproveitar-trends:hover {
    color: rgb(84, 28, 158);
}

.oscar .d-flex.align-items-center.flex-nowrap {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    overflow: hidden;
}

.oscar .music-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    overflow: hidden;
}

.oscar .music-player {
    flex-shrink: 1;
    min-width: 150px;
    max-width: 200px;
    display: flex;
    align-items: center;
}

.oscar .player-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.oscar .progress-bar {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 5px;
    position: relative;
}

.oscar .progress {
    width: 50%;
    height: 100%;
    background-color: #3EBBEB;
    border-radius: 2px;
}

.oscar .controls {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.oscar .controls img {
    height: 25px;
    cursor: pointer;
    transition: .3s ease;
}

.oscar .controls img:hover {
    transform: scale(1.1);
}

/* Carrossel */
.carousel-container-oscar {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track-oscar {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-card-oscar {
    min-width: 100%;
    box-sizing: border-box;
    padding: 10px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .carousel-card-oscar {
        min-width: 33.33%;
    }
}

/* Indicadores */
.carousel-indicators-oscar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators-oscar button {
    border: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px;
    background-color: #ccc;
    cursor: pointer;
}

.carousel-indicators-oscar button.active {
    background-color: #007bff;
}

/*Qual conteudo*/
.qual-conteudo {
    padding: 20px;
}

.qual-conteudo h1 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
}

.qual-conteudo p {
    color: #8A8A8A;
}

.qual-conteudo h6 {
    color: #3D4040;
    margin-bottom: 0;
}

/* Estilo dos botões de conteúdo */
.conteudo-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.conteudo {
    flex: 0 0 auto;
    background-color: white;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.conteudo.active {
    background: rgb(19, 180, 238);
    background: linear-gradient(90deg, rgba(19, 180, 238, 1) 0%, rgba(45, 248, 250, 1) 100%);
    color: white;
}

.conteudo img {
    margin-right: 10px;
    width: 24px;
}

.conteudo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Barra de rolagem personalizada */
.conteudo-wrapper::-webkit-scrollbar {
    height: 8px;
}

.conteudo-wrapper::-webkit-scrollbar-thumb {
    background-color: #00bfff;
    border-radius: 10px;
}

.conteudo-wrapper::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Textarea e barra de ferramentas */
.text-editor {
    margin-top: 20px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Área de texto */
textarea {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    resize: none;
    padding: 10px;
    color: #8A8A8A;
    font-size: 16px;
}

/* Contêiner do botão e da toolbar */
.toolbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Estilo da toolbar */
.toolbar {
    display: flex;
    gap: 10px;
}

.toolbar i {
    font-size: 18px;
    color: #3D4040;
    cursor: pointer;
    transition: color 0.2s ease;
    margin-right: 10px;
}

.toolbar i:hover {
    color: #00bfff;
}

/* Botão de criar conteúdo */
.btn-criar-conteudo {
    background: linear-gradient(90deg, rgba(209, 81, 83, 1) 0%, rgba(134, 46, 246, 1) 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .3s ease;
}

.btn-criar-conteudo:hover {
    transform: scale(1.1);
}

/*Qual estrategia*/
.qual-estrategia {
    padding: 20px;
}

.qual-estrategia h1 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
}

.qual-estrategia p {
    color: #8A8A8A;
}

.qual-estrategia .card-estrategia {
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    height: 100px;
}

.qual-estrategia .card-estrategia:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-estrategia h3 {
    font-size: 1rem;
    color: #3D4040;
    font-weight: bold;
}

.card-estrategia p {
    font-size: 14px;
}

.card-estrategia .card-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.qual-estrategia .card-estrategia-2 {
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 5px;
    height: 100px;
}

.qual-estrategia .card-estrategia-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-estrategia-2 h3 {
    font-size: 1rem;
    color: #3D4040;
    font-weight: bold;
}

.card-estrategia-2 p {
    font-size: 14px;
}

.card-estrategia-2 .card-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

/*Meus conteudos*/
.meus-conteudos {
    padding: 20px;
}

.meus-conteudos h1 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
}

.meus-conteudos h6 {
    color: #6751D1;
    font-weight: bold;
    cursor: pointer;
}

.conteudos-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.card-conteudo {
    background-color: #fff;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.card-conteudo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-conteudo small {
    background-color: #F3F1FD;
    color: #6751D1;
    border-radius: 20px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 43%;
}

.card-conteudo h4 {
    font-size: 1.2rem;
    color: #3D4040;
    font-weight: bold;
    min-height: 60px;
}

.card-conteudo p {
    min-height: 80px;
    color: #8A8A8A;
}

.card-conteudo .btn-visualizar {
    background: linear-gradient(90deg, rgba(19, 180, 238, 1) 0%, rgba(45, 248, 250, 1) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    transition: all .3s ease;
    margin-top: auto;
}

.card-conteudo .btn-visualizar:hover {
    transform: scale(1.1);
}

/* Barra de rolagem personalizada */
.conteudos-wrapper::-webkit-scrollbar {
    height: 8px;
}

.conteudos-wrapper::-webkit-scrollbar-thumb {
    background-color: #979797;
    border-radius: 10px;
}

.conteudos-wrapper::-webkit-scrollbar-track {
    background-color: #d9d9d9;
}

/*Modal Convidar*/
.modal-content {
    border-radius: 15px;
    padding: 0px 20px 0px 20px;
}

.modal-header {
    border-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
}

.nav-tabs {
    border-bottom: none;
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.nav-tabs .nav-link {
    font-weight: bold;
    color: #6c757d;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.nav-tabs .nav-link.active {
    color: #3EBBEB;
    border-bottom: 2px solid #3EBBEB;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.modal-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-body h5 {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

.modal-body .quando-receberei {
    background-color: #F9F5FE;
    padding: 15px;
    border-radius: 10px;
}

.modal-body .quando-receberei h6 {
    color: #6751D1;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}

.modal-body p {
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.btn-convidar {
    background-color: #fff;
    color: #6751D1;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 20%);
    transition: .3s ease;
}

.btn-convidar:hover {
    box-shadow: 4px 4px 4px 4px rgb(0 0 0 / 20%);
}

.btn-copiar,
.btn-recolher {
    background-color: #3EBBEB;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    border: none;
}

.btn-copiar:hover {
    background-color: #2EA5D3;
}

.btn-recolher:hover {
    background-color: #2EA5D3;
}

.info-importante-titulo {
    font-weight: bold;
    text-align: start !important;
    color: #6c757d;
}

.info-importante {
    font-size: 0.8rem;
    text-align: start !important;
    color: #6c757d;
}