/*HOME*/

* {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

    .cke_notification_warning {
        display: none !important;
    }

nav {
background: radial-gradient(circle at 10% 20%, rgb(87, 108, 117) 0%, rgb(37, 50, 55) 100.2%);
    box-shadow: 0 4px 8px rgba(47, 143, 156, 0.6);
    animation: shadowMove 3s infinite linear;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

#logoWellcome {
    max-width: 20%;
    max-height: 20%;
    height: auto;
    display: block;
    opacity: 0.2;
}

@media (max-width: 1200px) {
    #logoWellcome {
        max-width: 30%;
        max-height: 30%;
    }
}

@media (max-width: 992px) {
    #logoWellcome {
        max-width: 40%;
        max-height: 40%;
    }
}

@media (max-width: 768px) {
    #logoWellcome {
        max-width: 50%;
        max-height: 50%;
    }
}

@media (max-width: 576px) {
    #logoWellcome {
        max-width: 60%;
        max-height: 60%;
    }
}

@keyframes shadowMove {
    0% {
        box-shadow: 0 4px 8px rgba(47, 143, 156, 0.6);
    }

    50% {
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: 0 4px 8px rgba(47, 143, 156, 0.6);
    }
}

h1 {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #51A8B1 !important;
    opacity: 0.3;
}

.nav-link {
    color: white !important;
    margin-left: 25px;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.61) !important;
    margin-left: 25px;
}

.navbar-brand {
    position: absolute;
    transform: translateY(-20%) translateX(-50%);
    left: 50%;
    top: 50%;
    width: 100px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 0 rgba(47, 143, 156, 0));
}

.navbar-brand:hover {
    transform: translateY(-20%) translateX(-50%) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(47, 143, 156, 1));
}



#navs .container-fluid {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navs .navbar-toggler {
    position: absolute;
    right: 15px;
}

.navbar {
    justify-content: space-between;
}

@keyframes footerShadowMove {
    0% {
        box-shadow: 0 -4px 8px rgba(47, 143, 156, 0.6);
    }

    50% {
        box-shadow: 0 -4px 8px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: 0 -4px 8px rgba(47, 143, 156, 0.6);
    }
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
background: radial-gradient(circle at 10% 20%, rgb(87, 108, 117) 0%, rgb(37, 50, 55) 100.2%);
    color: white;
    text-align: center;
    padding: 12px 0;
    box-shadow: 0 4px 8px rgba(47, 143, 156, 0.6);
    box-shadow: 0 -4px 8px rgba(47, 143, 156, 0.6);
    animation: footerShadowMove 3s infinite linear;
    z-index: 1;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transition: opacity 0.3s;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    opacity: 0;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}



#newPCP {
    background-color: #51A8B1;
    border: none;
}

#newPCP:hover {
    background-color: #537473;
}

/*PCP CREATE*/

#btnCreatePCP {
    background-color: #51A8B1;
    border: none;
}

#btnCreatePCP:hover {
    background-color: #51a7b173;
    border: none;
}

#formCreatePCP .row {
    color: #000000;
}

    @media (max-width: 412px) and (max-height: 914px) {
        #formCreatePCP {
            padding: 10px;
        }

        .form-label {
            margin-bottom: 5px;
        }

        .form-control,
        .form-select {
            width: 100%;
            margin-bottom: 10px;
        }
    }

/*PCP EDIT*/

#btnEditPCP {
    background-color: #51A8B1;
    border: none;
}

#btnEditPCP:hover {
    background-color: #51a7b173;
    border: none;
}

#formEditPCP .row {
    margin-top: 10px;
    color: #000000;
}

#formEditPCP {
    margin: auto;
    border-radius: 30px;
    padding: 20px;
    border: 5px solid #51A8B1;
    box-sizing: border-box;
    width: 100%;
    max-width: 1600px;
}

/*PCP POR SETOR*/

.btnEditPCP {
    background-color: #51A8B1;
    border: none;
    border-radius: 30px;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.btnEditPCP:hover {
    background-color: #51a7b173;
}

#pcpList .pcpItem {
    color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#pcpList .pcpItem:hover {
    transform: scale(0.95);
}

#pcpList .pcpItem.deleted {
    transform: scale(0);
    opacity: 0;
}

#pcpList {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
    background-color: rgb(33, 37, 41);
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    border-radius: 30px;
    text-align: center;
}

.pcpItem {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    border-radius: 30px;
    border-color: #51A8B1;
    border-width: 5px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}


#tarefa {
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    color: black;
}

