*{
    margin: 0;
    padding: 0;
}
html, body {
  overflow-y: auto;
}

header{
    display: flex;
    flex-direction: row;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 10vh;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background-color: #d62c3a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 99999;
}

body{
    background-color: #f4f4f4;
    margin:0;
    padding-top: 12vh;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    align-items: center;
    width: 100vw;
}

#texto{
    width: 100dvw;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 2dvh;
}

h1{
    color: #d41424;
    text-align: center ;
}

h3{
    color: #7c000a;
    text-align: center ;

}

h2{
    color: white;
    text-align: center;
}
h4{
    text-align: center;
    color: #d41424;
}

#bnt-whatsapp{
    height: 50%;
    width: auto;
    padding: 2%;
    border: none;
    color: white;
    border-radius: 8px;
    background: none;
}

#bnt-instagram{
    height: 50%;
    width: auto;
    padding: 2%;
    border: none;
    color: white;
    border-radius: 8px;
    background: none;
    margin-right: 2%;
}

#box-lumodas{
    display: flex;
    flex-direction: column;
    width: 60%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #f1404f;

}

#lumodas{
    height: auto;
    width: 80%;

}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  animation: slideDown 0.6s ease-out;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.box-do-cadastro {
  animation: slideUp 0.7s ease-out;
}



#cor,#cor2{
    position: absolute;
    width: 200%;
    height: 100%;
    background-color: #d62c3a;
    display: fixed;
    top: 0;
    z-index: -1;
    transform: rotate(135deg);

}

form{
    width: 100%;
    align-items: center;
    justify-content: center;
}
ol{
    width: 100%;
}
li{
    list-style: none;
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-bottom: 1em;
    border-radius: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
label{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0.3em;
    font-weight: bold;
}
input,select{
    width: 100%;
    height: 25px;
    border: none;
    border-radius: 7px;
    padding: 4px;
}

#campo-outra-cidade{
    gap: 50px;
}

.box-do-cadastro{
    position: relative;
    display: flex;
    width: 85dvw;
    flex-direction: column;
    height: auto;
    gap: 2px;
    padding: 5%;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    background-color: #d84652;
    z-index: 0;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);


}

#vdh{
    margin-top: 2dvh;

}

footer{
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    padding: 1rem;
    max-width: 600px;
    margin: 2rem auto 1rem;
    line-height: 1.4;
    text-align: justify;
}

#bnt1{
    color: white;
    border: none;
    background-color: rgb(89, 163, 89);
    border-radius: 8px;
    padding: 3%;
}

/* Animação suave para títulos */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, h2, h3, h4 {
  animation: fadeInUp 0.8s ease-out;
}

#block{
    width: 100dvw;
    height: 100dvh;
    background-color: white;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}
#box-lumodas2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 40%;
    height: 100%;
}


@media (min-width: 768px){
    #lumodas{
        height: 100%;
        width: auto;
    }

    #box-lumodas{
        justify-content: center;
        align-items: flex-start;
        padding-left: 5%;
    }

    .box-do-cadastro{
        width: 40dvw;
    }

    footer{
        text-align: center;

    
    }
  
}

@media (prefers-color-scheme: light) {
  body {
    background-color: #1e1e1e;
    color: #ffffff;
  }
}

