/* estilopage.css */
body {
    padding: 20px;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(55,6,70,1) 35%); /* Gradiente do preto para azul escuro */
    color: hsl(270, 75%, 6%); /* Texto branco para melhor contraste */
    width: 69%;
    margin-top: -10px; /* Distância do topo */
    margin-left: auto;
    margin-right: auto; /* Centraliza o conteúdo */
    position: relative; /* Necessário para o pseudo-elemento funcionar */
    z-index: 1; /* Garante que o texto fique acima do pseudo-elemento */
}



.categoria-botao-ativo {
    background-color: orange;
    color: white;
}


h1, h2, h3 {
    color:#000000;
}

.container-principal, .container-categorias-config {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.categorias, .lista_de_ações {
    background-color: #ffffffd6;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.categorias {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    flex: 0 0 67%;
    margin: 0 auto;
    align-content: flex-end;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}
.categorias2 {
    display: contents;
    flex-wrap: nowrap;
    gap: 10px;
    flex: 0 0 67%;
    margin: 0 auto;
    align-content: flex-end;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.categorias > div {
        box-sizing: border-box; /* Inclui padding e borda na l


.lista_de_ações {
    flex: 0 0 25%; /* Ajusta a largura para 25% */
}

#listaCategoriasFilmes, #listaCategoriasSeries {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 768px) {
    #listaCategoriasFilmes, #listaCategoriasSeries {
        display: flex;
        flex-wrap: nowrap; /* Impede a quebra de linha */
        overflow-x: auto; /* Habilita scroll horizontal */
        -webkit-overflow-scrolling: touch; /* Scroll suave em dispositivos iOS */
        gap: 10px;
        padding: 10px 0;
        margin: 0 -20px; /* Compensa o padding da container pai se necessário */
        scrollbar-width: none; /* Esconde scrollbar no Firefox */
    }

    /* Esconde scrollbar no Chrome/Safari */
    #listaCategoriasFilmes::-webkit-scrollbar,
    #listaCategoriasSeries::-webkit-scrollbar {
        display: none;
    }

    /* Itens da lista */
    #listaCategoriasFilmes li,
    #listaCategoriasSeries li {
        flex: 0 0 auto; /* Impede o redimensionamento dos itens */
        white-space: nowrap; /* Mantém o texto em uma linha */
        padding: 8px 15px;
        margin-right: 10px; /* Substitui o gap para melhor compatibilidade */
    }
}
.categoria-item {
    padding: 10px 15px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.categoria-item:hover {
    background-color: #3498db;
    box-shadow: 0 6px 12px rgba(65, 105, 225, 0.3);
}

.lista_por_categorias {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

input[type="text"] {
    width: calc(70% - 22px);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: #3498db;
}

button {
    padding: 13px 20px;
    background-color: #eeedf1; /* Azul escuro no estado normal */
    color: #05141e; /* Azul claro para o texto */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 11px;
    transition: background-color 0.3s, transform 0.2s;
    margin: 5px; /* Espaço ao redor do botão */
}

button:hover {
    background-color: #2980b9; /* Azul mais claro ao passar o mouse */
    transform: translateY(-2px); /* Elevação sutil */
}

button:active {
    background-color: #FFA500; /* Laranja ao ser clicado */
    transform: translateY(2px); /* Pressionado */
}

button:focus {
    background-color: #070d42; /* Laranja após o clique */
    transform: translateY(2px); /* Simula o pressionado */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Adiciona um leve sombreado */
    color: white;
}

#item_filmes, #item_series {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.item {
    border: 2px solid royalblue;
    border-radius: 8px;
    padding: 3px;
    transition: box-shadow 0.3s;
    color:white;
}

.item:hover {
    box-shadow: 0 6px 12px rgba(65, 105, 225, 0.3);
}

h4 {
    color: white !important;
}
.categoria-botao {
    padding: 10px 15px; /* Espaçamento interno do botão */
    margin: 0; /* Remove margem interna adicional */
    background-color: #123356; /* Cor azul padrão */
    color: white; /* Cor do texto */
    border: none; /* Remove bordas padrão */
    border-radius: 5px; /* Bordas arredondadas */
    cursor: pointer; /* Cursor de interação */
    font-size: 11px; /* Tamanho do texto */
    text-align: center; /* Centraliza o texto */
    transition: background-color 0.3s ease; /* Transição suave para hover */
}

.categoria-botao:hover {
    background-color: #0056b3; /* Cor mais escura ao passar o mouse */
}
#popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

#popupContent {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-height: 100%;
}
.categoria-btn {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
}

