:root {
    --box-shadow-primary: 3px 3px 10px 1px #0000005b;
    --cor-primary-red: #c41922;
    --cor-primary-blue: #072f4e;
    --cor-secundary-blue: #1f547e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
}

body, html {
    height: 100%;
    background-color: #e4e4e4;
    font-family: 'Inter';
}

.texto-right {
    text-align: center;
    width: 340px;
    height: auto;
    padding: 10px 20px;
}

.selecionado {
    background-color: var(--cor-secundary-blue) !important;
}

.indisponivel {
    background-color: var(--cor-secundary-blue) !important;
}

/* ===========> Header <============ */

.btnLoginAdmin img {
    width: 50px;
    margin: 10px;
    position: absolute;
    top: 5%;
}

/* ===========> Produtos <============ */

.container-produtos {
    width: 100%;
    height: auto;
}

.flex-container-produtos {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    left: 52%;
    transform: translateX(-50%);
}

.container-single-produtos {
    width: calc(90% / 3);
    background-color: var(--cor-primary-blue);
    color: white;
    padding: 15px 25px;
    margin: 10px;
    box-shadow: var(--box-shadow-primary);
    text-align: center;
    border-radius: 10px;
}

.container-single-produtos img {
    width: 150px;
    height: auto;
    margin-top: 20px;
    transition: .5s;
}

.container-single-produtos img:hover {
    transition: .5s;
    scale: 1.05;
}

.container-single-produtos h4 {
    font-size: 20px;
    margin: 10px 0;
}

.container-single-produtos p {
    font-size: 18px;
    margin: 10px 0;
}

.container-single-produtos button {
    width: 80%;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    color: white;
    font-size: 17px;
    transition:.5s;
}

.container-single-produtos button:hover {
    transition:.5s;
    scale: 1.05;
}

/* ===========> Administração <============ */

