/*FONTES*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body.admin-bar.et_fixed_nav #top-header{
    height:70px!important;
    display:flex!important;
    font-size:19px!important;
    font-family: "Quicksand", sans-serif!important;
    background:rgba(0,55,124,.8)!important
}
#top-header .et-social-icon a{
    font-size:19px!important;
}
body.admin-bar.et_fixed_nav.et_secondary_nav_enabled #main-header{
    background-color:white!important;
    box-shadow: 0 0 15px rgba(0,0,0,.7)!important
}
#et-info{
    float:right!important;
}
ul.sub-menu{
    background-color:white!important;
}
body .et_pb_button{
    padding:10px 40px!important;
}
body .et_pb_button:hover{
    padding:10px 50px!important;
}
.et_pb_button:hover, .et_pb_module .et_pb_button:hover{
    padding:10px 50px!important;
}
.et-pb-controllers a{
    padding:7px;
    border-radius: 50px!important;
    border:3px solid white!important;
}
.et-pb-controllers{
    bottom:105px!important;
}
.et-l.et-l--header{
    position:relative;
    z-index: 1
}

.faixa-menu{

}

.area-menu-principal{

}

.btn-abrir-calendario{
    padding: 18px;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 25px;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    text-align: center;
    font-size: 12px;
    background: #00beff;
    border: 4px solid white;
    box-shadow: 0 0 30px white;
    transition:all linear .2s;

}

.btn-abrir-calendario img{
    width:28px;
    margin-bottom:-10px;
}

.btn-fechar-calendario{
    background: #ff8300;
    position: absolute;
    top: 45%;
    left: -35px;
    padding: 14px 15px 8px 15px;
    border-radius: 50px;
    border: 8px solid white;
    cursor:pointer;
    transition:all linear .1s;
    box-shadow:-8px 0px 6px rgba(0, 0, 0,.5);
}
.btn-fechar-calendario img{
    width:20px;
}
.btn-fechar-calendario:hover{
    transform:scale(1.1);
    background:#ff3100;
}

.btn-abrir-calendario:hover{
    background: #0c71c3;
    transform: scale(1.1)
}

.area-de-agendamento {
    position: fixed;
    right: 0;
    top: 0;
    width: 45vw;
    height: 100vh;
    z-index: 9;
    box-shadow: -5px 0 15px rgba(0,0,0,.6);
    transform: translateX(110%);
    transition: transform 0.3s ease-in-out;
    padding:50px!important;
}

.area-de-agendamento.open {
    transform: translateX(0);
}

.area-de-agendamento form{
    display:flex;
    flex-wrap: nowrap;
    gap:15px;
}
.area-de-agendamento form label{
    font-size: 9px;
    font-weight:700;
    text-transform: uppercase;
    display: block;
    margin-bottom:-5px;
}
.area-de-agendamento form input{
    font-size: 16px;
    padding:10px;
    width:100%;
    margin-bottom: 15px;
    border:1px solid #dfdfdf;
}
.area-de-agendamento form select{
    font-size: 16px;
    padding:10px 10px 8px 10px;
    width:100%;
    border:1px solid #dfdfdf;
}
.area-de-agendamento form button{
    cursor:pointer;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    transition:all linear .2s;
    font-size: 18px;
    padding:10px 40px;
    background:#00beff;
    border-radius: 50px;
    color:white;
    margin-top: 40px;
    border:none;
}
.area-de-agendamento form button:hover{
    background:#60cff5;
    padding:10px 45px;
}
.formulario-de-agendamento h1{
    font-weight: 700;
    font-size:32px;
}
.formulario-de-agendamento p{
    font-size:16px;
    line-height: 1.7em;
    margin-bottom:25px;
}
.formulario-de-agendamento span.txt-bolinha-azul{
    font-weight: 600;
    color: #00BEFF;
}
.formulario-de-agendamento span.txt-bolinha-lilas{
    font-weight: 600;
    color: #6B00FF;
}
.formulario-de-agendamento span.txt-bolinha-cinza{
    font-weight: 600;
    color: #999;
}


#calendar{
    width:100%;
    margin-bottom:20px;
}
#calendar table{
    width:100%;
    border-collapse:collapse;
}
#calendar thead{
    background:#eee;
    text-transform: uppercase;
}
#calendar th{
    text-align:center;
    padding:8px;
    font-weight:700;
    border:1px solid #eee;
}
#calendar th.next, #calendar th.prev{
    cursor:pointer;
    background:#999;
    color:white;
    transition:all linear .1s;
}
#calendar th.next:hover, #calendar th.prev:hover{
    background:#333;
}
#calendar td{
    width:14.28%;
    height:60px;
    vertical-align:bottom;
    position:relative;
    cursor:pointer;
    border:1px solid #eee;
    text-align:center;
    transition:all linear .1s;
}
#calendar td:hover{
    background:#f9f9f9;
}
#calendar td.empty{
    cursor:default;
    background:#f9f9f9;
}
#calendar td.selected{
    background:rgba(0,190,255,.1);
}
#calendar .num{
    position:absolute;
    top:4px;
    left:0;
    font-size:14px;
    width:100%
}
#calendar .dot{
    display:inline-block;
    width:8px;
    height:8px;
    border-radius:50%;
    margin:1px;
}
#calendar .dot.manha{
    background:#00aaff;
}
#calendar .dot.tarde{
    background:#aa00ff;
}
#calendar .dot.none{
    background:#ccc;
}

.explicacao-calendario{
    font-size: 14px;
    line-height: 1.3;
}
.explicacao-calendario span.txt-bolinha-azul{
}
.explicacao-calendario span.txt-bolinha-lilas{
}


#calendar .dot.manha.avail   {
    background: #00beff;
}
#calendar .dot.manha.unavail {
    background: #ccc;
}
#calendar .dot.tarde.avail   {
    background: #6b00ff;
}
#calendar .dot.tarde.unavail {
    background: #ccc;
}

/* ───────────────────────────────────────────────────────────
   1) Form em flexível e com wrap
─────────────────────────────────────────────────────────── */
#formAgendamento {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;               /* espaçamento entre colunas */
}

