:root {
    --primary-color: #003366; 
    --secondary-color: #f4f4f4;
    --text-color: #333;
    --border-color: #ccc;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px; /* Expandido para acomodar o form maior */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    color: #000;
    margin: 0;
    font-size: 1.5rem;
}

.social-icons .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: white;
    text-decoration: none;
    margin-left: 5px;
    font-weight: bold;
    font-size: 14px;
}
.social-icons .facebook { background-color: #3b5998; }
.social-icons .twitter { background-color: #00aced; }
.social-icons .linkedin { background-color: #007bb6; }

.lembrete {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

h2 {
    color: #000;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #666;
    transition: all 0.3s;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"], 
input[type="email"], 
textarea, 
select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
}

.disabled-input {
    background-color: #eee;
    color: #888;
}

.radio-group {
    margin-bottom: 15px;
}

.radio-group label {
    display: inline-block;
    margin-right: 15px;
    font-weight: normal;
}

.radio-group label:first-child {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.submit-container {
    text-align: left;
    margin-top: 20px;
}

.btn-submit {
    padding: 10px 30px;
    background: transparent;
    color: #d11242; /* Cor rosa/vermelha como na imagem */
    border: 2px solid #d11242;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d11242;
    color: #fff;
}

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #002244;
}

.result-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.result-message.success {
    display: block;
    background-color: #d4edda;
    color: var(--success-color);
    border: 1px solid #c3e6cb;
}

.result-message.error {
    display: block;
    background-color: #f8d7da;
    color: var(--error-color);
    border: 1px solid #f5c6cb;
}

.result-box {
    margin-top: 15px;
    padding: 15px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hidden {
    display: none;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: bold;
}
