body {
    background: linear-gradient(180deg, rgba(171, 227, 241, 1) 0%, rgba(249, 254, 255, 1) 100%); /* Gradiente por cima */
    background-size: cover;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-style: italic;
}
.disclaimer {
    background-color: #e8f4fc;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9em;
    border-left: 4px solid #3498db;
}
.section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.section-title {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #3498db;
    font-size: 1.1em;
}
.question {
    margin-bottom: 20px;
}
.question-text {
    font-weight: bold;
    margin-bottom: 10px;
}
.options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}
.option {
    display: flex;
    align-items: center;
}
.option input {
    margin-right: 8px;
}
.text-input {
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 5px;
    width: 200px;
}
textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}
.thank-you {
    background-color: #e8f6f3;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    font-style: italic;
    border-left: 4px solid #27ae60;
}
.submit-btn {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
}
.submit-btn:hover {
    background-color: #2980b9;
}
.required {
    color: red;
}
.inline-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.sub-question {
    margin-bottom: 15px;
    padding-left: 10px;
}
.outras-field {
    display: none;
}
.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}