.categoria-btn:hover {
    background-color: #0056b3;
}
/* Container geral do campo de busca com tags */
.tag-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    gap: 5px;
    background-color: #f9f9f9;
}

/* Contêiner das tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Input de busca */
.tag-input {
    border: none;
    flex: 1;
    font-size: 16px;
    min-width: 150px;
    padding: 5px;
    outline: none;
    background: none;
}

/* Estilo das tags */
.tag {
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 14px;
    white-space: nowrap;
}

/* Botão para remover a tag */
.tag .remove-tag {
    margin-left: 8px;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
}

.tag .remove-tag:hover {
    color: #ff4d4d;
}

/* Responsividade e comportamento */
.tag-input-container:focus-within {
    border-color: #007bff;
    background-color: #fff;
}

.tag-input::placeholder {
    color: #aaa;
}
.lista_por_nome {
    position: fixed; /* Fixa no topo */
    top: 0; /* Alinha ao topo */
    left: 0; /* Alinha à esquerda */
    width: 100%; /* Ocupa toda a largura da tela */
    background-color: #16082f; /* Cor de fundo */
    padding: 10px 15px; /* Espaçamento interno */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra para destaque */
    display: flex; /* Ativa o Flexbox */
    align-items: center; /* Alinha os itens verticalmente */
    justify-content: space-between; /* Espaço entre os itens */
    z-index: 1000; /* Garante que fique acima de outros elementos */
}

.lista_por_nome input[type="text"] {
    flex: 1; /* O input ocupa o máximo de espaço disponível */
    padding: 8px; /* Espaçamento interno */
    font-size: 14px; /* Tamanho da fonte */
    border: 1px solid #ccc; /* Borda ao redor */
    border-radius: 4px; /* Bordas arredondadas */
    margin-right: 10px; /* Espaço entre o input e o botão */
}

.lista_por_nome button {
    padding: 10px 20px; /* Espaçamento interno do botão */
    background-color: #3498db; /* Cor de fundo azul */
    color: white; /* Cor do texto */
    border: none; /* Remove a borda padrão */
    border-radius: 4px; /* Bordas arredondadas */
    cursor: pointer; /* Cursor de interação */
    font-size: 14px; /* Tamanho da fonte */
    transition: background-color 0.3s ease; /* Transição suave */
}

.lista_por_nome button:hover {
    background-color: #123356; /* Cor ao passar o mouse */
}


/* Estilização para os itens */
.lista_por_nome li {
    margin: 5px 0; /* Espaçamento entre os itens */
    padding: 5px; /* Espaçamento interno */
    border-bottom: 1px solid #ddd; /* Linha separadora */
    transition: background-color 0.2s ease; /* Suaviza mudanças no fundo */
}

.lista_por_nome li:hover {
    background-color: #f0f0f0; /* Destaque ao passar o mouse */
}
/* Estilo do overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Garante que esteja acima de tudo */
    visibility: hidden; /* Inicialmente oculto */
    opacity: 0; /* Transição suave para mostrar */
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

/* Mostra o loader */
.loader-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Estilo do spinner */
.loader {
    border: 8px solid #f3f3f3; /* Borda externa */
    border-top: 8px solid #3498db; /* Borda superior animada */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Animação de rotação */
}

/* Animação do spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Estilo do botão toggle */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px; /* Borda arredondada */
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 2.5px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%; /* Borda do círculo */
}

input:checked + .slider {
    background-color: #2196F3; /* Cor ativa */
}

input:checked + .slider:before {
    transform: translateX(24px); /* Move o círculo ao ser ativado */
}
body2 {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}
#info_busca {
    background-color: #f8f9fa; /* Cor de fundo suave */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 683px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    color: #333;
}

