﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;900&display=swap');

:root {
    --color-primary: #011559;
    --color-secondary: #012578;
    --color-tertiary: #023ea0;
    --color-quaternary: #39A9F1;
    --color-quinary: #0EC6CB;
    --color-black: #000000;
    --color-menu: #14809d;
    --color-menu-dark: #025a72;
    --color-menu-light: rgb(10, 157, 198);
    --color-green: #16b79a;
    --color-grey: #d1ece7;
    --color-transp: rgba(255, 255, 255, 0.2);
    --color-transp2: rgba(255, 255, 255, 0.8);
    --color-transp3: rgba(255, 255, 255, 0.5)
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: radial-gradient(#011559, #000f30);
    font-weight: 400;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none
}

li {
    color: white
}

h1,

h3,
h4{
    color: white;
    text-align: center;
}
p, a {
    color: white
}

a:hover{
    text-decoration: underline
}

.main_container {
    padding-left: 7vw;
    padding-right: 7vw;
    padding-bottom: 30px;
    animation: fadein .5s linear;
    min-height: 80vh;
}


a:hover {
    color: white;
    cursor: pointer
}

button {
    background-color: rgba(14, 198, 203, 0.7);
    color: white;
    border: none;
    border-radius: 3px;
    /* width: 100%; */
    /*    margin: 0 auto;*/
    padding: 7px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    /*    margin-top: 10px;
    margin-bottom: 15px;*/
}

    button a {
        color: white
    }

    button:hover {
        background-color: rgba(14, 198, 203, 0.9);
        transition: all 200ms ease-in-out;
        cursor: pointer
    }

    button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

* textarea {
    padding: 8px
}

input {
    padding: 5px;
    height: 35px;
    border-radius: 5px;
    border: none;
}

    input:disabled {
        opacity: 0.6;
        /* Example: reducing opacity for a disabled look */
        cursor: not-allowed;
        /* Example: changing cursor to not-allowed */
    }


hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
    background-color: white;
    border: white;
    width: 100%;
    height: 1px
}

.alert-warning {
    color: white;
}

/*paginacao*/

.btn-active-in-pagination,
.pagination-analise button:focus,
.pagination-result button:focus {
    background-color: var(--color-quaternary);
}

.content-block-result,
.content-block-analise {
    display: block;
}

.pagination-analise,
.pagination-result {
    margin: 10px 0;
    display: block;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center
}

    .pagination-analise button,
    .pagination-result button {
        margin: 0 5px 0 0;
        outline: none;
        background-color: var(--color-tertiary);
        width: 35px;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center
    }

        .pagination-analise button:hover,
        .pagination-result button:hover {
            background-color: var(--color-quaternary)
        }

/*    fim da paginacao*/

.jumbotron {
    background-color: rgba(255, 255, 255, 0.9) !important;
}


.input-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

    .input-group input {
        width: 300px;
    }

    .input-group button {
        width: 150px;
        background-color: var(--color-quaternary);
        border: none;
    }

        .input-group button:hover {
            width: 150px;
            background-color: var(--color-quinary);
            border: none;
        }

.page_title {
    color: white;
    padding-bottom: 20px
}

.container-fluid h2 {
    color: white;
    padding-bottom: 20px;
    padding-top: 20px
}


.bg-azul-claro-transp {
    background: radial-gradient(#0EC6CB, #39A9F1)
}

.alert-success {
    padding: 40px;
    margin: 0 auto;
    width: 80%;
    border-radius: 5px;
    padding-top: 50px;
}


/*login page*/
@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotating-image {
    animation: rotateImage 50s linear infinite;
}

.section-login {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    background-size: cover;
    flex-grow: 2;
    max-height: 100vh;
}

.login-form {
    background-color: var(--color-transp);
    border: none;
    margin: 0 auto;
    width: 70%;
    padding: 40px;
}
.login-form-button-2 {
    border: none;
    margin: 0 auto;
    width: 70%;
    padding: 40px;
    margin-top: 10px; /* Reduza o espaço */
}

.img_login {
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadein 3s linear
}

    .img_login img {
        max-width: 300px;
    }


@media (min-width: 1000px) {
    .section-login {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100vw;
    }

    .vertical-line {
        width: 1px;
        height: 90vh;
        background-color: white;
    }

    .login-form {
        background-color: transparent;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        flex: 1;
        padding: 40px;
    }

    .img_login img {
        max-width: 440px;
    }

    .login-form input {
        width: 25vw;
    }
}

/*detalhes do login*/
.login-form h1 {
    color: var(--color-quinary);
    text-align: center;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    padding: 5px;
    color: white;
}

.login-form input {
    padding: 5px;
    height: 35px;
    border-radius: 5px;
    border: none;
    margin-top: 5px;
    background-color: rgba(255, 255, 255, 0.7);
}


.checkbox-label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 10px;
}

    .checkbox-label input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

.checkbox-label:hover input ~ .checkmark {
    background-color: #ccc;
}

/*.checkbox-label input:checked ~ .checkmark {
    background-color: var(--color-quaternary);
}*/

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: 1px solid var(--color-quaternary);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form-container a,
.form-container button {
    margin-top: 10px; /* Ajuste o espaçamento aqui */
    margin-bottom: 0;
}

.login-btn {
    background-color: rgba(14, 198, 203, 0.7);
    color: white;
    border: none;
    border-radius: 5px;
    margin: 0 auto;
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
}

    .login-btn:hover {
        background-color: rgba(14, 198, 203, 0.9);
        transition: all 200ms ease-in-out;
    }


#forgot-password,
#back-login,
#back-login2 {
    color: white;
    font-size: 12px;
    text-decoration: none;
    text-align: center;
}

#back-login2 {
    margin-top: 20px
}

    #forgot-password:hover,
    #back-login:hover,
    #back-login2:hover {
        text-decoration: underline;
    }
.openidconnect-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}
/* Layout principal */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Coluna esquerda (logo) */
.login-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40%;
}

/* Linha divisória */
.vertical-line {
    width: 1px;
    background-color: #fff;
    height: 70%;
    margin: 0 20px;
}

/* Coluna direita (botões e formulário) */
.login-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40%;
}

/* Botão Entrar com Microsoft */
.login-btn {
    background-color: #2ca3e2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
}

/* Link para abrir o formulário */
.login-link a {
    color: #2ca3e2;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

/* Formulário de login escondido */
#login-form {
    display: none;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .vertical-line {
        display: none;
    }

    .login-left, .login-right {
        width: 100%;
    }
}

.position-absolute {
    position: relative;
}
.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px; /* Ajuste o espaçamento */
}
/* Formulário inicialmente escondido */
#login-form {
    display: none;
}

/* Alinhamento para o botão inicial */
#login-toggle {
    text-align: center;
    margin-bottom: 20px;
}

/* Alinhamento para o botão inicial */
#login-toggle {
    text-align: center;
    margin-bottom: 20px;
}