/* ───────────────────────────────────────────────────────────
   2) Cada DIV vira 1/3 do form (3 colunas iguais)
─────────────────────────────────────────────────────────── */
#formAgendamento > div:nth-child(2) {
    flex: 0 0 20%;
}

/* 3ª div = 30% */
#formAgendamento > div:nth-child(3) {
    flex: 0 0 45%;
}

#formAgendamento > div:nth-child(4) {
    flex: 0 0 28%;
}

/* mantém mínimo pra não quebrar demais em mobile */
#formAgendamento > div {
    min-width: 120px;
}



/* ───────────────────────────────────────────────────────────
   3) Botão embaixo, ocupando 100% da largura disponível
─────────────────────────────────────────────────────────── */
#formAgendamento button {
    flex: 0 0 auto;
    margin-top: 15px;
    margin-left:auto;
}

/* ───────────────────────────────────────────────────────────
   4) Mensagem de resposta abaixo do botão, também 100%
─────────────────────────────────────────────────────────── */
#formAgendamento #respostaAgendamento {
    flex: 1 1 100%;
    margin-top: 5px;
}

#formAgendamento .alert{
    background: #ccc;
    margin-left: -50px;
    margin-right: -50px;
    padding: 30px;
    color: white;
    margin-top: 20px;
    text-align: center;
    letter-spacing: 1px;
    font-size:14px;
    font-weight: 600;
}
#formAgendamento .alert.alert-warning{
    background: #ff3c3c;
}
#formAgendamento .alert.alert-info{
    background: #1db546;
}

.tooltip-calendario{
    background: #ffffff;
    padding: 15px 0;
    display: flex;
    font-size: 12px;
    justify-content: flex-end;
    margin-top: -20px;
    margin-bottom: 5px;
    gap: 18px;
}
.tooltip-calendario span{
    font-size: 22px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: 5px;
    position: relative;
    top: -3px;
}
.tooltip-calendario .manha span{
    color:#00BEFF;
}
.tooltip-calendario .tarde span{
    color:#6B00FF;
}
.tooltip-calendario .indisponivel span{
    color:#ccc;
}

.btn-agendar.desabilitado{
    cursor: not-allowed;
    opacity: .4;
    filter:grayscale(1);
    pointer-events: none;
}

/* datas anteriores */
.cal-table td.day.past {
    opacity: .2;
    pointer-events: none;
    filter:grayscale(1)
}
/* destaque para hoje */

#calendar .cal-table td.day.today .num {
    background: #0B57D0;
    color: white;
    background: #0B57D0;
    width: 32px;
    border-radius: 30px;
    padding: 2px;
    margin: 0 auto;
    position: relative;
    font-weight: 600;
}

/* desabilita o dia quando nenhum turno estiver livre */
.cal-table td.day.unavailable {
    pointer-events: none;
    opacity: .2;
    filter:grayscale(1);
}
/* mantém o hover dos dias válidos */
.cal-table td.day:not(.past):not(.unavailable):hover {
    background: #f0f8ff;
    cursor: pointer;
}

.mensagem-full-agendamento{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 188, 212, .94);
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 35vw;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.5;
    flex-direction: column;
}

.mensagem-full-agendamento img{
    width:64px;
}

.boom{
    position:fixed;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    background:rgba(0,55,124,.9);
    z-index: 99;
    display:none
}

.swipe-vertical{
    display:none;
}

@media screen and (max-width: 575px) {
    
    #formAgendamento .alert{margin-left:-40px; margin-right:-40px;}
    
    #calendar th{
        padding:4px;
        font-size:12px;
    }

    .area-de-agendamento form input{
        margin-bottom:0;
    }

    .swipe-vertical{
        height:100vh;
        display:flex;
        align-items: center;
        position:absolute;
        top:0;
        left:12px;
    }
    .swipe-vertical div{

        height: 70px;
        width: 5px;
        background: #cdc8c8;
        margin-right: 4px;
        border-radius: 30px;

    }
    #area-menu-mobile .mobile_menu1{
        z-index: 99;
    }
    .area-de-agendamento{
        width:90%;
    }
    .btn-abrir-calendario{
        right:15px;
        bottom:15px;
        padding:12px;
    }
    .btn-fechar-calendario{

    }
    .area-de-agendamento{
        padding:40px!important;
        overflow: auto;
        height:100vh;
    }
    .formulario-de-agendamento h1{
        width:50%
    }
    #formAgendamento > div:nth-child(2), #formAgendamento > div:nth-child(3), #formAgendamento > div:nth-child(4){
        flex:100%;
    }
    .tooltip-calendario .indisponivel{
        display:none;
    }
    #calendar td{
        height:50px;
    }

    .btn-fechar-calendario {
        top: 10px;
        right: 10px;
        left: inherit;
        background: none;
        filter: brightness(0.5);
        border: none;
        box-shadow: none;
    }

}
@media (min-width: 576px) and (max-width:767px) {
    .area-de-agendamento{
        width:90vw;
    }
}
@media (min-width: 768px) and (max-width:998px) {
    .area-de-agendamento{
        width:70vw;
    }
}
@media (min-width: 999px) and (max-width:1200px) {
    .area-de-agendamento{
        width:70vw;
    }

}
@media (min-width: 1201px) and (max-width:1499px) {
    .area-de-agendamento{
        width:60vw;
    }
}
@media (min-width: 1500px){

}
