/* Estilos Globais */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.titulo-secao {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.descricao-secao {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
textarea,
button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

input[type="checkbox"] {
    margin-right: 0.5rem;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

button:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
}

.error-text {
    color: red;
    font-size: 0.875rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.success, .error {
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
}

.success { color: green; }
.error { color: red; }

/* Layout do Formulário */
.painel-parceiro-container,
.parceiro-cadastro-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.painel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.painel-header h1 {
    font-size: 1.5rem;
}

.painel-logout {
    text-decoration: none;
    color: #e74c3c;
    font-weight: bold;
}

.secao {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .painel-colunas {
        flex-direction: column;
    }

    .painel-form-grupo {
        width: 100%;
    }
}

.termo-conteudo {
    width: 100%;
    height: 300px;
    padding: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    background-color: #f8f8f8;
}