div.containerAdministracao {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.administracaoForm {
    width: 45%;
    height: auto;
    padding: 20px 40px;
    background-color: var(--cor-primary-blue);
    color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* justify-content: center; */
    margin: 0 auto;
}

.administracaoForm h2 {
    margin-bottom: 30px;
    font-size: 26px;
}

.administracaoForm input.inputAdmin {
    width: 500px;
    padding: 15px 20px;
    color: white;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
}

.administracaoForm input.inputAdmin:hover {
    transition:.5s;
    scale: 1.05;
}

.administracaoForm input.inputAdmin::placeholder {
    color: white;
    font-size: 17px;
}

.administracaoForm input.inputAdmin:focus {
    outline: none;
    scale: 1.05;
}

.administracaoForm input[type='submit'] {
    color: white;
    font-size: 17px;
    width: 100px;
    padding: 15px 20px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
}

.administracaoForm input[type='submit']:hover {
    transition:.5s;
    scale: 1.05;
}

.administracaoForm input[type='submit']:focus {
    outline: none;
    scale: 1.05;
}

/* ===========> Adicionar, Editar Produtos <============ */

.headerPerfil {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerPerfil .buttonHeaderPerfil {
    width: 200px;
    height: 50px;
    padding: 10px;
    color: white;
    font-size: 17px;
    border-radius: 10px;
    border: none;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
    cursor: pointer;
    margin-right: 20px;
}

.headerPerfil .buttonHeaderPerfil:hover {
    transition:.5s;
    scale: 1.05;
}

/* ===========> Form Adicionar Produto <============ */

.containerAddFormProdutos {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.containerAddFormProdutos .formGeral {
    width: 40%;
    height: auto;
    padding: 20px 30px;
    color: white;
    background-color: var(--cor-primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
}

.containerAddFormProdutos .formGeral input {
    width: 70%;
    height: auto;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 10px;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
    margin: 10px;
    font-size: 15px;
}

.containerAddFormProdutos .formGeral input[type='file'] {
    cursor: pointer;
}

.containerAddFormProdutos .formGeral input:hover {
    transition: .5s;
    scale: 1.05;
}

.containerAddFormProdutos .formGeral input:focus {
    outline: none;
}

.containerAddFormProdutos .formGeral input::placeholder {
    color: white;
    font-size: 15px;
}

/* ===========> editar Produtos <============ */

.containerImgEditarProdutos {
    width: 100%;
}

img.editarImg {
    width: 150px;
    height: auto;
    margin-top: 20px;
    transition: .5s;
}

img.editarImg:hover {
    transition: .5s;
    scale: 1.05;
}

/* ===========> comanda <============ */

.containerGeralFormComanda {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

form.formGeral {
    width: 80%;
    height: auto;
    padding: 20px 30px;
    color: white;
    background-color: var(--cor-primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
}

form.formGeral input {
    width: 70%;
    height: auto;
    padding: 10px 20px;
    color: white;
    border: none;
    border-radius: 10px;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
    margin: 10px;
    font-size: 15px;
}

div.headerComanda {
    margin: 40px 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
}

div.headerComanda > a {
    width: 15%;
    text-decoration: none;
    transition: .5s;
    margin-left: 5%;
}

div.headerComanda > a:hover {
    transition: .5s;
    scale: 1.05;
}

div.headerComanda > a > img {
    width: 100%;
    background-color: white;
    border-radius: 50%;
}

.comandaContato {
    width: 75%;
    margin-right: 5%;
}

.comandaContato a {
    color: white;
    text-decoration: none;
}

.comandaContato a p:hover {
    transition: .5s;
    scale: 1.05;
    transform: translateX(-2%);
}

.comandaContato a p {
    transition: .5s;
    display: flex;
    font-size: 19px;
    margin: 10px 0;
    text-align: center;
    justify-content: end;
    align-items: center;
}

.comandaContato a p img {
    width: 30px;
    margin-right: 5px;
}


div.subHeaderComanda {
    margin: 10px 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
}

div.subHeaderComanda input {
    width: 50%;
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
    color: white;
    margin: 0.25%;
}

div.subHeaderComanda input::placeholder {
    color: white;
}

div.subHeaderComanda input:focus {
    outline: none;
}

div.subHeaderComanda input:hover {
    transition: .5s;
    scale: 1.05;
}

div.subHeaderComanda label {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px;
    transition: .5s;
    margin: 0.25%;
}

div.subHeaderComanda label input[type="radio"] {
    width: 10%;
    box-shadow: none;
}

div.subHeaderComanda label:hover {
    transition: .5s;
    scale: 1.05;
}

div.infoCliente {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
    margin: 30px 0;
}

div.infoCliente h2 {
    width: 100%;
    margin: 10px 0;
}

div.infoCliente input {
    color: white;
    width: 24%;
    margin: 0.25%;
    box-shadow: var(--box-shadow-primary);
    transition: .5s;
}

div.infoCliente input::placeholder {
    color: white;
}

div.infoCliente input:focus {
    outline: none;
}

div.infoAparelho {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
   
}

div.infoAparelho h2 {
    width: 100%;
    margin: 10px 0;
}

div.infoAparelho div.problemaAparelho {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
    margin: 30px 0;
}

div.infoAparelho div.problemaAparelho label {
    width: calc(100% / 4);
    margin: 10px 0;
    text-align: left;
    transition: .5s;
}

div.infoAparelho div.problemaAparelho label input[type="checkbox"] {
    width: 5%;
    box-shadow: none;
}

div.infoAparelho div.problemaAparelho label:hover {
    transition: .5s;
    scale: 1.05;
}

div.maisInfoAparelho {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
    margin: 30px 0;
}

div.maisInfoAparelho input {
    width: 80%;
    margin: 10px 5px;
    transition: .5s;
}

div.maisInfoAparelho input::placeholder {
    color: white;
}

div.maisInfoAparelho input:focus {
    outline: none;
}

div.maisInfoAparelho input:hover {
    transition: .5s;
    scale: 1.05;
}

div.maisInfoAparelho textarea {
    width: 80%;
    margin: 10px 5px;
    transition: .5s;
    background-color: var(--cor-primary-red);
    border-radius: 10px;
    border: none;
    box-shadow: var(--box-shadow-primary);
    padding: 10px;
    color: white;
}

div.maisInfoAparelho textarea::placeholder {
    color: white;
    font-size: 17px;
}

div.maisInfoAparelho textarea:focus {
    outline: none;
}

div.maisInfoAparelho textarea:hover {
    transition: .5s;
    scale: 1.05;
}

div.defeitosVisiveis {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
    margin: 30px 0;
}

div.informacoesData {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px solid var(--cor-primary-red);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow-primary);
    margin: 30px 0;
    color: white;
}

div.informacoesData h3 {
    width: 100%;
    margin: 10px 0;
}

div.informacoesData input {
    width: 80%;
    margin: 10px 0;
    color: white;
    transition: .5s;
}

div.informacoesData input::placeholder {
    color: white;
}

div.informacoesData input:focus {
    outline: none;
}

div.informacoesData input:hover {
    transition: .5s;
    scale: 1.05;
}

.geralButtonComanda {
    width: 30% !important;
    padding: 10px 20px;
    margin: 10px 2%;
    border-radius: 8px;
    border: none;
    background-color: var(--cor-primary-red);
    box-shadow: var(--box-shadow-primary);
    color: white;
    font-size: 17px;
    margin-top: 3% !important;
    transition: .5s;
    cursor: pointer;
}

.geralButtonComanda:hover {
    transition: .5s;
    scale: 1.05;
}

.infoClienteText {
    margin-bottom: 10px;
}

.problemaAparelhoLista {
    padding: 0 0.3%;
}

.maisInfoAparelhoText {
    margin-right: 40px;
}

.informacoesDataText {
    width: 100%;
    padding-bottom: 10px;
}

/* ===========> Caixa <============ */

.calendarioCaixa {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 20px;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--cor-primary-red);
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
}

.subCalendarioCaixa {
    width: 90%;
    margin: 20px 0;
    padding: 20px;
}

.subCalendarioCaixa > .nav-meses {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.subCalendarioCaixa > .nav-meses #month-year {
    text-align: center;
    color: white;
}

.subCalendarioCaixa > .container-calendario {
    width: 100%;
    margin-top: 10px;
}

.subCalendarioCaixa > .container-calendario .semana {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: var(--cor-primary-blue);
    box-shadow: var(--box-shadow-primary);
}

.subCalendarioCaixa > .container-calendario .semana h4 {
    width: 14%;
    text-align: center;
    color: white;
}

.subCalendarioCaixa > .container-calendario .dias {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.subCalendarioCaixa > .container-calendario .dias .dia {
    width: calc(100% / 7);
    text-align: center;
    padding: 25px 0;
    border: 1px solid var(--cor-primary-red);
    cursor: pointer;
    background-color: var(--cor-primary-blue);
    border-radius: 8px;
    transition: .5;
    color: white;
    font-size: 20px;
    box-shadow: var(--box-shadow-primary);
}

.subCalendarioCaixa > .container-calendario .dias .dia:hover {
    transition: 5;
    scale: 1.05;
    background-color: var(--cor-secundary-blue);
}

.formCenter {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

form#formCaixa {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

form#formCaixa input {
    width: 100%;
    height: 50px;
    margin: 10px 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: var(--cor-primary-blue);
    box-shadow: var(--box-shadow-primary);
    color: white;
    font-size: 17px;
    transition: .5s;
    cursor: pointer;
}

form#formCaixa input::placeholder {
    color: white;
    font-size: 17px;
}

form#formCaixa input[type="submit"] {
    width: 60%;
    height: 50px;
    margin: 10px 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: var(--cor-primary-blue);
    box-shadow: var(--box-shadow-primary);
    color: white;
    font-size: 17px;
    transition: .5s;
    cursor: pointer;
}

form#formCaixa input[type="submit"]:hover {
    transition: .5s;
    scale: 1.05;
}
form#formCaixa input:hover {
    transition: .5s;
    scale: 1.05;
}
form#formCaixa select:hover {
    transition: .5s;
    scale: 1.05;
}