/*    fim do login */


.welcome-header {
    margin-bottom: 20px;
}

    .welcome-header h1 {
        font-size: 28px;
        font-weight: 700;
        color: white;
        margin-bottom: 8px;
    }

    .welcome-header p {
        font-size: 18px;
        color: var(--color-transp2); /* branco suave, já definido */
    }
/* Estilo geral */
.home_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.subtitle {
    display: block;
    font-size: 1.1rem;
    color: #ccc;
    margin-top: 4px;
    margin-bottom: 1rem;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 24px;
}

/* Banner */
.banner-card {
    background-color: #14809d;
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px;
    flex-wrap: wrap;
}

    .banner-card .banner-text {
        max-width: 100%;
    }

    .banner-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .banner-card p {
        font-size: 1rem;
        line-height: 2rem;
    }

    .banner-card .button {
        background-color: #0EC6CB;
        color: #001e3c;
        padding: 10px 18px;
        border-radius: 6px;
        font-weight: bold;
        display: inline-block;
        text-decoration: none;
        margin-top: 12px;
        margin: 12px auto 0; /* top margin + centralização */
    }

.banner-img {
    margin-top: 10px;
    max-height: 100px;
    margin-left: 20px;
    height: 50px;
}
.home-top-section {
    display: flex;
    flex-direction: column;

}

/* Cards */
.card-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 30%;
    background-color: #0c2741;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    min-width: 260px;
}

    .card:hover {
        transform: translateY(-4px);
    }

    .card h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: white;
    }

    .card ul {
        list-style: none;
        padding-left: 0;
    }

    .card li {
        margin: 6px 0;
        color: #eef0f1;
    }

/* Eventos */
.event-carousel-section {
    margin-top: 40px;
}

.carousel-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    scrollbar-width: none; /* Firefox */
    margin-bottom: 40px;
    margin-top: 16px;
    border-radius: 10px;
}
    .carousel-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
.event-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    color: #000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
    .event-card div:last-child {
        flex: 1;
    }
.img-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 98px;
}
.event-card:hover {
    transform: scale(1.03);
}

    .event-card img {
        width: 50%;
        height: auto;
        border-radius: 6px;
    }

    .event-card h5 {
        font-size: 1.1rem;
        color: #011456;
        margin: 8px 0 4px;
    }

    .event-card p {
        margin: 0 0 10px;
        font-size: 0.9rem;
        color: #333;
    }

    .event-card a {
        display: inline-block;
        margin-top: 5px;
        color: #0c2741;
        font-weight: bold;
        text-decoration: none;
    }

.index_section {
    padding-top: 90px
}

/*.home_container {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    min-height: 40vh;
}*/

    .home_container h3 {
        color: white
    }

    .img_home img {
        max-width: 250px;
    }

.linha-divisoria {
    height: 1px;
    background-color: white;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.home_icon {
    width: 25px;
    display: flex;
    justify-content: center
}

.main_home_container ul {
    list-style: none
}

.main_home_container li a {
    color: white;
    text-decoration: none;
    transition: all 200ms ease-in-out;
    display: flex;
    margin-top: 8px
}

    .main_home_container li a:hover {
        color: #eef0f1;
        text-decoration: underline;
    }


.obs_container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

.aniversario_container,
.assuntos_container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 5px;
    background: radial-gradient(#012578, #023ea0);
    flex: 1;
}
.assuntos_container {
    background: radial-gradient(#035384, #02324f);
}
    .aniversario_container ul,
    .assuntos_container ul{
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 14px
    }

    .aniversario_container h3,
    .assuntos_container h3 {
        font-size: 18px;
        margin-bottom: 9px
    }

.obs_container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1;
}

@media (max-width: 700px) {
    .home_container {
        flex-direction: column;
        gap: 20px;
    }

    .main_home_container {
        flex: 1; /* Permite que o container principal ocupe mais espaço em telas menores */
        min-height: auto; /* Remove a altura mínima */
    }
    /*.video_container {
        width: 100%;*/ /* Altera a largura para ocupar toda a largura disponível */
        /*gap: 20px;*/ /* Reduz o espaçamento entre os elementos */
        /*padding: 10px;*/ /* Adiciona um pequeno preenchimento */
        /*text-align: center;*/ /* Centraliza o texto */
    /*}*/
    .aniversario_container,
    .assuntos_container {
        flex: 1; /* Faz com que os containers ocupem o mesmo espaço */
        min-height: auto; /* Remove a altura mínima */
        margin-bottom: 20px; /* Adiciona um espaço entre os containers */
    }
}



.img_home {
    margin: 0 auto;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

    .img_home img {
        max-width: 310px;
    }


.main_home_container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: space-around;
    align-items: flex-start;
    border-radius: 5px;
    background: #0A192F;
    flex: 5;
    min-height: 390px;
}

    .main_home_container li a {
        color: white
    }

        .main_home_container li a:hover {
            color: white
        }

.video_container {
    display: flex;
    padding: 10px;
    justify-content: center;
    border-radius: 8px;
    /* background: radial-gradient(#025a72, rgb(10, 15  7, 198)); */
    background: radial-gradient(#035384, #02324f);
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width:100%;
    height:20vw;
}
    .video_container a {
        color: white;
    }
    .video_container img {
        width: 15%;
        padding: 10px;
        animation: rotateImage 50s linear infinite;
    }
@media only screen and (max-width: 1250px) {
    .video_container {
        width: 100%;
        justify-content:space-around;
    }
        .video_container img {
            width: 15%;
            padding: 10px;
        }

}

.link_container {
    display: flex;
    flex-direction: column;
    padding: 25px;
    justify-content: center;
    align-items: flex-start;
    border-radius: 8px;
    background: radial-gradient(#012578, #023ea0);
    flex: 1;
    height: 30vw;
}
.modal {
    display: none; /* começa oculto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: clip;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #0A192F;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px; /* opcional, para limitar a largura */
}
/* Espaçamento entre seções */
.modal-section {
    margin-bottom: 15px; /* Ajuste conforme desejar */
}

/* Estilo dos links dentro do modal */
.modal-content a {
    color: #ffc107; /* Cor amarela (exemplo) */
    text-decoration: underline;
    margin-left: 5px; /* Pequeno espaçamento à esquerda, se quiser */
}

/* Ajustar espaçamento entre parágrafos e títulos */
.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover {
        color: #000;
    }

/* fim do home page / index */
/*navbar*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-menu);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2001;
    height: 65px
}

.fa-caret-down {
    margin-left: 4px;
}

header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px
}

    header .logo img {
        height: 60px;
        padding: 5px
    }

header .navbar ul {
    list-style: none;
}

    header .navbar ul li {
        position: relative;
        float: left;
    }

        header .navbar ul li form {
            height: 65px
        }

        header .navbar ul li button {
            height: 100%;
            background: transparent;
            padding: 0px;
            margin: 0px;
            font-size: 15px;
            font-weight: 400
        }

        header .navbar ul li a {
            font-size: 13px;
            padding: 10px;
            color: white;
            transition: all 200ms ease-in-out;
            height: 65px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 400;
        }

            header .navbar ul li a:hover {
                background-color: var(--color-menu-light);
            }

        header .navbar ul li ul {
            position: absolute;
            left: 0;
            width: 200px;
            background-color: var(--color-menu-dark);
            opacity: 0;
            visibility: hidden;
            display: none;
            transition: all 200ms ease-in-out;
        }

        header .navbar ul li:hover > ul {
            opacity: 1;
            visibility: visible;
            display: initial;
        }


            header .navbar ul li ul li {
                width: 100%;
                border-top: 1px solid var(--color-menu);
            }

        header .navbar ul li:hover > ul {
            opacity: 1;
            visibility: visible;
            display: initial;
        }

#menu-bar {
    display: none;
}



@media(max-width: 1100px) {
    header {
        padding: 15px;
    }

        header .navbar {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--color-menu);
            border-top: 1px solid rgba(0, 0, 0, .1);
            display: none;
        }

            header .navbar ul li {
                width: 100%;
                border-top: 1px solid var(--color-menu-light);
            }

                header .navbar ul li ul {
                    position: relative;
                    width: 100%;
                    text-align: center;
                }


                    header .navbar ul li ul li {
                        background-color: var(--color-menu-dark);
                    }

    #menu-bar:checked ~ .navbar {
        display: initial;
    }

    .button-menu {
        width: 35px;
        height: 35px;
        /* background: var(--color-tertiary); */
        padding-top: 2px;
        display: inline-block;
        cursor: pointer;
        transition: all 0.2s ease-in;
        line-height: 8px;
        text-align: left;
        z-index: 1001;
    }

        .button-menu:hover {
            color: var(--color-menu-light);
        }

        .button-menu span {
            height: 2px;
            width: 100%;
            background: white;
            display: inline-block;
            transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
        }

    /* tres tracinhos que viram o X no botao de toggle */
    #menu-bar:checked ~ .button-menu span:nth-child(1) {
        width: 100%;
        transform: rotate(45deg) translateY(6px) translateX(6px);
    }

    #menu-bar:checked ~ .button-menu span:nth-child(2) {
        width: 0;
    }

    #menu-bar:checked ~ .button-menu span:nth-child(3) {
        width: 100%;
        transform: rotate(-45deg) translateY(-7px) translateX(7px);
    }
}