#info_busca h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    text-align: center;
    color: #007bff;
}

#info_busca label {
    display: block;
    margin-bottom: 15px;
}

#info_busca div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#info_busca select,
#info_busca input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#info_busca select:focus,
#info_busca input:focus {
    border-color: #007bff;
    outline: none;
}

#info_busca button {
    background-color: #123356;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

#info_busca button:hover {
    background-color: #0056b3;
}

.loader {
    display: none; /* Oculto por padrão */
    margin: 10px auto;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 123, 255, 0.3);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Global styles */




/* Form styles */
form {
    background: #fff;
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

input[type="file"],
input[type="text"] {
    width: calc(50% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
}

input[type="file"] {
    border: none;
    background-color: #e9ecef;
    cursor: pointer;
}

input[type="file"]:hover {
    background-color: #ddd;
}




#logContainer {
    margin: 20px auto;
    max-width: 600px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow-y: auto;
    max-height: 300px;
}

#logContainer h2 {
    font-size: 1.2rem;
    color: #2a9d8f;
    margin-bottom: 10px;
}

#log {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.4;
}

#log p {
    margin: 5px 0;
}

#log p.success {
    color: #2a9d8f;
}

#log p.error {
    color: #e63946;
}
.colunas {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
#btnAtualizar {
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
#btnAtualizar:hover {
    background-color: #0056b3;
}
h2 {
    text-align: center;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin: 5px 0;
    padding: 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 3px;
}
.content {
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* tres colunas */
    column-gap: 10px; /* Ajusta apenas a distância horizontal entre as colunas */
    row-gap: 20px; /* Define a distância vertical entre as linhas */
    justify-items: center; /* Centraliza os itens nas colunas */
    margin-top: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: #1a1a1a; /* Cinza quase preto */
    color: orange;
    text-decoration: none;
    border-radius: 15px; /* Cantos arredondados */
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.7); /* Sombra azul */
    transform: scale(1.05);
}

.card i {
    font-size: 2.5rem; /* Tamanho do ícone */
    margin-bottom: 10px;
    color: white; /* Altera a cor dos ícones para branco */
}


.card span {
    font-size: 1rem; /* Tamanho do texto */
    font-weight: bold;
}
.whatsapp-icon {
    position: absolute;
    top: 50px; /* Ajuste a posição abaixo do ícone de configuração */
    right: 10px;
    font-size: 20px;
    color: #ffffff; /* Verde do WhatsApp */
    cursor: pointer;
}

.whatsapp-icon a {
    text-decoration: none;
    color: inherit;
}

.whatsapp-icon a:hover {
    color: #128C7E; /* Tom mais escuro no hover */
}
.cards-container {
    display: inline-block; /* Usando grid para criar colunas */
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais por padrão */
    gap: 20px; /* Espaço entre os itens */
    max-width: 1200px; /* Limita a largura máxima da área */
    margin: 0 auto; /* Centraliza a área no meio da página */
    padding: 20px; /* Padding opcional */
}

/* Para telas pequenas (desktop) - uma coluna */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr; /* Apenas 1 coluna */
    }
}

/* Para telas grandes (PC) - até 3 colunas */
@media (min-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    }
}
#popupCategoria {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}
/* Floating Menu Styles */
.floating-menu {
    position: fixed;
    top: 5%;
    left: 0;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    pointer-events: none;
}

.floating-card {
    width: 60px;
    height: 60px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
    pointer-events: all;
    cursor: pointer;
}

.floating-card:hover {
    transform: scale(1.1);
    background-color: #555;
}

.floating-card i {
    font-size: 24px;
    color: #fff;
}

.floating-menu a {
    text-decoration: none;
}
#botaoVoltarTopo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px; /* Tamanho um pouco maior */
    height: 60px; /* Tamanho um pouco maior */
    background-color: orange; /* Cor de fundo laranja */
    color: white; /* Ícone em branco */
    border: none;
    border-radius: 50%; /* Forma circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para destaque */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Tamanho maior para o ícone */
    cursor: pointer;
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
    opacity: 0; /* Invisível inicialmente */
    transform: scale(0.8); /* Levemente reduzido */
}