form#formCaixa input:focus {
    outline: none;
}

table.tabelaEntradas,
table.tabelaTotal {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    color: black;
    font-size: 17px;
    background-color: white;
}

table.tabelaEntradas tr th {
    border-top: 2px solid var(--cor-primary-blue);
}

table.tabelaEntradas tr th:first-of-type,
table.tabelaEntradas tr td:first-of-type {
    border-left: 2px solid var(--cor-primary-blue);
}

table.tabelaEntradas tr th,
table.tabelaEntradas tr td {
    width: calc(100% / 4);
    padding: 10px;
    border-bottom: 2px solid var(--cor-primary-blue);
    border-right: 2px solid var(--cor-primary-blue);
}

table.tabelaTotal tr th {
    border-top: 2px solid var(--cor-primary-blue);
}

table.tabelaTotal tr th:first-of-type,
table.tabelaTotal tr td:first-of-type {
    border-left: 2px solid var(--cor-primary-blue);
}

table.tabelaTotal tr th,
table.tabelaTotal tr td {
    width: calc(100% / 2);
    padding: 10px;
    border-bottom: 2px solid var(--cor-primary-blue);
    border-right: 2px solid var(--cor-primary-blue);
}

.totalMensal h2,
.containerEntradas h2 {
    text-align: center;
}