/*fim da navbar*/

/*footer*/
.footer-dark {
    padding: 25px 0;
    color: white;
    background-color: black;
    padding-right: 50px;
    padding-left: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 170px;
    margin-bottom: -35px;
}

    .footer-dark .item.social > a {
        font-size: 20px;
        width: 36px;
        height: 36px;
        line-height: 36px;
        display: inline-block;
        text-align: center;
        border-radius: 50%;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
        margin: 0 8px;
        color: #fff;
        opacity: 0.75;
    }

        .footer-dark .item.social > a:hover {
            opacity: 0.9;
        }

.social-icons {
    display: flex;
    gap: 20px;
}

    .social-icons a {
        color: white;
        font-size: 17px;
    }

.img-footer img {
    height: 110px
}

/*fim do footer*/


/*search container*/

.search_container {
    background-color: rgba(57, 169, 241, 0.4);
    color: white;
    border-radius: 5px;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

    .search_container > div {
        display: flex;
        flex: 1;
        height: 36px;
        align-items: center;
        margin-right: 20px;
        gap: 15px;
    }

    .search_container form {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        flex: 2;
        flex-wrap: wrap;
    }

        .search_container form button {
            width: clamp(95px, 17vw, 200px);
            height: 36px;
            border: none;
            flex: 1;
        }

        .search_container form input {
            /*            width: clamp(200px, 45vw, 890px);
            height: 36px;
            border: none;*/
            flex: 8;
            border: none;
            min-width: 228px;
        }

    .search_container a {
        color: white;
    }

        .search_container a:hover {
            text-decoration: underline
        }

/*fim do search container*/


/*containers (exemplo: mudar perfil)*/
.container_form {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 40px;
    margin: 0 auto;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

@media(min-width: 600px) {
    .container_form {
        width: 80vw
    }
}

.container_form h1 {
    color: var(--color-primary)
}

.container_form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    gap: 20px
}

.container_form button {
    flex: 1;
    background-color: var(--color-primary);
    border-radius: 5px;
    min-height: 30px;
    min-width: 200px
}

    .container_form button:hover {
        background-color: var(--color-tertiary)
    }

    .container_form button:disabled:hover {
        background-color: var(--color-primary)
    }

.form_inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 2;
    flex-wrap: wrap;
    gap: 15px
}

    .form_inputs input {
        border: 1px solid var(--color-primary) !important;
        background: rgba(255, 255, 255, 0.8);
        flex: 1;
        border-radius: 5px;
        height: 30px;
        border: none;
        min-width: 200px
    }

    .form_inputs label {
        flex: 1;
        min-width: 200px;
        color: black;
    
    }

    .form_inputs input:hover {
        background: white
    }

    .form_inputs input:disabled:hover {
        background: rgba(255, 255, 255, 0.8) !important;
    }

/* fim do containers (exemplo: mudar perfil) */

/* pre-projeto */

.resposta p {
    background: white;
    color: black;
    padding: 5px;
    border-radius: 3px;
    min-height: 30px;
    white-space: pre-line;
}



        .pre-projetos__search-form {
            gap: 8px;
            margin-top: 20px
        }

.filtrar_e_novo_projeto {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center
}


#search-projects {
    gap: 20px;
}

.search-projects__radio-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

input[type="radio"] {
    width: 20px;
    height: 20px;
}

/* pre-projeto create */

.multi_tables {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}


.pre-projeto_form button {
    margin-top: 20px;
    background-color: var(--color-green);
    transition: all 200ms ease;
}

    .pre-projeto_form button:hover {
        background-color: var(--color-menu-light);
    }

.pre-projeto-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap
}

    .pre-projeto-logo div, .pre-projeto-logo a {
        max-width: 250px;
        flex: 1;
        min-width: 140px;
        border-radius: 5px
    }

    .pre-projeto-logo div{
    background: rgba(255, 255, 255, .9);
}
        .pre-projeto-logo div img {
            max-width: 250px;
        }


        .pre-projeto_form {
            background-color: var(--color-transp);
            border-radius: 5px;
            padding: 30px;
        }

.pergunta {
    padding: 10px
}

    .pergunta label {
        font-weight: 400;
    }

/*.crud_container table thead tr {
    padding: 16px;
}
.crud_container table thead tr th {
    font-size: 20px
}*/

