@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monomakh&family=Space+Grotesk:wght@300..700&family=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Cores fixas institucionais */
:root {
    --fundo-padrao: var(--bg-primary);
    --fundo-secundario: var(--bg-secondary);
    --fundo-card: var(--card-bg);
    --texto-titulo: var(--text-primary);
    --texto-descricao: var(--text-secondary);
    --borda-suave: var(--border-color);
    --destaque-principal: var(--accent-primary);
}

.light-mode {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-gradiente2: #BFD0C9;
    --bg-gradiente1: #65879D;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-tertiary: #3f688d;
    --text-muted: #94a3b8;
    --border-color: rgba(226, 232, 240, 0.8);
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    --accent-primary: #3b82f6;
    --accent-hover: rgba(59, 130, 246, 0.1);
    --accent-border: rgba(59, 130, 246, 0.2);
    --header-bg: rgba(255, 255, 255, 0.98);
    --card-bg: #ffffff;
    --card-hover-bg: #ffffff;
    --decorative-bg: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
}

/* Variáveis CSS para Modo Escuro */
.dark-mode {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-gradiente2: #679280;
    --bg-gradiente1: #1e4964;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-tertiary: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(71, 85, 105, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
    --shadow-medium: rgba(0, 0, 0, 0.3);
    --shadow-heavy: rgba(0, 0, 0, 0.4);
    --accent-primary: #60a5fa;
    --accent-hover: rgba(96, 165, 250, 0.1);
    --accent-border: rgba(96, 165, 250, 0.3);
    --header-bg: rgba(15, 23, 42, 0.95);
    --card-bg: rgba(30, 41, 59, 0.8);
    --card-hover-bg: rgba(30, 41, 59, 0.95);
    --decorative-bg: radial-gradient(circle at 25% 25%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}
/* Estilo do separador vertical */
.vr-nav {
    width: 1px;
    height: 36px; /* Exatamente igual ao botão */
    background-color: currentColor; /* mesma cor do texto/botão */
    opacity: 0.5;
    align-self: center; /* centraliza verticalmente no d-flex */
    border-radius: 1px;
    transition: background-color 0.3s ease-in-out;
}

body {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--bg-gradiente1) 0%, var(--bg-gradiente2) 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);

}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    font-size: 1.5rem;
    font-weight:600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-light {
    padding: 60px 20px;
    height: auto;
}
.section-dark {
    background: linear-gradient(135deg, var(--bg-gradiente2) 0%, var(--bg-secondary) 100%);
    padding: 20px;
    padding-bottom: 100px;
    height: auto;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../imagens/pagina-inicial/estatisticas_crescimento.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: 100%;
    color: var(--text-primary);
}
.feature-card h5{
    color: var(--text-primary);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e4964, #679280);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px var(--card-hover-bg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #3f688d;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-image {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: cover;
}