#dateUpdate {
    background-color: #ffffff;
    color: black;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

.button-container {
    display: flex;
    align-items: center;
}

.btnDeletePCP {
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 100%;
    margin-left: 10px;
}

#btnDownload {
    border-radius: 30px;
    padding: 5px;
    margin-left: 10px;
}

.pcpItem-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}

#entrega {
    background-color: #FFD700;
    color: black;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

#entrega.form-control {
      background-color: #ffffff;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

#conclusao {
    background-color: #006400;
    color: rgb(255, 255, 255);
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

#conclusao.form-control {
    background-color: #ffffff;
  color: black;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

#metaConclusao {
    background-color: #fc4444;
    color: white;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

#transp {
      background-color: #ffffff;
    color: black;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

#dateStarted {
    background-color: #ffffff;
    max-width: 310px;
    border-radius: 20px;
    margin: 10px 0px 10px;
    padding: 3px;
}

        .pcpItem.andamento {
            background-color: #ffd700;
        }
.pcpItem.finalizado {
    background-color: #228b22;
}

.andamento, .finalizado {
    color: black !important;
}

.pcpItem.filha {
margin-top: 10px;
  border-color: white;
}


/*CHECKLISTS*/

#newChecklist {
    background-color: #51A8B1;
    border: none;
}

#newChecklist:hover {
    background-color: #537473;
}

table {
    margin-top: 100px;
    margin-bottom: 20px;
    width: 100%;
}

.checklist-item {
    padding: 10px;
    margin-right: 20px;
    width: 100%;
}

.checklist-table {
    border-collapse: collapse;
    width: 95%;
}

.checklist-text {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

.checkbox-cell {
    vertical-align: middle;
    text-align: center;
    width: 5%;
}

.actions-cell {
    width: 5%;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background: url(/img/check_box_outline_blank_24dp_000000_FILL0_wght400_GRAD0_opsz24.svg) no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    cursor: pointer;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
    background: url(/img/check_24dp_78A75A_FILL0_wght400_GRAD0_opsz24.svg) no-repeat;
    background-size: 100%;
    width: 30px;
    height: 30px;
}

#ass-cq {
    background-color: #51A8B1;
    border: none;
    margin-bottom: 75px;
}

#ass-cq:hover {
    background-color: #51a7b175;
    border: none;
    margin-bottom: 100px;
}

.parent {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.parent .sign-cq {
    width: 100%;
    text-align: center;
}


.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gradientMovement {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}



/*CREATE CHECKLIST*/

#texto {
    background-color: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.row {
    margin-top: 15px;
    color: #000000;
}

#formCreateCHK {
    background-color: rgb(37, 50, 55);
    border-radius: 30px;
    padding-bottom: 25px;
    border: 5px solid #51A8B1;
    padding: 20px;
}

#tipo {
    background-color: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

#tipo:hover {
    background-color: #f1f1f1;
}

#btnCreateCHK {
    background-color: #51A8B1;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    display: block;
}

#btnCreateCHK:hover {
    background-color: #51a7b173;
}

/*EDIT CHECKLIST*/

#texto {
    background-color: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.row {
    margin-top: 15px;
    color: #000000;
}

#formEditCHK {
    background-color: rgb(33, 37, 41);
    border-radius: 30px;
    padding-bottom: 25px;
    border: 5px solid #51A8B1;
    padding: 20px;
}

#tipo {
    background-color: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

#tipo:hover {
    background-color: #f1f1f1;
}

#btnEditCHK {
    background-color: #51A8B1;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    display: block;
}

#btnEditCHK:hover {
    background-color: #51a7b173;
}

#btnDeleteCHK {
    border-radius: 30px;
    padding: 5px;
}

#btnCHKedit {
    border-radius: 30px;
    padding: 5px;
}

/*LOGIN*/

.login-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
}

.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: auto;
    padding: 45px;
    text-align: center;
    border-radius: 30px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.form input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    margin-top: 5px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 30px;
}

.form button {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: rgba(47, 143, 156, 1);
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
}

.form button:hover,
.form button:active,
.form button:focus {
    background: #43A047;
    border-radius: 30px;
}

@keyframes changeGradient {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

#bckg-login {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to top, rgb(87, 108, 117), rgb(37, 50, 55));
    background-size: 100% 200%;
    animation: changeGradient 5s infinite alternate;
}

.form-logo {
    display: block;
    margin: -35px auto 20px;
    position: absolute;
    transform: translateY(-210%) translateX(-50%);
    left: 50%;
    top: 50%;
    width: 100px;
}