.resposta {
    width: 65%;
    min-height: 35px;
}

    .resposta textarea {
        min-height: 70px;
    }

    .resposta textarea,
    .resposta select {
        width: 100%;
        padding: 4px;
        height: 100%;
        color: black;
        border: none;
        border-radius: 2px;
        background-color: rgb(255, 255, 255);
    }

.golden_circle_img img {
    width: 340px;
    padding: 10px
}

.pergunta_golden-circle{
    min-width:180px
}

/* fim do pre-projeto create */
/*fim do escritorio de pre-projetos*/
/*areas*/
.areas_container {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 50px;
    color: white;
    font-weight: 200;
}

/*.areas_total {
    gap: 50px;
    display: grid;
    flex-wrap: wrap;
    margin-top: 0;
    grid-gap: 3vw;
    grid-template-columns: repeat(auto-fill, 300px);
}*/

.areas_total {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.areas_box {
    background-color: white;
    border-radius: 5px;
    padding: 5px;
    min-width: 290px;
    height: 270px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}

    .areas_box h4 {
        color: var(--color-primary);
    }

    .areas_box:hover > h4 {
        /*    background-color: var(--color-quaternary);*/
        text-decoration: none;
        color: var(--color-tertiary);
        transition: all 200ms ease-in-out;
    }

.areas_container img {
    height: 140px;
}

/*    fim do areas*/


/* area especifica */

.page_title_area {
    color: white;
    padding-top: 80px;
    padding-bottom: 40px;
}

.areas_especif_container {
    min-height: 40vh;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-color: transparent;
    flex: 2
}

.pages_container {
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 50px
}

    .pages_container h1 {
        text-transform: uppercase;
        font-size: 24px
    }

    .pages_container article {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

        .pages_container article h1 {
            text-transform: uppercase
        }

.areas_especif_container a {
    flex: 1;
    background-color: var(--color-quaternary);
    justify-content: space-around;
    align-items: flex-start;
    border-radius: 5px;
    color: white;
    padding: 40px;
    height: 35vh;
    display: flex;
    flex-direction: column
}

    .areas_especif_container a:hover,
    .areas_especif_container_3 a:hover {
        background-color: var(--color-tertiary);
        transition: all 200ms ease;
        text-decoration: none;
        color: white;
    }


.areas_especif_container_3 {
    min-height: 40vh;
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background-color: transparent;
}

    .areas_especif_container_3 a {
        background-color: var(--color-quaternary);
        justify-content: space-between;
        align-items: center;
        border-radius: 5px;
        color: white;
        padding: 15px;
        height: 35vh;
        flex: 1;
  }


.card-header {
    font-size: 24px;
}

/* fim da area */



/* carrossel */

.card_admin {
    background-color: var(--color-menu);
    width: 100%;
    height: 100%;
    perspective: 1000px;
    border-radius: 5px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.5);
    background-color: rgba(57, 169, 241, 0.8);
    padding: 15px;
    text-align: justify;
}

    .card_admin a {
        text-decoration: none;
        color: white;
        background-color: var(--color-menu);
        padding: 5px;
        padding-left: 15px;
        padding-right: 15px;
    }

        .card_admin a:hover {
            background-color: var(--color-menu-light);
        }

.flip-card {
    width: 100%;
    height: 100%;
    perspective: 1000px;
    border-radius: 5px;
    /* border: 4px solid var(--color-primary) */
    /* Remove this if you don't want the 3D effect */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.5);
    background-color: rgba(57, 169, 241, 0.8);
}

    /*.flip-card-front {
    background-color: var(--color-quaternary);
   
}*/

    .flip-card-front a {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: white;
        padding: 15px;
        text-align: center
    }

        .flip-card-front a h2 {
            font-size: x-large;
            font-weight: 300
        }

        .flip-card-front a p {
            font-size: medium;
        }

.lead-description {
    font-size: 15px
}

.flip-card-back {
    background-color: var(--color-tertiary);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Add this line to center the iframe vertically */
}

    .flip-card-back .responsive {
        width: 100%;
        height: 100%;
    }

        .flip-card-back .responsive a {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            pointer-events: auto;
        }

            .flip-card-back .responsive a iframe {
                width: 100%;
                height: 100%;
                transform-origin: top;
                transform: scaleY(1) scaleX(1);
                pointer-events: none;
            }


.wrapper {
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
}

    .wrapper i {
        top: 50%;
        height: 50px;
        width: 50px;
        cursor: pointer;
        font-size: 1.25rem;
        position: absolute;
        text-align: center;
        line-height: 50px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
        transform: translateY(-50%);
        transition: transform 0.1s linear;
        z-index: 1000
    }

        .wrapper i:active {
            transform: translateY(-50%) scale(0.85);
        }

        .wrapper i:first-child {
            left: -22px;
        }

        .wrapper i:last-child {
            right: -22px;
        }

    .wrapper .carousel {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% / 3) - 12px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        border-radius: 8px;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

    .carousel.dragging .card {
        cursor: grab;
        user-select: none;
    }

.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel .card {
    scroll-snap-align: start;
    height: 350px;
    width: 100%;
    cursor: pointer;
    flex-direction: column;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 15px
}

/*.carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}*/

@media screen and (max-width: 900px) {
    .wrapper .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapper .carousel {
        grid-auto-columns: 100%;
    }
}

/* fim dos cards */
/* fim do carrossel */
.ferramentas_container_sobre {
    display: flex;
    gap: 6vh;
    flex-wrap: wrap;
    width: 100%;
}
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: #14809d;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}
.floating-button2 {
    position: fixed;
    bottom: 130px;
    right: 45px;
    width: 50px;
    background:white;
    height: 50px;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}
    .floating-button2 img {
        width: 50px;
        height: 50px;
    }
    .ferramentas_box_sobre {
        border-radius: 5px;
        width: 100%;
        display: flex;
        min-height: 30vh;
        flex-wrap: wrap;
    }
.ferramentas_box_sobre img {
    width: 30%;
    border-radius: 200%;
}

.left_box_sobre,
.right_box_sobre {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-width: 200px;
    flex: 1;
    gap: 15px
}

.left_box_sobre {
    justify-content: center;
    background-color: var(--color-quaternary);
}

    .left_box h2 {
        font-weight: 400
    }

.right_box_sobre {
    justify-content: space-around;
    background-color: var(--color-menu-dark);
}

    .right_box_sobre button {
        padding: 10px;
        border-radius: 3px;
        padding-left: 23px;
        padding-right: 23px;
    }
/*Ferramentas, Dados e Metodologia*/
/* Ferramentas */
.ferramentas_container {
    display: flex;
    gap: 6vh;
    flex-wrap: wrap;
    width: 100%;
}

.ferramentas_box {
    border-radius: 5px;
    width: 100%;
    display: flex;
    min-height: 30vh;
    flex-wrap: wrap;
}
.ferramentas_box img{
    width: 50%;
    border-radius: 200%;
}
.left_box,
.right_box {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    min-width: 200px;
    flex: 1;
    gap: 15px
}