.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.stats {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.stat-card {
    padding: 30px;
    background: var(--bg-gradiente2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    font-weight: 500;
    margin: 0;
}
@media (max-width: 576px) {
    .stats {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .feature-card {
        padding: 20px 15px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .hero-section,
    .section-dark {
        clip-path: none;
        padding: 80px 15px 60px;
    }
}
.footer {
    background-color: #20232a;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
}
footer img {
    max-width: 100%;
    height: auto;
}

.btn-custom {
    background: linear-gradient(100deg, #1e4964, #679280);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 10px var(--shadow-light);
    text-decoration: none;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 15px var(--shadow-medium);
    color: white;
}

.btn-custom i {
    transition: transform 0.3s ease;
}

.btn-custom:hover i {
    transform: translateX(5px);
}

.cta-section {
    text-align: center;
    position: relative;
    padding: 100px 20px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .stats {
        font-size: 2.5rem;
    }
}

.top-header {
    background-color: transparent;
    color: var(--text-primary);
    z-index: 9999;
    transition: background-color 0.1s ease-in-out;
}
/* Header com cor de fundo ao rolar */
.top-header.scrolled {
    background-color:var(--header-bg);
    box-shadow: 0 4px 8px var(--shadow-light);
}

.top-header .nav-link {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    transition: color 0.2s ease;
}

.top-header .nav-link:hover {
    color: var(--accent-primary);
}

.top-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.top-header .nav-link:hover::after {
    width: 100%;
}

.top-header .btn-outline-primary {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.top-header .btn-outline-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-primary);
}

h1,
h2,
h3 {
    color: var(--text-primary);
}

p,
label,
small {
    color: var(--text-secondary);
}

input,
textarea {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    /* Espaçamento entre os cards */
    padding: 20px;
}

/* Estilo individual de cada card - agora clicável */
.card {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 280px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    /* Indica que o card é clicável */
    text-decoration: none;
    /* Remove sublinhado quando usado como link */
}

.card:hover {
    background-color: var(--card-hover-bg);
    box-shadow: 0 8px 20px var(--shadow-heavy);
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
    background-color: var(--bg-tertiary);
    padding: 30px 20px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    max-width: 90px;
    height: auto;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: bold;
}

.card-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
    /* Faz o parágrafo ocupar o espaço disponível */
    margin-bottom: 20px;
}

/* Estilos para o contador de notificações (badge) */
.card-badge-container {
    position: relative;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dc3545;
    /* Vermelho */
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
}

label.error {
    color: red;
    /* color: #58151c !important; */
    font-size: 0.8rem;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.device_smoll {
    display: none;
}

body {
    font-family: "Lato", sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    min-height: 100vh;
    color: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--header-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.content{
    margin-top: 5%;
}
header .img-logo {
    width: 40%;
}

.header-option {
    color: var(--text-tertiary);
}

.header-option:hover {
    color: #1e4964;
}

header .dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .back-button {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
}

header .back-button img {
    width: 32px;
    height: 32px;
    cursor: pointer;
}

#perfilUsuario {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.bt-voltar-home .bt-voltar {
    position: fixed;
    bottom: 40px;
    left: 80px;
    z-index: 1000;
}

.bt-voltar-home .bt-voltar img {
    width: 50%;
    border-radius: 50%;
}

.bt-voltar-home .bt-voltar img:hover {
    transform: scale(1.1);
}

.bt-next-home .bt-next {
    position: fixed;
    bottom: 40px;
    right: 35px;
}

.bt-next-home .bt-next img {
    width: 50%;
    border-radius: 50%;
    transform: scaleX(-1);
}

.bt-next-home .bt-next img:hover {
    transform: scale(1.1) scaleX(-1);
}

@media only screen and (max-width: 768px) {
    header .logo {
        justify-content: center;
    }

    .wrapper {
        margin-top: 120px;
    }
}

#buscar {
    padding-left: 40px;
    /* Space for the icon */
    background: url(../imagens/pagina-cadastro/tabelas-cadastros/lupa.webp) no-repeat left 10px center;
    background-size: 20px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    background-color: white;
    width: 600px;
}

#buscar:focus {
    border-color: #007bff;
}

#btn-buscar {
    display: none;
}

/* ESTIZILAÇÃO DAS PÁGINAS DE CRIAÇÃO DO PROCESSO */
.subdados {
    display: flex;
    align-content: center;
    justify-content: center;
    position: relative;
    margin: 50px;
}

.subdados .button-container {
    top: 50%;
    left: 100%;
    /* Alinhar o botão à direita da sidebar */
    transform: translateY(-50%);
    z-index: 1000;
    /* Garante que o botão fique sobre a sidebar */
}

.subdados .lateral {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.5s ease;
    position: relative;
    bottom: 25px;
}

/*NAVS*/

.subdados .lateral .navs {

    width: 400px;
    height: 60px;

    transition: transform 1s ease;
    position: relative;

    padding-bottom: 5px;
    z-index: 100;
    display: flex;

    justify-content: center;
    align-items: center;
    border-left: 3px solid;
    border-image-source: linear-gradient(to top, var(--bordaRoxo) 55%, transparent 45%);
    border-image-slice: 1;
}

.subdados .lateral .navs .nav-item {
    margin: 15px;
}

.subdados .lateral .nav-link {
    color: var(--text-color1);
    font-size: 20px;
}

.subdados .lateral .navs .linhaNav {
    position: absolute;
    bottom: 50%;
    border-bottom: 3px solid;
    border-image-source: linear-gradient(to right, var(--bordaRoxo) 80%, transparent 20%);
    border-image-slice: 1;
    width: 100%;
    z-index: -1;
}

.subdados .lateral .navs .circulo {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
    z-index: 3;
}

.subdados .lateral .navs .circuloFora {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--brancoAlabastro);
    border: 3px solid var(--bordaRoxo);
    z-index: 2;
}

