/* Estilos Gerais */
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #555;
    margin: 0;
    padding: 20px;
}


/* --- CONFIGURAÇÃO DA TRADUÇÃO AUTOMÁTICA --- */

/* Esconde a barra superior que o Google coloca no site */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Estiliza o container do seletor para ficar alinhado à direita */
#google_translate_element {
    text-align: right;
    padding: 10px;
    margin-bottom: 10px;
}

/* Deixa o seletor com uma aparência mais limpa e profissional */
.goog-te-gadget-simple {
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    cursor: pointer;
    display: inline-block !important;
}

/* Remove o ícone padrão do Google para ficar mais discreto */
.goog-te-gadget-icon {
    display: none !important;
}



.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border: 1px dashed #ccc; /* Bordas pontilhadas como nas imagens */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Barra de Progresso */
.progress-bar-container {
    margin-bottom: 40px;
    position: relative;
}

.progress-bar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    font-weight: bold;
}

.progress-bar li {
    width: 19%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.progress-bar li.active {
    color: #008080; /* Cor teal do título ativo */
}

/* Bolinhas e Linha */
.progress-bar li::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #999; /* Cor das bolinhas inativas */
    display: block;
    margin: 0 auto 5px auto;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ccc;
}

.progress-bar li.active::before {
    background-color: #00a0a0; /* Azul claro ativo da imagem */
    box-shadow: 0 0 0 1px #00a0a0;
}

.progress-line {
    position: absolute;
    top: 25px; /* Alinhamento com as bolinhas */
    left: 8%;
    right: 8%;
    height: 3px;
    background-color: #d1eded; /* Azul muito claro inativo */
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background-color: #76ff03; /* Verde lima ativo da imagem */
    transition: width 0.3s ease;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

/* Elementos de Formulário */
.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 6px;
    color: #666;
}

.required {
    color: #d32f2f;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #eee; /* Cor de fundo cinza dos inputs nas imagens */
    border-radius: 0; /* Bordas quadradas */
    font-size: 14px;
    box-sizing: border-box;
    color: #333;
}

/* Estilo para seletores nativos para parecerem com a imagem */
select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 12px auto;
    padding-right: 30px;
}

/* Rows de formulário */
.form-row {
    display: flex;
    gap: 15px;
}

.col-md-8 { width: 66.66%; }
.col-md-6 { width: 50%; }
.col-md-4 { width: 33.33%; }

/* Info Box (Etape 1) */
.info-box {
    margin: 25px 0;
    font-size: 14px;
}

.info-box p {
    margin: 6px 0;
}

/* Note Importante (Etape 3) */
.important-note {
    font-weight: bold;
    font-size: 14px;
    color: #004d40;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Navegação e Botões */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.single-next {
    justify-content: flex-end;
}

button {
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.btn-suivant, .btn-submit {
    background-color: #00796b; /* Teal escuro */
    color: white;
}

.btn-retour {
    background-color: #00796b;
    color: white;
}

.btn-terminer {
    background-color: #007bbf; /* Azul de finalizar */
}

/* Estilos de upload (Etape 5) */
.upload-drop-zone {
    border: 1px solid #ddd;
    background-color: #eee;
    padding: 40px;
    text-align: center;
    font-size: 13px;
}

.upload-icon {
    width: 40px;
    margin-bottom: 15px;
}

.choose-files-link {
    color: #007bbf;
    cursor: pointer;
    text-decoration: underline;
}

.file-name-display {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #777;
}

/* Alerts */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 3px;
    font-size: 14px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}