.left_box {
    justify-content: center;
    background-color: var(--color-quaternary);
}

    .left_box h2 {
        font-weight: 400
    }

.right_box {
    justify-content: space-around;
    background-color: var(--color-menu-dark);
}

    .right_box button {
        padding: 10px;
        border-radius: 3px;
        padding-left: 23px;
        padding-right: 23px;
    }

/*Fim do ferramentas, Dados e Metodologia*/


/*Sites*/

.crud_container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    height: 100%
}

    .crud_container .new {
        background-color: var(--color-menu);
        color: white;
        border: none;
        border-radius: 3px;
        padding: 12px;
        padding-left: 25px;
        padding-right: 25px;
        font-size: 16px;
        width: 140px;
        text-align: center;
        font-weight: 500
    }

        .crud_container .new:hover {
            background-color: var(--color-menu-light);
        }

    .crud_container table {
        background-color: var(--color-menu);
        padding: 20px;
        color: white;
        border-collapse: collapse;
        width: 100%;
        border-radius: 5px;
    }



        .crud_container table tbody tr td input {
            color: black;
            height: 25px
        }

        .crud_container table tbody tr td textarea {
            width: 100%;
        }

.admin_buttons {
    display: flex;
    gap: 5px;
    padding: 10px
}

    .admin_buttons .edit,
    .admin_buttons .details,
    .admin_buttons .delete {
        padding: 4px;
        color: white;
        border-radius: 3px
    }

    .admin_buttons .edit {
        background-color: var(--color-menu-dark);
    }

    .admin_buttons .details {
        background-color: var(--color-menu-light);
    }

    .admin_buttons .delete {
        background-color: red;
    }

/*Fim do Sites*/
/*configurações de exibição dos iframes*/
#iframeRelatorio {
    height: 98vh;
    width: 100%;
}

.projetos-grande {
    display: block;
    margin-bottom: 40px;
    padding: 0 25px 0 25px;
    color: white
}

.projetos-mobile {
    display: none !important;
    margin-bottom: 40px;
    padding: 0 25px 0 25px;
    color: white
}

@media(max-width: 992px) {
    .projetos-grande {
        display: none !important;
    }

    .projetos-mobile {
        display: block !important;
    }

        .projetos-mobile * {
            margin: 8px 0;
        }

        .projetos-mobile a {
            height: 38px;
            padding: 0 10px;
        }
}

.iframe-content-relatorio,
.iframe-content-geral {
    position: absolute;
    top: 65px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}

.nav-projetos .active {
    background-color: #006635 !important;
    color: white;
}

.sem-margin-top {
    margin-top: 0 !important;
}

.margin-top-20 {
    margin-top: 15px;
}

iframe {
    border: none;
}


#iframeGeral {
    height: 98vh;
    width: 100%;
}

.layout-null {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

/*
fim iframe */

/*admin*/
.panel-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

.card {
    height: 200px;
    width: 33%;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch
}

/*fim do admin*/


/*pmo*/
.pmo_container {
    background-color: var(--color-menu-light);
    color: white;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;;
}

.search_container a:hover {
    text-decoration: underline
}


.pmo_header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-menu);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    height: 65px;
}

    .pmo_header h2 {
        padding: 10px;
    }

.fa-caret-down {
    margin-left: 4px;
}

.pmo_header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px
}

    .pmo_header .logo img {
        height: 60px;
        padding: 5px
    }

.pmo_header .nav_pmo ul {
    list-style: none;
}

    .pmo_header .nav_pmo ul li {
        position: relative;
        float: left;
    }

        .pmo_header .nav_pmo ul li form {
            height: 65px
        }

        .pmo_header .nav_pmo ul li button {
            height: 100%;
            background: transparent;
            padding: 0px;
            margin: 0px;
            font-size: 15px;
            font-weight: 400
        }

        .pmo_header .nav_pmo ul li a {
            font-size: 15px;
            padding: 20px;
            color: white;
            transition: all 200ms ease-in-out;
            height: 65px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-weight: 400;
            text-align: center
        }

            .pmo_header .nav_pmo ul li a:hover {
                background-color: var(--color-quinary);
            }

        .pmo_header .nav_pmo ul li ul {
            position: absolute;
            left: 0;
            width: 200px;
            background-color: var(--color-menu-dark);
            opacity: 0;
            visibility: hidden;
            display: none;
            transition: all 200ms ease-in-out;
            text-align: left
        }

            .pmo_header .nav_pmo ul li ul li {
                width: 100%;
                border-top: 1px solid var(--color-menu);
            }

        .pmo_header .nav_pmo ul li:hover > ul {
            opacity: 1;
            visibility: visible;
            display: initial;
        }

#menu-bar-pmo {
    display: none;
}



@media(max-width: 1100px) {
    .pmo_header {
        padding: 15px;
    }

        .pmo_header .nav_pmo {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--color-menu);
            border-top: 1px solid rgba(0, 0, 0, .1);
            display: none;
        }

            .pmo_header .nav_pmo ul li {
                width: 100%;
                border-top: 1px solid var(--color-menu-light);
            }

                .pmo_header .nav_pmo ul li ul {
                    position: relative;
                    width: 100%;
                    text-align: center
                }

                    .pmo_header .nav_pmo ul li ul li {
                        background-color: var(--color-menu-dark);
                    }

    #menu-bar-pmo:checked ~ .nav_pmo {
        display: initial;
    }

    .button-menu {
        width: 35px;
        height: 35px;
        /* background: var(--color-tertiary); */
        padding-top: 2px;
        display: inline-block;
        cursor: pointer;
        transition: all 0.2s ease-in;
        line-height: 8px;
        text-align: left;
        z-index: 1001;
    }

        .button-menu:hover {
            color: var(--color-menu-light);
        }

        .button-menu span {
            height: 2px;
            width: 100%;
            background: white;
            display: inline-block;
            transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
        }

    /* tres tracinhos que viram o X no botao de toggle */
    #menu-bar-pmo:checked ~ .button-menu span:nth-child(1) {
        width: 100%;
        transform: rotate(45deg) translateY(6px) translateX(6px);
    }

    #menu-bar-pmo:checked ~ .button-menu span:nth-child(2) {
        width: 0;
    }

    #menu-bar-pmo:checked ~ .button-menu span:nth-child(3) {
        width: 100%;
        transform: rotate(-45deg) translateY(-7px) translateX(7px);
    }
}

.pmo_body ul {
    list-style: none;
}

    .pmo_body ul li {
        margin-top: 30px;
        margin-bottom: 10px;
        border-top: 1px solid white;
        padding-top: 20px;
    }

        .pmo_body ul li a {
            color: var(--color-menu-dark);
            font-weight: 700;
            margin-bottom: 10px;
        }

            .pmo_body ul li a:hover {
                text-decoration: underline;
                margin-bottom: 10px;
            }

        .pmo_body ul li p {
            margin-top: 10px;
        }