.subdados .lateral .navs #circuloEtapa1 {
    background-color: var(--etapa1);
}

.subdados .lateral .navs #circuloEtapa2 {
    background-color: var(--etapa2);
}

.subdados .lateral .navs #circuloEtapa3 {
    background-color: var(--etapa3);
}

.subdados .lateral .circuloFora:hover {
    transform: scale(1.05);
    /*border: 3px solid #2133bf;*/
}

.subdados .lateral .nav-link:disabled {
    color: var(--text-color1);
    font-weight: lighter;
}

/*NAVS*/

.subdados .btn.rotate {
    transform: rotate(180deg);
}

.subdados a {
    text-decoration: none;
}

.subdados .sidebar {
    width: 400px;
    height: 550px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    transition: transform 1s ease;
    position: relative;
    /* Contexto de posicionamento para o botão */
    z-index: 1;
    /* Garante que a sidebar esteja atrás do botão */
    background-color: white;
    overflow-y: scroll;
    border-left: 3px solid;
    border-image-source: linear-gradient(to bottom, #5B59F0, #30B7B4, transparent 70%);
    border-image-slice: 1;
}

.sidebar::-webkit-scrollbar {
    scrollbar-width: thin;
}

/* Estiliza o fundo da barra de rolagem */
.sidebar::-webkit-scrollbar-track {
    background: white;
    border-radius: 2px;
}

/* Estiliza o "pedaço" móvel da barra */
.sidebar::-webkit-scrollbar-thumb {
    background: whitesmoke;
    border-radius: 2px;
    transition: background 0.3s ease-in-out;
}

.sidebar:hover::-webkit-scrollbar-thumb {
    background: lightgray;
    /* Cor destacada */
}

.subdados .dados {
    height: 550px;
}

.subdados #listarEtapa2,
.subdados #listarEtapa3,
.subdados #listarEtapa4 {
    display: none;
    height: 100%;
}

.subdados .lateral.hidden {
    transform: translateX(-450px);
}

.subdados .lateral.hidden+.container {
    transform: translateX(-200px);
}

.hidden {
    display: none;
}

.subdados .lateral {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.subdados .titulo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subdados .titulo img {
    width: 50px;
    margin-right: 10px;
}

.subdados .sidebar .etapa {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: whitesmoke;
    margin-bottom: 8px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--text-color1);
}

.subdados .sidebar .etapa p {
    margin-bottom: 0;
}

.subdados .lateral .sidebar .etapa:hover {
    background-color: #f0f0f0;
}

.subdados .sidebar .etapa .item {
    height: 100%;
    width: 55%;
    padding: 15px;
    font-weight: bolder;
    display: flex;
    align-items: center;
}

.subdados .sidebar .etapa .info {
    height: 100%;
    width: 45%;
    color: var(--main-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-right: 15px;
    flex-wrap: wrap;
    font-size: 13px;

}

.subdados .sidebar .etapa .info a {
    color: var(--main-color1);
}

.subdados .container {
    flex-grow: 1;
    min-height: 600px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: white;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--text-color1);
    transition: all 0.3s, margin-left 0.3s ease, width 0.2s ease;
}

.subdados .tittle {
    padding-top: 5%;
}

.subdados .tittle h1 {
    text-align: center;
}

.subdados .container .buttons {
    width: 100%;
    padding: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.subdados .buttons .formEditar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    min-width: 800px;
}

.subdados .buttons .formEditar textarea {
    min-width: 800px;
    background-color: #ebf6ff;
}

.subdados .container .formSubdados {
    width: 100%;
}

.subdados .container .box {
    height: 150px;
    width: 260px;
    background: var(--brancoAlabastro);
    margin: 10px 30px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    transition: 0.3s;
}

.subdados .container .box:hover {
    opacity: 1;
    background: var(--cinzaClaro);
}

.subdados .container .box .botao {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 10px;
}

