 body {
    margin: 0;
    font-family: Arial, sans-serif;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* min-height: 100vh; */
    background-color: #f0f0f0;
}

.logos  {
    display: flex;
    max-width: 100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    flex-direction: row;
    flex-wrap: wrap;
}

.logos .login-box {
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logos .logo img {
    width: 100px;
    margin-bottom: 20px;
}

.logos h2 {
    margin: 0 0 20px;
    color: #333;
}

.logos p {
    margin: 0 0 20px;
    color: #666;
}

.logos form {
    display: flex;
    flex-direction: column;
}

.logos label {
    margin-bottom: 5px;
    color: #333;
}

.logos input {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.logos button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

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

.logos .links {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.logos .links a {
    color: #007bff;
    text-decoration: none;
    margin-bottom: 10px;
}

.logos .links a:hover {
    text-decoration: underline;
}

.logos .image-section {
    position: relative;
    width: 100%;
    flex: 1;
}

.logos .image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    height: 100%;
}

.logos .image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
}

.logos .image-text h1 {
    margin: 0;
    font-size: 40px;
}

.logos .image-text p {
    margin: 0;
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logos {
        flex-direction: column;
    }

    .logos .image-text h1 {
        font-size: 30px;
    }

    .logos .image-text p {
        font-size: 16px;
    }

    .logos .login-box {
        max-width: 100%;
    }
}


/*  */
 
.modals{
    display: block; /* Show the modal by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
}

/* .modals .modal-content .top{
    color: #fbbd08;
    display: flex;
} */
.modals .modal-content{
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 80%;
    /* zoom: 80%; */
    position: absolute;
}

.modals .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.modals .close-button:hover,
.modals .close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modals h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fbbd08; /* Yellow color */
}

.modals .bom{
    columns: 2;
}
.modals .form-group {
    margin-bottom: 15px;
}

.modals label {
    display: block;
    margin-bottom: 5px;
}

.modals input[type="text"],
.modals input[type="email"],
.modals input[type="password"],
.modals select {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 8px;
    margin-top: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modals button[type="submit"] {
    background-color: #fbbd08;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.modals button[type="button"] {
    background-color: #ddd;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.modals button[type="submit"]:hover {
    background-color: #e0ac00;
}

.modals button[type="button"]:hover {
    background-color: #ccc;
}

.modal{
    display: none;
}

.modals .bons{
    float: right;
}

.modals .bons{
    margin-right: 3%;
}

/*  */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo-img {
    height: 40px;
}

.navbar .menu {
    display: flex;
    align-items: center;
}

.navbar .menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none;
}

.navbar .menu ul li {
    position: relative;
}

.navbar .menu ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    display: block;
}

.navbar .menu ul li:hover .submenu {
    display: block;
}

.navbar .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar .submenu li a {
    padding: 10px 20px;
}

.container-legenda {
    display: flex;
    flex-direction: column;
    margin: 20px 40px;
}

.conteudo-relatorio {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-conteudo-relatorio {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    width: 70vw;
    height: 60vh;
}

.card-body {
    height: 65vh;
}

.card {
    width: 80vw;
    border: none;
    margin: 0 auto;
    padding: 20px;
}

.table-custom th {
    background-color: #e8e8e8;
    color: #333;
    padding: 20px;
}

.conteudo-tabela td {
    padding: 15px;
}

.titulo-servicos {
    margin-left: 185px;
}


.container_img .fakeImg {
    background: no-repeat center;
    background-size: cover;
}

.container_img {
    display: inline-block;
    border: 1px solid black;
    margin: 4px;
}

.my-galeria {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.my-galeria .foto .mascara {

    background: rgba(0, 0, 0, 0);
    transition: 0.5s;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

.my-galeria .foto .image-link {

    display: block;
    position: absolute;
    left: 35%;
    bottom: 25px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.8em;
    background: transparent;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease-in-out;
    opacity: 0;
    margin-left: 20px;
    margin-bottom: 20px;
}

.my-galeria .foto {
    width: 100%;
    float: left;
    display: block;
    margin-bottom: 5%;
    border: 1px #f0f0f0 solid;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.foto:hover .image-link {
    bottom: 20%;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.foto:hover .mascara {
    background: rgba(0, 0, 0, 0.70);
}

/*Termina Galeria*/
/*Aqui Começa o Responsivo*/
/*768 dividido por 16 = 48em*/
@media (min-width:48em) {
    .my-galeria .foto {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }

    .my-galeria .foto:nth-of-type(2n+0) {
        margin-right: 0;
    }
}

/*1280PX BREAKPOINT*/
/*1280 dividido por 16 = 80em*/
@media (min-width:80em) {

    .my-galeria .foto:nth-of-type(2n+0),
    .my-galeria .foto {
        width: 23.5%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .my-galeria .foto:nth-of-type(4n+0) {
        margin-right: 0;
    }

}


.container-cards {
    display: flex;
    justify-content: center;
    text-align: center;
}


.logo-separacao {
    display: initial;
    padding: 10px;
}

.legenda {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

.legenda-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin: 10px;
}
.legenda-nome {
    font-size: 1.4rem;
    color: #0056b3;
}

.nomedownload {
    margin-right: 40px;
}

.legenda-quantidade {
    font-size: 1rem;
}

.icone {
    color: green;
    font-size: 1.1rem;
}
.icone-delete {
    color: green;
    font-size: 0.9rem;
}
.fundo {
    background-color: rgb(243 244 246);
    width: 20%;
    padding: 10px;
    border-radius: 7px;
}

.fundo-legenda {
    background-color: rgb(243 244 246);
    /* width: 20%; */
    padding: 17px;
    border-radius: 7px;
}

.titulos {
  
    text-align: center;
}

.titulo-contrato {
    font-size: 1.5rem;
    font-weight: bold;
}


/* fotos separação */


.container-fotos {
    border: 1px solid #fefe;
    border-radius: 5%;
    background-color: #fff;
}


/* .conteudo-contrato {
    width: 100vw;
    display: flex;
    background-color: #f0f0f0;
} */