form#mes_selecionar {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
    margin: 20px 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    font-size: 22px;
    background-color: white;
}

#mes_selecionar select {
    width: 7%;
    border: 1px solid var(--cor-primary-blue);
    font-size: 17px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
    margin: 20px;
    cursor: pointer;
    background-color: #ebebeb;
}

#mes_selecionar input {
    width: 15%;
    border: 1px solid var(--cor-primary-blue);
    font-size: 16px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
    margin: 20px 10px;
    background-color: #ebebeb;
    cursor: pointer;
    transition: .5s;
}

#mes_selecionar input:hover,
#mes_selecionar select:hover {
    transition: .5s;
    scale: 1.05;
}

.containerPassivo {
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

div.containerPassivoBox {
    width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    color: black;
    font-size: 17px;
    background-color: white;
}

table.tabelaPassivo {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow-primary);
    margin: 20px 0;
    padding: 20px;
    text-align: center;
    color: black;
    font-size: 17px;

}

table.tabelaPassivo tr td:first-of-type {
    width: 10%;
}

table.tabelaPassivo tr th,
table.tabelaPassivo tr td {
    padding: 10px;
    border-bottom: 2px solid var(--cor-primary-blue);
    border-right: 2px solid var(--cor-primary-blue);
}

table.tabelaPassivo tr th {
    border-top: 2px solid var(--cor-primary-blue);
}

table.tabelaPassivo tr th:first-of-type,
table.tabelaPassivo tr td:first-of-type {
    border-left: 2px solid var(--cor-primary-blue);
}

table.tabelaPassivo tr th {
    border-top: 2px solid var(--cor-primary-blue);
}

table.tabelaPassivo tr th:first-of-type,
table.tabelaPassivo tr td:first-of-type {
    border-left: 2px solid var(--cor-primary-blue);
}

.despesasForm{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnDespesas {
    width: 200px;
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 19px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--box-shadow-primary);
    background-color: #ccc;
    transition: .5s;
}

.btnDespesas:hover {
    transition: .5s;
    scale: 1.05;
}

form.despesasForm input[type="number"] {
    width: 200px;
    margin: 5px 5px;
    padding: 10px 20px;
    font-size: 19px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--box-shadow-primary);
    background-color: #ccc;
    transition: .5s;
    color: black;
}

form.despesasForm input[type="number"]::placeholder {
    color: black;
}

form.despesasForm input[type="number"]:hover {
    transition: .5s;
    scale: 1.05;
}

/* ===========> Responsivo <============ */

.containerImgExcluirAparelho {
    width: 100%;
}

img.editarImg {
    width: 150px;
    height: auto;
    margin-top: 20px;
    transition: .5s;
}

img.editarImg:hover {
    transition: .5s;
    scale: 1.05;
}

/* Novo */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter-VariableFont_slnt\,wght.ttf') format('truetype');
}

center.center{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-wrap: wrap;
}

body{
    background-color: whitesmoke;
    font-family: 'Inter', sans-serif;
}

/* Header */

header{
    background-color: whitesmoke;
    color: white;
    text-align: center;
    height: 150px;
}

header img{
    width: 150px;
    height: 150px;
}

/* inicio */