/*       fim do pmo*/

/*pre-projeto */

.pre-projeto_filter {
    display: flex;
    list-style: none;
    align-items: center;
    margin-top: 10px;
}

    .pre-projeto_filter label {
        margin-right: 20px;
        margin-left: 6px;
        color: white;
    }


.pre-projeto_body table,
.crud_container table {
    border-collapse: collapse;
    /*    border: 1px solid var(--color-menu-dark);*/
    margin-top: 20px;
    width: 100%;
}

    .pre-projeto_body table thead,
    .crud_container thead {
        background-color: var(--color-menu-dark);
    }

        .pre-projeto_body table thead tr th,
        .crud_container table thead tr th {
            padding: 10px;
            font-weight: bold;
            color: white;
            font-size: 16px;
            padding: 10px;
            font-weight: 500;
            border: 1px solid var(--color-menu);
        }


    .pre-projeto_body table tbody tr td,
    .crud_container table tbody tr td {
        padding: 10px;
        border: 1px solid var(--color-menu-dark);
        color: white;
        background-color: var(--color-menu);
        font-size: 13px;
    }

    .pre-projeto_body table tbody tr .icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        height: 100%
    }


    .pre-projeto_body table tbody tr td a,
    .crud_container table tbody tr td a {
        display: flex;
        flex-direction: row;
        padding: 5px 10px;
        margin-right: 5px;
        text-decoration: none;
        color: #fff;
        width: 30px;
        justify-content: center;
        align-items: center;
        width: 100%
    }



.btn-info {
    background-color: var(--color-menu-dark);
    border-radius: 3px;
    font-weight: 500;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    color: white;
    height: 100%
}

.btn-secondary {
    background-color: var(--color-quaternary);
    border-radius: 3px;
    font-weight: 500;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    color: white;
    height: 100%
}

.btn-success {
    background-color: rgb(10, 157, 198);
    border-radius: 3px;
    padding: 5px;
    font-weight: 500;
    color: white
}

.btn-on {
    background-color: var(--color-green);
    border-radius: 3px;
    padding: 5px;
    font-weight: 500;
    color: white
}

.btn-warning {
    background-color: var(--color-secondary);
    border-radius: 3px;
    padding: 5px;
    font-weight: 500;
    color: white;
    height: 100%
}

.btn-danger {
    background-color: #b20c1c;
    border-radius: 3px;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: 500;
    color: white;
    font-size: 16px;
}


.btn-green {
    background-color: var(--color-green);
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: 500;
    border-radius: 3px;
    transition: all 200ms ease-in-out;
    color: white;
    font-size: 16px;
    height: 100%
}

.btn-petroleo {
    background-color: var(--color-menu);
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 3px;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500
}

.acessar_btn {
    background-color: rgba(14, 198, 203, 0.7);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 7px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
}

    .acessar_btn:hover{
        background-color: var(--color-menu-light)
    }


    .btn-green:hover,
    .btn-cadastrar:hover {
        background-color: var(--color-quinary);
        cursor: pointer;
    }

.btn-aqua {
    background-color: var(--color-quinary);
}

.btn-disabled {
    background-color: #b8b8b8;
    border-radius: 3px;
    cursor: not-allowed;
    padding: 5px;
    font-weight: 500
}

    .btn-disabled:hover {
        cursor: not-allowed
    }

/*fim do pre-projeto*/

/*project opening terms*/

.alinhar-tudo-ao-centro{
    color: white;
    display: flex;
    gap: 10px;
    align-items: center
}

.row_buttons_container {
    display: flex;
    gap: 20px;
    align-items: center;
    min-height: 30px
}

/*    .row_buttons_container a,
    .row_buttons_container input {
        padding: 5px;
        padding-right: 10px;
        padding-left: 10px;
        border-radius: 5px;
        text-decoration: none;
        color: white;
        font-size: 14px;
        height: 30px
    }*/

.save_warning {
    padding-top: 5px;
    padding-bottom: 20px;
    font-size: 12px;
    color: white
}

.control-label {
    /*    margin-bottom: 5px;*/
    margin-top: 10px
}

.form-group select,
.form-group input,
.form-group textarea {
    min-height: 35px;
    border-radius: 5px
}

#form-termos-de-projeto {
    background-color: var(--color-transp);
    border-radius: 5px;
    padding: 30px
}

    #form-termos-de-projeto h2 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 8px;
        margin-left: 3px;
        font-weight: 500
    }

.alert-info {
    border-radius: 5px;
    padding: 20px;
    background-color: rgba(247, 0, 0, 0.3);
}

    .alert-info p {
        font-size: 17px;
        font-weight: 600
    }

    .alert-info ul li a {
        color: white;
        padding-top: 10px
    }

        .alert-info ul li a:hover {
            text-decoration: underline
        }

/*fim do project opening terms*/


/*EAPS*/
:root {
    --color-primary: #011559;
    --color-secondary: #012578;
    --color-tertiary: #023ea0;
    --color-quaternary: #39A9F1;
    --color-quinary: #0EC6CB;
    --color-black: #000000;
    --color-menu: #14809d;
    --color-menu-dark: #025a72;
    --color-menu-light: rgb(10, 157, 198);
    --color-green: #16b79a;
    --color-transp: rgba(255, 255, 255, 0.2);
    --color-transp2: rgba(255, 255, 255, 0.8)
}

.crud_container form {
    background-color: var(--color-transp);
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .crud_container form h3 {
        margin-bottom: 15px
    }

.select_form {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap
}

    .select_form label {
        color: white;
    }

    .select_form select,
    .select_form input {
        min-width: 200px;
        flex: 1;
        height: 30px;
        color: black;
        border-radius: 3px;
        border: none
    }

.clique-aqui {
    text-decoration: underline;
}

.btn-cadastrar {
    background-color: var(--color-green);
    height: 35px;
    color: white;
    display: flex;
    padding: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
    align-items: center;
    margin-top: 30px;
    font-weight: 500;
    color: white
}

/*FIM DAS EAPS*/


/*change request*/
.change_req_table1 input,
.change_req_table1 select {
    width: 60%;
    height: 25px;
    border-radius: 3px;
    border: none;
    margin-right: 0;
    color: black
}

.change_req_table1 tbody tr td {
    display: flex;
    justify-content: space-between;
}

.change_req_table2 tbody tr td textarea {
    width: 100%;
    color: black;
    padding: 10px
}

/*fim do change request */

/*project closing terms*/
.form-termo-de-fechamento table tbody tr td input,
.form-termo-de-fechamento table tbody tr td select {
    width: 100%;
    padding: 4px;
    border-radius: 3px;
    border: none;
    min-height: 30px
}
/*fim do project closing terms*/


.users-profile-search {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .users-profile-search div label,
    .users-profile-search div input {
        cursor: pointer;
    }

    .users-profile-search div label {
        margin: 0;
    }

    .users-profile-search > div > div {
        display: block;
        text-align: left;
    }

#space-between-usuarios-and-pagination {
    min-height: 390px;
}

#space-between-projects-and-pagination {
    min-height: 590px;
}

