/* Estilo para o corpo da página */
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 50px 15px 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F4F6 !important;
    flex-direction: column;
}
h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700 !important; /* Para Montserrat */
    font-size: 25px !important;
    font-weight: bold; /* Para fallback */
    padding-bottom: 20px;
}
/* Container do Formulário */
.form-container {
    width: 100%;
    max-width: 700px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    border-bottom: 10px solid #00b545;
    position: relative;
    overflow: hidden;




}
/* Botões Modernos */
.modern-button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #0064e0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modern-button:hover {
    background-color: #004bb5;
    transform: scale(1.05);
}
.modern-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
.modern-button-voltar {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #e00f00;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modern-button-voltar:hover {
    background-color: #940d03;
    transform: scale(1.05);
}
.modern-button-voltar:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}
/* Botões de Serviço */
.buttons-service {
    display: flex;
    flex-wrap: wrap; /* Permite a quebra dos botões */
    gap: 10px;
    padding: 0 0 20px 0;
    justify-content: center;
}
.buttons-service button {
    flex: 1 1 calc(50% - 10px); /* Garante dois por linha */
    min-width: 150px; /* Ajuste conforme necessário */
}
@media (max-width: 500px) { /* Ajuste o tamanho conforme necessário */
    .buttons-service button {
        flex: 1 1 100%; /* Um botão por linha */
    }
}
.service-btn {
    flex: 1;
    padding: 15px 20px;
    background-color: #0064e0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-align: center;
}
.service-btn:hover {
    background-color: #004bb5;
    transform: scale(1.05);
}
.service-btn.active {
    background-color: #cccccc;
    color: #333333;
    cursor: not-allowed;
}
/* Linha do Tempo */
.timeline {
    text-decoration: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 40px;
}
.timeline-step {
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: background-color 0.3s, transform 0.3s;
    margin: 0 10px;
}
@media (max-width: 640px) {
    .timeline-step {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}
.timeline-step.active {
    background-color: #449e50;
    transform: scale(1.2);
}
.timeline-step:not(.active):hover {
    background-color: #77c68a;
}
/* Estilo para as etapas */
.decoration-none {
    text-decoration: none;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
/* Container do input */
.input-container {
    position: relative;
    margin-bottom: 15px;


}
input,
select,
textarea {
    width: 100%;
    padding: 22px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 16px;

}
input:focus,
select:focus,
textarea:focus {
    border-color: #0064e0;
    outline: none;
   }
/* Label dentro do input */
label {
    position: absolute;
    /*top: 12px;
    left: 16px;*/
    font-size: 16px;
    background-color: white;
    padding: 0 5px 5px 5px;
    color: #aaa;
    transition: all 0.3s ease;
}
/* Efeito para o label quando o campo é focado */
input:focus + label,
select:focus + label,
textarea:focus + label {
    /*top: -10px;
    left: 10px;*/
    font-size: 12px;
    color: #0064e0;
  }
/* Estilo para o campo de anexo */
input[type="file"] {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Esconde o botão padrão de input file */
}
/* Customizando o botão de anexar */
label[for="fileUpload"] {
    display: inline-block;
    position: relative;
    background-color: #449e50; /* Cor verde */
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 0;
    text-align: center;
    width: 100%;
}
/* Efeito de hover para o botão de anexar */
label[for="fileUpload"]:hover {
    background-color: #377a3a;
    transform: scale(1.05);
}
/* Estilo do label (quando o botão não for o foco) */
label[for="fileUpload"]:active {
    background-color: #357a3f;
}
.logo {
    display: block; /* Necessário para centralizar elementos inline, como imagens */
    width: 80%;
    margin: 0 auto;
    max-width: 500px;
}
/* Estilo do botão das etapas quando estiver selecionado (etapa 4) */
.service-btn {
    background-color: #999; /* Azul destaque */
    color: white;
    border: 0px;
}
.service-btn:hover {
    background-color: #666; /* Azul destaque */
    color: white;
    border: 0px;
}
.service-btn.active {
    background-color: #449e50; /* Azul destaque */
    color: white;
    border: 0px;
}
.service-content {
    margin: 0 0 20px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    padding: 20px;
}
.titulo-formulario{
    font-size: 14px;
    margin: 15px 0 0 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600 !important;
    color: #020202;
}
.copyright{
    padding-top: 50px;
    color: #999;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    text-align: center;
}
/* padding-bottom: 20px; border-bottom: 1px solid #CCCCCC; */
.minha-localizacao {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #e0000b;
    margin-bottom: 10px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-voltar {
    padding-top: 40px;
}
#msgError {
    padding: 5px 20px !important;
    background: red;
    color: white;
    display:none;
    border-radius:999px;
    margin-top: 0;
    margin-bottom: 0 !important;
}
#loader {
    width: 200px; /* Define largura fixa */
    height: 200px; /* Define altura fixa */
    position: fixed;
    top: 50%; /* Centraliza verticalmente */
    left: 50%; /* Centraliza horizontalmente */
    transform: translate(-50%, -50%); /* Ajuste para centralização */
    display: none; /* Flexbox para centralizar os itens */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(30, 30, 30, 0.8));
    border-radius: 20px; /* Bordas arredondadas */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6); /* Adiciona sombra */
    z-index: 50;
}
/* Estilo do container interno */
#loader .inner-container {
    display: flex;
    flex-direction: column;
    padding: 40px;
    justify-content: center;
    align-items: center;
}
/* Estilo do SVG */
#loader .spinner {
    width: 3rem; /* Maior largura */
    height: 3rem; /* Maior altura */
    border: 4px solid rgba(255, 255, 255, 0.3); /* Borda externa opaca */
    border-top: 4px solid #ffffff; /* Borda superior brilhante */
    border-radius: 50%; /* Faz o spinner ser circular */
    animation: spin 1s linear infinite; /* Animação de rotação */
}
/* Animação de rotação */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* Estilo do texto */
#loader .text {
    margin-top: 1rem; /* Espaço acima do texto */
    font-size: 1.25rem; /* Tamanho do texto */
    font-weight: 500; /* Peso da fonte */
    color: white; /* Cor branca */
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5); /* Adiciona sombra ao texto */
    animation: fadeIn 2s infinite ease-in-out; /* Animação de suavização */
}
/* Animação de suavização do texto */
@keyframes fadeIn {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}