section.inicio{
    background-image: url('assets/img/fotonova02.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 786px;
    overflow: hidden;
    z-index: 1;
}

section.inicio > center.center{
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;

}

.container{
    width: 55%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container > center.center{
    width: 80%;
    margin-top: -10%;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.container h1{
    text-align: left;
    font-size: 54px;
    color: whitesmoke;
    font-weight: 700;
    padding: 20px;
    padding-bottom: 0px;
    z-index: 2;
}

.container p{
    font-size: 24px;
    color: whitesmoke;
    font-weight: 300;
    padding: 20px;
    z-index: 2;
}

.container button{
    color: whitesmoke;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    padding: 15px 25px;
    margin: 20px;
    margin-top: 0px;
    border-radius: 30px;
    border: 1px solid whitesmoke;
    background-color: rgba(0, 185, 15, 1);
}

.background-red{
    width: 150%;
    height: 200%;
    position: absolute;
    left: -50%;
    background-color: rgba(200, 0, 0, 0.6);
    z-index: 1;
    transform: rotate(8deg);
}

.img-inicio{
    width: 20%;
    height: auto;
    margin-top: -10%;
    margin-right: 110px;
}

/* transição */

.transicao{
    width: 100%;
    margin-top: -10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transicao > center.center{
    width: 75%;
    height: 250px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: whitesmoke;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    flex-direction: row;
    z-index: 100;
}

.single-column{
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.single-column > img{
    padding-top: 20px;
    width: 50%;
    height: auto;
}

.single-column > p{
    font-size: 20px;
    font-weight: 300;
    color: black;
    text-align: center;
    padding: 20px;
}

/* serviços */

section.servicos{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.servicos > center.center{
    width: 80%;
    height: auto;
    padding: 40px;
    flex-direction: column;
}

section.servicos > center.center h5{
    font-size: 20px;
    font-weight: 500;
    color: black;
    text-align: center;
}

section.servicos > center.center h4{
    font-size: 24px;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

section.servicos > center.center h4::after{
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: rgba(200, 0, 0, 1);
    margin: 10px auto;
    margin-top: 30px;
}

.servicos-container{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.servico-item{
    width: 22%;
    height: 150px;
    margin: 10px;
    padding: 20px;
    border-radius: 20px;
    background-color: whitesmoke;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.servico-item i{
    font-size: 40px;
    color: rgba(200, 0, 0, 1);
    margin-bottom: 20px;
}

.servico-item h3{
    font-size: 14px;
    font-weight: 400;
    color: rgba(200, 0, 0, 1);
    text-align: center;
}

.mais-servicos{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mais-servicos p{
    font-size: 20px;
    font-weight: 400;
    color: black;
    text-align: center;
    margin-top: 50px;
}

.mais-servicos red{
    color: rgba(200, 0, 0, 1);
}

.mais-servicos button{
    color: whitesmoke;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    padding: 15px 25px;
    margin: 20px;
    margin-top: 20px;
    border-radius: 30px;
    border: none;
    background-color: rgba(0, 185, 15, 1);
}

/* Sobre Nos */

section.sobre-nos{
    width: 100%;
    height: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.sobre-nos > center.center{
    width: 80%;
    height: auto;
    padding: 40px;
    flex-direction: row;
    justify-content: space-between;
    background-color: rgb(220, 220, 220);
    border-radius: 20px;
}

.img-effect{
    width: 40%;
    height: auto;
    margin-left: 30px;
}

.img-effect img{
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: -25px -25px 0px 0px rgb(255, 0, 0);
}

.text-center{
    width: 60%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text-center h3{
    width: 70%;
    font-size: 20px;
    font-weight: 500;
    color: black;
    text-align: left;
    padding-bottom: 20px;
}

.text-center ul li{
    width: 70%;
    font-size: 16px;
    font-weight: 300;
    color: black;
    margin-bottom: 10px;
    text-align: left;
}

.text-center ul li::marker {
    color: rgba(200, 0, 0, 1);
    font-weight: 600;
    font-size: 20px;
}

.text-center button{
    color: whitesmoke;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    padding: 15px 25px;
    margin: 20px;
    margin-top: 10px;
    border-radius: 30px;
    border: none;
    background-color: rgba(0, 185, 15, 1);
}

/* Parallax */

.parallax {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background: none;
}

.parallax::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/img/fotonova01.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: brightness(0.8);
}

.parallax > center.center{
    padding: 10px 20px;
    z-index: 1;
    color: rgb(23, 30, 49);
    text-align: left;
    justify-content: center;
    align-items: start;
    margin-left: 1.5%;
}   

.parallax > center.center h2{
    font-size: 34px;
    width: 500px;
    padding: 50px;
    padding-bottom: 0px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: rgba(220, 220, 220, 0.6);
}

.parallax > center.center p{
    font-size: 20px;
    width: 500px;
    padding: 50px;
    padding-top: 20px;
    margin-bottom: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: rgba(220, 220, 220, 0.6);
}

.parallax > center.center button{
    color: whitesmoke;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    padding: 15px 25px;
    margin: 20px;
    margin-top: 0px;
    margin-left: 2.5%;
    border-radius: 30px;
    border: none;
    background-color: rgba(0, 185, 15, 1);
}

/* Comentários */

.comentarios{
    width: 100%;
    height: auto;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(220, 220, 220);
}

.comentarios > center.center{
    width: 90%;
    height: auto;
    padding: 40px;
    flex-direction: row;
    align-items: space-between;
    border-radius: 20px;
    gap: 150px;
}

.comentarios > center.center > center.center{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.comentarios > center.center > center.center > img{
    width: 50%;
    height: auto;
    padding: 20px;
    margin-left: 15%;
}

.comentarios > center.center > center.center > p{
    width: 80%;
    font-size: 28px;
    font-weight: 300;
    color: rgb(12, 20, 56);
    text-align: left;
    padding: 20px;
    margin-left: 20%;
    margin-top: -14%;
}

.comentarios > center.center > center.center > p > b{
    font-size: 32px;
    font-weight: 500;
    color: rgb(12, 20, 56);
}

.comentarios > center.center > center.center > button{
    width: 70%  ;
    color: whitesmoke;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
    padding: 15px 25px;
    margin: 20px;
    margin-top: 0px;
    margin-left: 24%;
    border-radius: 30px;
    border: none;
    background-color: rgba(0, 185, 15, 1);
}

.comentarios > center.center > .comentarios-slider{
    width: 50%;
    height: auto;
}

.slider-fade {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0px 0px 25px rgb(255, 0, 0);
    background: #fff;
}

.slide-img {
    position: absolute;
    top: 0; left: 0;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 25px rgb(255, 0, 0);
    background: #fff;
    opacity: 0;
    transition: opacity 1s;
    z-index: 105;
}

.slide-img.active {
    opacity: 1;
    z-index: 106;
}

/* Footer */

footer{
    width: 100%;
    height: auto;
    background-color: rgb(17, 28, 78);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer > center.center{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

footer > center.center > .footer-content > .footer-links ul{
    width: 40%;
    margin-top: 25px;
    padding: 20px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 1px solid whitesmoke;
    border-bottom: 1px solid whitesmoke;
}

footer > center.center > .footer-content > .footer-links ul li{
    list-style: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: 300;
}

footer > center.center > .footer-content > .footer-links ul li a{
    font-size: 20px;
    font-weight: 400;
    color: whitesmoke;
    text-decoration: none;
}

footer > center.center > .footer-content > .maps{
    width: 100%;
}

footer > center.center > .footer-content > .maps > center.center{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

footer > center.center > .footer-content > .maps > center.center iframe{
    width: 40%;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

footer > center.center > .footer-content .footer-contact{
    width: 60%;
    height: auto;
    color: whitesmoke;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    padding-bottom: 40px;
}

footer > center.center > .footer-content .footer-contact p{
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
}

/* --- NOVO VISUAL PARA A PÁGINA DE AGENDAMENTO --- */

/* VISUAL PADRÃO INICIO PARA AGENDAMENTO */

.calendario {
    width: 100%;
    min-height: 700px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 0 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.informacoesOcamento {
    background: rgba(255,255,255,0.97);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 36px 28px;
    max-width: 420px;
    min-width: 320px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.informacoesOcamento h2 {
    font-size: 2.2rem;
    color: #c41922;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}

.informacoesOcamento p {
    color: #222;
    font-size: 1.08rem;
    margin-bottom: 22px;
    line-height: 1.6;
    text-align: center;
}

.informacoesOcamento iframe {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.subCalendario {
    background: rgba(255,255,255,0.97);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 36px 28px;
    max-width: 420px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-meses {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    width: 100%;
}

.nav-meses button {
    background: #c41922;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: bold;
}

.nav-meses button:hover {
    background: #a3131a;
}

#month-year {
    font-size: 1.3rem;
    color: #c41922;
    font-weight: 700;
    letter-spacing: 1px;
}

.container-calendario {
    margin-bottom: 18px;
    width: 100%;
}

.semana {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    background: #c41922;
    border-radius: 8px;
    padding: 4px 0;
}

.semana h4 {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.dias {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
}

.dias div {
    width: calc(100% / 7 - 4px);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f4f8;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, scale 0.2s;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.dias div.selecionado,
.dias div:hover {
    background: #c41922;
    color: #fff;
    scale: 1.08;
}

.dias div.indisponivel {
    background: #e4e4e4 !important;
    color: #aaa !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.dias div.hoje {
    border: 2px solid #c41922;
}

form {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

form input,
form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #c41922;
    border-radius: 8px;
    font-size: 1.08rem;
    transition: border 0.2s, box-shadow 0.2s;
    background: #f8fafc;
    color: #222;
    font-family: inherit;
    font-weight: 500;
}

form input:focus,
form select:focus {
    border-color: #072f4e;
    outline: none;
    box-shadow: 0 0 0 2px #c4192240;
}

form input::placeholder {
    color: #aaa;
    font-size: 1rem;
    opacity: 1;
}

#menu-horarios {
    margin-top: 10px;
    background: #f5f7fa;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #c41922;
}

#menu-horarios h3 {
    color: #c41922;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.horarios-disponiveis {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.horario {
    background: #e3eafc;
    color: #c41922;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, scale 0.2s;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    outline: none;
}

.horario.selecionado,
.horario:hover {
    background: #c41922;
    color: #fff;
    scale: 1.08;
}

button#enviarMensagem {
    background: linear-gradient(90deg, #c41922 60%, #072f4e 100%);
    color: #fff;
    padding: 14px 0;
    border: none;
    border-radius: 30px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, scale 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    letter-spacing: 1px;
}

button#enviarMensagem:hover {
    background: linear-gradient(90deg, #072f4e 60%, #c41922 100%);
    scale: 1.04;
}

/* Responsivo */
@media (max-width: 900px) {
    .calendario {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 30px 0 20px 0;
    }
    .informacoesOcamento,
    .subCalendario {
        max-width: 98vw;
        min-width: unset;
        padding: 24px 10px;
    }
}

/* --- NOVO VISUAL CALENDÁRIO CAIXA --- */

.calendarioCaixa {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e0e7ef 100%);
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 0 24px 0;
    margin: 0 0 32px 0;
    min-height: 320px;
}

.subCalendarioCaixa {
    width: 95%;
    max-width: 700px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 24px 24px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subCalendarioCaixa > .nav-meses {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 18px;
}

.subCalendarioCaixa > .nav-meses button {
    background: #c41922;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: bold;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.subCalendarioCaixa > .nav-meses button:hover {
    background: #a3131a;
}

.subCalendarioCaixa > .nav-meses #month-year {
    font-size: 1.3rem;
    color: #c41922;
    font-weight: 700;
    letter-spacing: 1px;
}

.subCalendarioCaixa > .container-calendario {
    width: 100%;
    margin-top: 0;
}

.subCalendarioCaixa > .container-calendario .semana {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    background: #c41922;
    border-radius: 8px;
    padding: 4px 0;
}

.subCalendarioCaixa > .container-calendario .semana h4 {
    flex: 1;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.subCalendarioCaixa > .container-calendario .dias {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
}

.subCalendarioCaixa > .container-calendario .dias .dia {
    width: calc(100% / 7 - 4px);
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f4f8;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, scale 0.2s;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
    border: none;
}

.subCalendarioCaixa > .container-calendario .dias .dia.selecionado,
.subCalendarioCaixa > .container-calendario .dias .dia:hover {
    background: #c41922;
    color: #fff;
    scale: 1.08;
}

.subCalendarioCaixa > .container-calendario .dias .dia.indisponivel {
    background: #e4e4e4 !important;
    color: #aaa !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.subCalendarioCaixa > .container-calendario .dias .dia.hoje {
    border: 2px solid #c41922;
}

/* Responsivo para o calendário caixa */
@media (max-width: 900px) {
    .calendarioCaixa {
        padding: 16px 0 8px 0;
        border-radius: 0 0 18px 18px;
    }
    .subCalendarioCaixa {
        width: 99vw;
        max-width: 99vw;
        padding: 16px 4px 12px 4px;
    }
}