.pagination-container {
    margin-top: 20px
}

    .pagination-container .pagination {
        display: flex;
        flex-direction: row;
        list-style: none;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        gap: 5px
    }

        .pagination-container .pagination li {
            background-color: var(--color-menu);
            width: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 30px;
            border-radius: 3px
        }

            .pagination-container .pagination li a {
                color: white;
                text-decoration: none;
                padding: 5px 7px;
            }

            .pagination-container .pagination li.active {
                background-color: var(--color-quinary);
            }


.btn-active-in-pagination,
.pagination-analise button:focus,
.pagination-result button:focus {
    color: #343a40;
    font-weight: 700;
    background-color: var(--color-primary);
}

.content-block-result,
.content-block-analise {
    display: block;
}

.pagination-analise,
.pagination-result {
    margin: 0 auto;
    margin-bottom: 2.5rem;
    display: flex;
}

    .pagination-analise button,
    .pagination-result button {
        /*        margin: 0 5px 0 0;*/
        outline: none;
        padding: 5px;
    }

fim .dropdown {
    font-size: 15px;
}

.nav-item {
    font-size: max(15px, 1vw);
}

.dropdown-menu.show {
    font-size: max(15px, 1vw);
    border-radius: 15px;
    padding: 12px;
    margin-top: -8px;
}

.img-footer {
    height: 200px;
}

embed {
    width: 100%;
    height: 700px;
}

.pagination li a,
.pagination .active {
    font-size: 20px;
    margin: 0 2px;
}

.btn-custom,
.btn-custom-large {
    background-color: var(--color-menu);
    color: white;
}

    .btn-custom:hover,
    .btn-custom-large:hover {
        color: white;
    }


.logo {
    height: 60px;
    position: relative;
    top: 0px;
}

página de login #img-pag-login {
    width: 250px;
    height: 250px;
}

.form-logo {
    max-width: 100%;
    height: auto;
}

.panel-login {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}

.panel-login-info p,
.panel-login-info h5 {
    margin-left: 5px;
}

.panel-login-img-backgroud {
    height: 100%;
    width: 100%;
    background-image: url("/img-fundo-login.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-form-login {
    background-color: #011456;
    border-radius: 20px;
    display: flex;
    align-items: center;
}

/*nova pagina do painel datalabs*/
.logo_painel img {
    width: 300px;
}

.painel_container {
    position: absolute;
    top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    background-color: white;
    left: 0;
    right: 0;
    padding: 50px;
}

.icones_painel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-left: 30px;
    padding-right: 30px;
}

    .icones_painel div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }

        .icones_painel div img {
            min-width: 170px;
            flex: 1;
            max-width: 200px;
        }

/*        fim do novo painel do datalabs pag inicial*/


/*formulario delete*/
.row dt {
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 7px;
    color: var(--color-grey)
}

    .row dt::after {
        content: ":";
    }

.row dd {
    border-bottom: 1px solid white;
    padding-bottom: 20px;
    color: white
}



.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 200px;
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 5px;
        position: absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -100px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

.events_container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    height: 100%
}




.events_container .new {
    background-color: var(--color-menu);
    color: white;
    border: none;
    border-radius: 3px;
    padding: 1px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
    width: 10px;
    text-align: center;
    font-weight: 500
}

/*        .events_container .new:hover {
            background-color: var(--color-menu-light);
        }*/
    .events_button{

    }

    .events_container table {
        border-collapse: collapse;
        border: 1px solid var(--color-menu-dark);
        margin-top: 20px;
        width: 100%;
        color: white;
       
    }
        .events_container table thead tr th {
            background: #025a72;
            text-align: center;
            padding: 15px;
        }
        .events_container table tbody tr {
            background: #14809d;
            text-align: center;
            padding: 5px;
        }

        .events_container table tbody tr td input {
            color: black;
            height: 50px
        }

        .events_container table tbody tr td textarea {
            width: 100%;
        }


.videos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.video-description {
    flex-basis: calc(50% - 20px);
    margin-bottom: 20px;
}

.video {
    max-width: 100%;
    margin-bottom: 10px;
}

.description {
    max-width: 100%;
}
.busca_container {
    background-color: var(--color-menu-light);
    color: white;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.card, .BuscaCards {
    background-color: var(--color-menu-light);
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: auto;
}

    .card-header, .BuscaCards.card-header {
        color: white;
        padding: 10px;
        width: max-content;
        align-self: center;
    }

.card-body, .BuscaCards.card-body {
    padding: 4px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
   /* width: 300px;*/
}
.BuscaCardsContainer {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaço entre os cards */
}


.card-section, .BuscaCards.card-section {
    margin-bottom: 10px;
    flex-grow: 1;
    align-content: initial;
    text-align: -webkit-left;
    word-break: auto-phrase;
}

 
@media only screen and (max-width: 600px) {
    .card {
        margin-bottom: 15px;
    }

    .card-header {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
}
.pages_container_basedecontato {
    display: flex;
    padding-top: 120px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 50px
}
.div_cardsb {
    display: flex;
    width: 100%;
    height: 100%;
    gap: inherit;
}
.Text_basedecontato {
    display: flex;
    color: white;
    font-size: xx-large;
    flex-direction: column;
    align-items: center;
}
/* Estilo para a tabela */
.table-container {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;

}

    .table th {
        color: white;
        font-size: 16px;
        padding: 10px;
        font-weight: 500;
        border: 1px solid var(--color-menu);
    }

    .table td {
        padding: 10px;
        border: 1px solid var(--color-menu-dark);
        color: white;
        background-color: var(--color-menu);
        font-size: 13px;
    }
    /* Estilo para linhas alternadas (opcional) */
    .table tbody tr:nth-child(even) {
        background-color: #f2f2f2;
    }

/* Estilo para a barra de pesquisa */
.search-form {
    margin-bottom: 20px;
}

    .search-form label {
        margin-right: 10px;
    }

    .search-form input[type="text"] {
        padding: 8px;
        border: 1px solid #ccc;
    }

    .search-form button {
        padding: 8px 12px;
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
    }

/* Estilo para a responsividade */
@media screen and (max-width: 900px) {
    .table {
        overflow-x: auto;
    }
}

/*MODAL CREDENCIAMENTO*/
/* Estilo para botões alinhados horizontalmente */
.flex-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (min-width: 350px) {
    .flex-buttons {
        flex-direction: row;
        gap: 10px;
    }
}

/* Estilo para o modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Estilo para o conteúdo do modal */
/*.modal-content {
    background-color: #0c2741;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
}*/

@media (max-width: 900px) {
    .modal-content {
        width: 90%;
    }
}

/* Estilo para o botão de fechar */
.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.input-group-atendente {
    display: flex;
    flex-direction: column;
    color: white;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.input-group-atendente input {
    width: 100%;
    max-width: 300px;
}

.input-group-atendente button {
    width: 100%;
    max-width: 150px;
    background-color: var(--color-quaternary);
    border: none;
}

.input-group-atendente button:hover {
    background-color: var(--color-quinary);
    border: none;
}

/* Estilo para o rodapé do modal (botões) */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.container-smart-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px auto;
}

.smart-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px; /* Ajuste conforme necessário */
    margin-bottom: 20px;
}

.small-fields .control-label {
    margin-bottom: 5px;
    margin-top: 10px;
    font-size: smaller;
    text-align: center;
}
    .smart-fields .form-group {
        flex: 1;
        min-width: 30px; /* Ajuste conforme necessário */
        margin: 4px;
    }
.form-group textarea {
    min-height: 100px;
    border-radius: 10px;
    margin-top: auto;
}

.small-input-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px; /* Ajuste conforme necessário */
    margin-bottom: 10px;
}
    .small-input-group .control-label {
        margin-bottom: 5px;
        margin-top: 10px;
        font-size: smaller;
        text-align: center;
    }

    .small-input-group .form-group {
        flex: 1;
        margin-right: 10px;
    }