.subdados .container .box .botao img {
    max-width: 85px;
    margin-top: 20px;
}

.subdados .container .box .botao p {
    margin-top: 15px;
    font-weight: bold;
    color: var(--text-color1);
    font-size: 20px;
}

.subdados .container .box .botao p::first-letter {
    text-transform: uppercase;
}

.subdados .container .box .botao .botaoAtributo {
    background-color: transparent;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* CAPA DO PROCESSO - ETAPA 3 */
.capaProcesso {
    display: flex;
    justify-content: center;
}

.capaProcesso .table {
    width: 100%;
    border-collapse: collapse;
    /* Faz com que as bordas se fundam em uma só linha */
    width: 100%;
    /* A tabela ocupará toda a largura disponível */
    height: 100%;
    /* A tabela ocupará toda a altura disponível */
    border-spacing: 0 15px;
    /* Aumenta o espaço entre as linhas */
}

.capaProcesso .a4-container {
    width: 210mm;
    /* Largura de uma folha A4 */
    height: 297mm;
    /* Altura de uma folha A4 */
}

.capaProcesso .a4-container .titulo {
    text-align: center;
    line-height: 20px;
    font-size: 20px;
}

.capaProcesso .a4-container th {
    text-align: left;
    background-color: var(--prata-suave-color);
}

.capaProcesso th,
.capaProcesso td {
    border: 0.5px solid #000;
    /* Adiciona uma borda sólida de 1 pixel */
    margin-top: 20px;
    vertical-align: middle;
    word-wrap: break-word;
}

.capaProcesso .maiusculo {
    text-transform: uppercase;
}

/* POPUP TOASTIFY */
.my-toast {
    box-sizing: border-box;
}

.my-toast .toastify-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    min-width: 200px;
    word-break: break-word;
    gap: 15px;
}

.my-toast .toastify-content .text-alert {
    margin: auto;
    /*text-align: center;*/
}

.my-toast .toastify-content .close-btn {
    cursor: pointer;
    font-weight: bold;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 60px 0 20px 0;
    /* Espaço superior e inferior */
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 3px solid #ddd;
    /* Linha */
    border-radius: 7px;
    margin: 0 10px;
    /* Espaçamento entre linha e texto */
}

.divider span {
    white-space: nowrap;
    /* Garante que o texto não quebra */
    padding: 0 10px;
    /* Espaçamento ao redor do texto */
    font-size: 20px;
    /* Tamanho do texto */
    color: #666;
    /* Cor do texto */
}

hr.rounded {
    border-top: 2px solid #bbb;
    border-radius: 5px;
    margin-top: 45px;
}

.tooltip-inner {
    background-color: black !important;
    /* Cor de fundo mais clara */
    color: white !important;
    /* Cor do texto */
    border: 1px solid #ccc !important;
    /* Borda sutil */
    border-radius: 4px !important;
    /* Cantos levemente arredondados */
    font-size: 15px !important;
    /* Tamanho de fonte (opcional) */
    max-width: 400px !important;
    /* Aumente conforme necessário */
    white-space: normal !important;
    /* Permite o texto quebrar em várias linhas */
    word-wrap: break-word !important;
    /* Quebra palavras longas */
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #222 !important;
}

.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #222 !important;
}

/*PAINEL DE CONTROLE*/

.card-icon-painel {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--licitapro);
    transition: all 0.2s ease-in-out;
}

.card-painel:hover {
    background-color: #f8f9fa;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease-in-out;
}

.painel-titulo {
    font-weight: bold;
    font-family: "Volkhov", serif;
    text-align: center;
    color: var(--text-color1);

    margin-top: 30px;
}

.secao-titulo-painel {
    font-size: 1.3rem;
    font-weight: bold;
    font-family: "Volkhov", serif;

    margin-top: 60px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 5px;
}

/*BARRA DE BUSCA E ADICIONAR*/

.container .options {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container .search,
.container .buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.container .search {
    flex: 1;
    max-width: 600px;
}

.container h3 {
    font-family: "Volkhov", serif;
    color: var(--text-color1);
}

.container .search input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
}

.container .search button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
}
.section-light::after,
.section-dark::after,
.hero-section::after{
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 0px;
    pointer-events: none;
    z-index: 1;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
