/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: linear-gradient(135deg, #0a1a33 0%, #0c2340 100%); /* Azul petróleo com gradiente */
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 800px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    position: relative;
    background: rgba(10, 26, 51, 0.7); /* Fundo semi-transparente */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1); /* Borda dourada sutil */
}

/* Estilos do logo */
.logo-container {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5)); /* Brilho dourado sutil */
}

/* Estilos do conteúdo do formulário */
#form-content {
    width: 100%;
    min-height: 300px;
    margin-bottom: 30px;
}

.question {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.question.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.question-label {
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff; /* Texto em branco */
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.question-number {
    color: #D4AF37; /* Números em dourado */
    margin-right: 10px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.7); /* Brilho dourado */
}

/* Estilos dos campos de entrada */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3); /* Borda dourada sutil */
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
    border-color: #D4AF37; /* Borda dourada ao focar */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); /* Brilho dourado ao focar */
}

textarea {
    min-height: 150px;
    resize: vertical;
}

/* Estilos das opções de múltipla escolha */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 18px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.radio-option:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.radio-option.selected {
    background-color: rgba(212, 175, 55, 0.2); /* Dourado com transparência */
    border: 1px solid #D4AF37; /* Borda dourada */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); /* Brilho dourado */
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-option-label {
    margin-left: 10px;
    font-size: 16px;
}

.option-letter {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(145deg, #D4AF37, #FFD700); /* Gradiente dourado */
    text-align: center;
    line-height: 36px;
    margin-right: 15px;
    color: #0c2340; /* Texto em azul petróleo */
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* Estilos dos botões de navegação */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.nav-btn {
    padding: 15px 30px;
    background: linear-gradient(145deg, #D4AF37, #FFD700); /* Gradiente dourado */
    color: #0c2340; /* Texto em azul petróleo */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
    transition: all 0.5s ease;
    z-index: -1;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

#submit-btn {
    background: linear-gradient(145deg, #FFD700, #D4AF37); /* Gradiente dourado invertido */
}

/* Indicador de progresso */
.progress-indicator {
    margin-top: 40px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(10, 26, 51, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Tela de agradecimento */
.thank-you-screen {
    text-align: center;
    display: none;
}

.thank-you-screen.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

.thank-you-screen h2 {
    font-size: 36px;
    margin: 30px 0;
    color: #D4AF37; /* Título em dourado */
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5); /* Brilho dourado */
    font-weight: 700;
    letter-spacing: 1px;
}

.thank-you-screen p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.mentores-image {
    margin: 30px 0;
    text-align: center;
}

.mentores-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .question-label {
        font-size: 22px;
    }
    
    .nav-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    .thank-you-screen h2 {
        font-size: 30px;
    }
    
    .thank-you-screen p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0;
    }
    
    .container {
        padding: 10px;
        min-height: 100vh;
    }
    
    .form-container {
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .question-label {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        padding: 15px;
        font-size: 16px;
    }
    
    .radio-option {
        padding: 15px;
    }
    
    .option-letter {
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 10px;
    }
    
    .nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .thank-you-screen h2 {
        font-size: 26px;
    }
    
    .thank-you-screen p {
        font-size: 16px;
    }
}