.small-input {
    width: 100%;
}

.smart-banner {
    display: flex;
    justify-content: space-evenly;
    padding: 5px;
}

    .smart-banner img {
        width: 85px; /* Ajuste conforme necessário */
    }


@media (max-width: 768px) {
    /* Quando a tela tiver largura menor ou igual a 768px, as colunas empilham */
    .details-container {
        flex-direction: column;
    }

    .details-left,
    .details-right {
        flex: none; /* Retira o 'flex: 2' e 'flex: 1' */
        width: 100%; /* Ocupa 100% da largura */
        margin-bottom: 20px; /* Espaço entre as seções */
    }

    /* Ajuste se quiser remover min-height ou padding */
    .details-container {
        min-height: auto; /* Caso não queira manter 80vh em mobile */
    }

    @media (max-width: 480px) {
        .details-left,
        .details-right {
            padding: 10px;
        }

            .details-left dt,
            .details-left dd {
                font-size: 0.9rem;
            }
    }

    .navbar-profile-photo {
        width: 30px; /* Largura pequena */
        height: 30px; /* Altura pequena */
        border-radius: 50%; /* Imagem redonda */
        object-fit: cover; /* Corta a imagem para caber no quadrado */
        margin-left: 5px; /* Pequeno espaço à esquerda */
        vertical-align: middle; /* Alinha verticalmente ao texto */
    }
    .carrossel_home_centralizado {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        max-width: 500px;
        min-width: 320px;
    }

    .wrapper.home-carousel {
        max-width: 500px;
        width: 90%;
    }

        .wrapper.home-carousel .carousel {
            grid-auto-columns: 100%;
        }

    .aniversario_scroll_area {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-top: 10px;
        scroll-behavior: smooth;
        width: 100%;
        scrollbar-width: thin;
    }

    .aniversario_item {
        min-width: 150px;
        background-color: var(--color-menu-dark);
        color: white;
        padding: 10px;
        border-radius: 5px;
        text-align: center;
        flex-shrink: 0;
    }

    .aniversario_scroll_area::-webkit-scrollbar {
        height: 6px;
    }

    .aniversario_scroll_area::-webkit-scrollbar-thumb {
        background: var(--color-quaternary);
        border-radius: 10px;
    }


    .home_layout {
        display: flex;
        gap: 40px;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 20px;
    }

    .coluna_lateral {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;
        min-width: 280px;
        max-width: 350px;
    }

    .coluna_carrossel {
        flex: 1;
        min-width: 320px;
        max-width: 500px;
    }

    /* Aplica o carrossel com apenas 1 item */
    .wrapper.home-carousel .carousel {
        grid-auto-columns: 100%;
    }
    .eventos_container {
        background: radial-gradient(#012578, #023ea0);
        padding: 15px;
        border-radius: 8px;
        color: white;
    }

    .eventos_grid {
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .evento_card {
        background-color: rgba(255, 255, 255, 0.08);
        padding: 10px;
        border-radius: 6px;
        text-align: center;
        width: 180px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

        .evento_card img {
            width: 100%;
            height: 100px;
            object-fit: cover;
            border-radius: 4px;
        }


        .evento_card h4 {
            color: white;
            font-size: 15px;
            margin-top: 8px;
            margin-bottom: 4px;
        }

        .evento_card p {
            color: #ccc;
            font-size: 13px;
            margin: 0;
        }

    .eventos_paginacao {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
    }

        .eventos_paginacao a {
            color: white;
            padding: 4px 10px;
            font-size: 13px;
            border: 1px solid white;
            border-radius: 4px;
            text-decoration: none;
        }

            .eventos_paginacao a:hover {
                background-color: var(--color-menu-light);
            }
    /* overlay */
    .loader-backdrop {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(5,10,25,.7);
        backdrop-filter: blur(2px);
        transition: opacity .2s ease, visibility .2s ease;
        opacity: 1;
        visibility: visible; /* começa visível */
        will-change: opacity, visibility;
    }

        .loader-backdrop.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none; /* não bloqueia cliques quando escondido */
        }

    /* spinner */
    .loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        color: #e6f3ff;
        font-weight: 600;
    }

        .loader .ring {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            border: 5px solid #1e3a8a;
            border-top-color: #12a5c4;
            animation: spin 1s linear infinite;
        }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

}
.rings {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: #0EC6CB;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Barra de filtros */
.filter-bar {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto; /* label | busca flex | região | time | botão */
    gap: 12px;
    align-items: center;
    background: #16477b;
    padding: 20px;
    border-radius: 8px;
}

/* Label "Usuários > Diretório" */
.filter-label {
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    line-height: 1.1;
}

/* Campo de busca ocupa o espaço */
.filter-input {
    padding: 10px;
    border: none;
    border-radius: 6px;
    max-width: 100%;
}

/* Combos com largura controlada */
.filter-select {
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #0f1c2e;
    color: #fff;
    min-width: 260px;
    max-width: 360px;
}

/* Botão */
.filter-btn {
    background: #12a5c4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    cursor: pointer;
}

/* Responsivo: em telas menores, quebra em linhas */
@media (max-width: 1024px) {
    .filter-bar {
        grid-template-columns: 1fr; /* tudo em coluna */
    }

    .filter-label {
        margin-bottom: 4px;
    }

    .filter-select {
        min-width: 0;
        width: 100%;
    }

    .filter-btn {
        width: 100%;
    }
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
} 