@font-face {
    font-family: 'Intermed';
    src: url('fonts/INTERMED/intermed.otf') format('opentype');  
}
@media only screen and (max-width: 1120px) {
    .box-parallax{
        width: 100% !important;
        height: 500px !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .box-logotipo-topo{       
        flex-direction: column !important;
    }
    .box-logotipo-topo img{
        width: 30% !important;    
        max-width: 300px !important;
        min-width: 200px !important;
    }
}
.box-notificacao{
    width: 100%;
    background-color: #01351C;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 10px;
    align-items: center;
}
.box-notificacao p {
    color: #FBF6D6;
    font-size: 1rem;
    margin: 0px 10px;
}
.box-notificacao a{
    color: #01130d;
    font-size: 0.8rem;
    padding: 5px 20px;
    background-color: #ffd94e;
    border-radius: 20px;
    font-weight: bold;
}
body{
    background-color: #020f0b !important;
    width: 100%;
    overflow-x: hidden;    
}
.content{
    width: 100%;
    position: relative;
}
.box-parallax{
    width: 100%;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 1s ease;
    position: relative;
}
.box-logotipo-topo{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    flex-direction: row;
}
.box-logotipo-topo img{
    width: 50%;    
    max-width: 500px;
    min-width: 300px;
}
@keyframes parallaxSwing {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-0.5deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(5px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.box-parallax>img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover; 
    z-index: -1;
    filter: brightness(0.2) blur(5px);
    animation: parallaxSwing 5s infinite ease-in-out;
}

/*=============contador==============*/
.box-contagem{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#divisoria{
    width: 50%;
    max-width: 700px;
}
.countdown {
    display: flex;
    gap: 5px;
    margin: 30px 0px;
}

.countdown p {
    font-size: 1.5rem;
    font-family: 'Intermed';
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
}

.countdown-item span {
    color: #CC8E00    ;
    font-family: 'Intermed';
    font-size: 1.3em ;
}


.countdown-item p {
    margin: 0;
    color: #FBF6D6;
}
/*==========formulario=================*/
.box-formulario{
    width: 100%;
    background-color: #01351C;
    display: flex;
    justify-content: center;
    padding: 40px 0px;
    position: relative;
    flex-direction: column;
    align-items: center;
}
.box-formulario::after{
    background-image: url('images/INTERMEDPANTANAL/PATTERN.avif?v=2');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 5;
    z-index: 1;
    opacity: 0.2;
    filter: brightness(0.7);
}
#lote_intermed {
    margin: 10px;
    color: #FBF6D6;
    background-color: #011b14;
    border-radius: 20px;
    font-family: "Roboto";
    padding: 10px;
    font-size: 1rem;
    text-align: center;
}
#formCadastro{
    width: 100%;
    max-width: 700px;    
    z-index: 2;
}
.form-title{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 40px 0px;
    flex-direction: column;
    align-items: center;
}
.form-title p{
    color: #FBF6D6;
    font-family: 'Intermed';
    font-style: normal;
    font-weight: normal;    
    font-size: 2rem;
    position: relative;

}
.box-star{
    display: flex;
    flex-direction: row;
}
.estrela{
    display: block;
    width: 20px;
    height: 20px;
    background-image: url('images/INTERMEDPANTANAL/ESTRELA.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}
.form-title h3{
    color: #FBF6D6;
    font-family: 'Roboto';
    font-size: 1.1rem;
    font-weight: normal;
    position: relative;
}
.box-inputs{
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin: 20px;
}
.box-inputs span, .box-inputs p{
    color: #FBF6D6;
}
.box-inputs input, .box-inputs select{
    padding: 10px;
    border: 2px solid #056F3F;
    border-radius: 20px;
    font-size: 1rem;
    background-color: transparent;
    color: #FBF6D6;
    outline: none;
}
.box-inputs option{
    background-color: #056F3F;
    color: #FBF6D6;
}
.box-inputs input:focus, .box-inputs select:focus{
    border: 2px solid #CC8E00
    !important;    
    transition: 0.5s;
}
.box-inputs input:disabled, .box-inputs select:disabled{
    background-color: #5b5b5b;
}
#nascimento{
    width: 100% !important;
}
#box-foto{
    border-radius: 20px;
    background-color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}
#box-foto>p{
    color: aliceblue;
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    margin-bottom: 40px;
    font-weight: bold;
}
#box-foto .instrucoes p{
    color: aliceblue;
    font-size: 0.9rem;
}
#box-foto .instrucoes b{
    color: aliceblue;
    font-size: 0.9rem;
    color: #CC8E00
    ;
}
#alojamento{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0px;
}
#alojamento>p{
    font-family: "Roboto", sans-serif;
    font-size: 1.2rem;
    color: #FBF6D6;    
}
#alojamento .box-switch{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.box-switch p {
    margin: 10px;
    color: #FBF6D6;
}
#btn-submit{
    color: #FBF6D6;
    cursor: pointer;
    box-shadow: inset 0 0 0 0 #000000;
  -webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
#btn-submit:hover{
    box-shadow: inset 0 100px 0 0 #CC8E00
    ;
    color: #020f0b;
}
.insc-closed, .insc-closed:disabled{
    background-color: #01351C !important;
    color: #FBF6D6;
}
#termos .box-switch{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.filepond_imagens{
    width: 100%;
    max-width: 750px;    
    cursor: grab !important;
    margin-top: 30px;
}
.filepond--drop-label img{
    cursor: grab !important;
}
.filepond--panel-root {    
    background-color: #CC8E00
    ;
    
}
/* ===============================*/
/* Estilo básico para o switch */
.switch {
    position: relative;
    display: inline-block;
    min-width: 60px;
    width: 60px;
    height: 34px;
}

/* Estilo do slider do switch */
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #CC8E00
    ;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

/* Estilo do indicador (ponta do switch) quando o switch está ativo */
.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #FBF6D6;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

/* Estilo quando o switch está marcado (ligado) */
.switch input:checked+.slider {
    background-color: #21f380;
    /* cor de fundo do switch ligado */
}

/* Estilo do indicador (ponta do switch) quando o switch está ativo */
.switch input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Estilo do texto ao lado do switch (opcional) */
.switch-label {
    margin-left: 10px;
}

/* Estilo para desativar o switch quando marcado (checked) */
.switch input:disabled:checked+.slider {
    background-color: #bae0ff;
    /* cor para disable checked */
    cursor: not-allowed;
}

/* Estilo para desativar o switch quando desmarcado (unchecked) */
.switch input:disabled:not(:checked)+.slider {
    background-color: #ffb5b5;
    /* cor para disable unchecked */
    cursor: not-allowed;
}

/* Estilo para esconder o input original do switch */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
/* ================SLIDE===============*/
