@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Maven+Pro:regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);
html{
background-image: url(img/fundo2023b.avif);
animation: moverFundo 60s linear infinite;
background-size: cover;
}


@keyframes moverFundo {
0% { background-position: 0 0; }
100% { background-position: 0 100%; }
}
#meuFormulario{
    margin-top: 20px;
    text-align: center;
}
#opcoes{
    background: radial-gradient(circle, rgba(216, 251, 63, 0.5) 0%, rgba(71, 159, 51, 0.5) 100%);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    width: 80vw;
    max-width: 600px;
    margin-left: 15px;
    border-radius: 35px;
    margin: 0 auto;
    backdrop-filter: blur(5px) grayscale(60%) sepia(20%);
    box-shadow: 0px 0px 41px -4px rgba(0,0,0,1);
}
.botoesWhats {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
#logoSNI {
    width: 40%;
    filter: drop-shadow(2px 2px 1.5px rgba(0,0,0,0.5));
    transition: filter 0.1s ease-in-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 2);
}
#logoSNI:hover {
    transform: scale(1.05);
    filter: drop-shadow(4px 4px 3.5px rgba(0,0,0,0.5));
}

#tituloForm{
    font-size: 120%;
    font-family: Maven pro;
    line-height: 30px;
}
.profile-button {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #9bd88854;
    color: #000000;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    font-family: 'Maven Pro', sans-serif;
    user-select: none;
    width: 50%; /* Ajuste para a largura total */
    justify-content: flex-start; /* Garante que a imagem e o texto comecem alinhados à esquerda */
    min-width: 250px; /* Largura mínima para evitar o colapso do botão */
}
.profile-button:hover {
    background-color: #c4f807;
    transform: scale(1.05);
    font-weight: bolder;
    font-size: 17px;
}
.profile-button img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    flex-shrink: 0; /* Impede que a imagem diminua se o texto for muito longo */
    transition: 0.3s ease-in-out;
    filter: drop-shadow(2px 2px 1.5px rgba(0,0,0,0.5));
}
.profile-button:hover img {
    transform: scale(1.6) !important;
    filter: drop-shadow(4px 4px 3.5px rgba(0,0,0,0.5));
}
.profile-button img:hover {
    transform: scale(2) !important;
    filter: drop-shadow(4px 4px 3.5px rgba(0,0,0,0.5));
}
.profile-button span {
    font-weight: bold;
    text-align: left; /* Alinha o texto à esquerda */
    overflow: hidden; /* Impede que o texto saia do botão */
    padding-left: 10px;
}
span{
    font-family: Maven pro;
}
#listaBotoes{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#fomularioInicial, #fomularioSimulador{
    display: inline-flex;
}
#foraExpediente{
    display: none;
}
a{
    text-decoration: none;
    color: black;
    display: contents;
}
#botaoEnviar{
    background-color: #c4f807;
    padding: 2% 7%;
    font-family: Maven pro;
}
.textoExplicativo{
    font-weight: bold;
}
#exibeSaibaRendaFormal, #exibeSaibaCPF, #exibeSaibaDependente, #exibeSaibaEntrada, #exibeSaibaFGTS{
background-color: #ffffff33;
border-radius: 15px;
padding: 10px 15px;
}

/* Estilos para os campos de entrada */
#nomeCliente, #telefoneCliente {
    text-transform: uppercase;
    font-size: 100%;
    width: 90%;
    max-width: 70%;
    padding: 1em;
    border: none;
    outline: none;
    border-radius: 15px;
    background-color: #cccccc52;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
    transition: 300ms ease-in-out;
    font-weight: bold;
    letter-spacing: 1px;
}

#nomeCliente:focus, #telefoneCliente:focus {
    background-color: white;
    transform: scale(1.05);
    box-shadow: 2px 5px 10px rgba(0,0,0,0.3);
    font-weight: bolder;
    letter-spacing: 2px;
}

/* Estilos para a imagem e caixa de texto */
.tipoWhats {
    display: inline-flex;
    align-items: flex-start;
    border-radius: 10px;
    padding: 3%;
    width: 89%;
}

.foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.caixa-texto {
    background-color: rgba(255, 255, 255, 0.199);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animação para a div principal: fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animação para os botões: scale elastic */
@keyframes scaleElastic {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    60% {
        transform: scale(1.1);
        opacity: 1;
    }
    80% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

/* Classe para iniciar a animação fade-in */
.fade-in {
    animation: fadeIn 2s forwards;
}

/* Classe para definir o estado inicial dos botões */
.hidden-button {
    opacity: 0;
    transform: scale(0.3);
}

/* Classe para iniciar a animação scaleElastic */
.scale-elastic {
    animation: scaleElastic 0.6s forwards;
}

/* Desabilita a seleção de texto e o callout em botões e seus elementos filhos */
.botoesWhats, 
.botoesWhats *, 
.profile-button, 
.profile-button * {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Padrão */
    -webkit-touch-callout: none; /* Desabilita callout no iOS */
}

.btn-voltar {
    margin-top: 10px;
    /* Centraliza o botão */
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%; /* Ajuste conforme necessário */
}



@media (max-width: 900px) {
    html{
    animation: moverFundo 200s linear infinite;
    }
    .profile-button {
    width: 80%;
    }
    .btn-voltar {
    width: 90%; /* Ajuste conforme necessário */
    }
}