#botaoVoltarTopo:hover {
    background-color: #ff7f00; /* Fundo laranja mais escuro ao passar o mouse */
    transform: scale(1.1); /* Leve aumento ao passar o mouse */
}

#botaoVoltarTopo.show {
    opacity: 1; /* Visível quando ativado */
    transform: scale(1); /* Tamanho normal */
}

#botaoCadastrarUmPorUm {
    animation: pulsar 1.5s infinite; /* Chama a animação */
    transition: background-color 0.3s;
    margin: 1px 0px 13px 9px;
}

#botaoCadastrarUmPorUm:hover {
    background-color: #555;
}

/* Animação de pulsar */
@keyframes pulsar {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1); /* Aumenta ligeiramente */
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}
#contador {
    display: flex;
    align-items: center;
    color: orangered; /* Texto escuro */
    border:solid 1px;
    padding: 10px 20px; /* Espaçamento interno */
    border-radius: 8px; /* Bordas arredondadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
    font-family: 'Arial', sans-serif; /* Fonte moderna */
    font-size: 16px; /* Tamanho da fonte */
    font-weight: bold; /* Texto em negrito */
    width: -webkit-fill-available; /* Ajusta ao tamanho do conteúdo */
    margin: 20px 0px 20px; /* Distância em todos os lados e centralizado horizontalmente */
    gap: 8px; /* Espaçamento entre texto e número */
}


#numerodeitems {
    color: #370646; /* Cor laranja vibrante para destaque */
    font-size: 12px; /* Maior que o texto principal */
    font-weight: bold; /* Destaca o número */
}
#popup-config {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
    width: 600px;
}

#popup-notificacao {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-height: 80vh;
    overflow-y: auto;
    width: 600px;
}

#popup-config .form-group, #popup-notificacao .form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#popup-config label, #popup-notificacao label {
    flex: 1;
    margin-right: 10px;
}

#popup-config input, #popup-notificacao p {
    flex: 2;
    padding: 8px;
}

#popup-config button, #popup-notificacao button {
    padding: 10px 20px;
    margin-right: 10px;
    cursor: pointer;
}

.gear-icon, .notification-icon {
    position: absolute;
    top: 87px;
    right: 4px;
    cursor: pointer;
    font-size: 24px;
    color: white;
}
.nova-notificacao {
    animation: mover 1s infinite;  /* Animação de movimento */
    color: #ff0000;  /* Cor para destacar */
    transform: scale(1.2);  /* Efeito de aumento de escala */
}

@keyframes mover {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 500px;
}
.popup-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}
.popup-content button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.sugestoes {
    display: none; /* Esconde sugestões por padrão */
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 25%;
}

.sugestoes div {
    padding: 2px;
    cursor: pointer;
}

.sugestoes div:hover {
    background: #f0f0f0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  .navbar {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px 10px; /* Adiciona o espaçamento de 10px na parte inferior */
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px; /* Cantos arredondados */
    margin-bottom: 5px;
}

  
  .navbar .logo {
    font-size: 24px;
  }
  
  .nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
  }
  
  .nav-links a:hover {
    color: #6c63ff;
  }
  
  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    border-radius: 15px; /* Cantos arredondados */
    margin-bottom: 10px; /* Distância de 5px abaixo da seção */
  }
  
  .hero-content {
    max-width: 500px;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .hero-content h1 span {
    color: #6c63ff;
  }
  
  .hero-content p {
    margin-bottom: 30px;
    color: #555;
    font-size: 18px;
  }
  
  .buttons {
    display: flex;
    gap: 15px;
  }
  
  .btn {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
  }
  
  .btn.primary {
    background-color: #6c63ff;
    color: #fff;
  }
  
  .btn.secondary {
    background-color: #f0f0f0;
    color: #6c63ff;
  }
  
  .hero-image img {
    max-width: 100%;
    border-radius: 8px;
  }
  #barraCarregamento {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f4f4f4;
    z-index: 9999;
  }
  
  .progresso {
    width: 0;
    height: 100%;
    background-color: orange;
    transition: width 0.1s ease;
  }
  
  