/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cores do gov.br */
:root {
    --primary-blue: #1351B4;
    --primary-yellow: #FFCD07;
    --dark-blue: #071D41;
    --light-blue: #C5D4EB;
    --text-dark: #333333;
    --text-light: #ffffff;
    --surface-light: #ffffff;
    --surface-alt: #f8f8f8;
    --success-green: #168821;
    --error-red: #E52207;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB400 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Rawline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--surface-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    color: var(--text-light);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background: var(--surface-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--surface-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.benefit-number {
    background: var(--gradient-secondary);
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-dark);
    opacity: 0.8;
}

/* Process Steps */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    background: var(--gradient-primary);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    color: var(--success-green);
    font-weight: bold;
}

/* Form */
.contact-form {
    background: var(--surface-light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(19, 81, 180, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-logo-text {
    font-weight: 600;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .nav {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.feature-card,
.benefit-item,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.registration-form {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(19, 81, 180, 0.1);
}

.form-group input:invalid {
    border-color: var(--error-red);
}

.form-group input:valid {
    border-color: var(--success-green);
}

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
}

.radio-label:hover {
    background: var(--surface-alt);
}

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

.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.radio-label input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
}

/* Checkboxes */
.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.checkbox-label:hover {
    background: var(--surface-alt);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Form Links */
.checkbox-label a,
.form-group a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.checkbox-label a:hover,
.form-group a:hover {
    color: var(--dark-blue);
}

/* Form Validation Messages */
.form-error {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-success {
    color: var(--success-green);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.loading {
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Form Design */
@media (max-width: 768px) {
    .registration-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-section-title {
        font-size: 1.25rem;
    }
    
    .radio-group,
    .checkbox-group {
        gap: 0.75rem;
    }
    
    .radio-label,
    .checkbox-label {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .form-container {
        margin: 0 -10px;
    }
    
    .registration-form {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Form Animation */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    animation: formSlideIn 0.6s ease forwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes formSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Missão, Visão e Valores Section */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.mvv-card {
    background: var(--surface-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.mvv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.mvv-card-full {
    grid-column: 1 / -1;
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.mvv-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mvv-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: left;
}

.valores-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.valor-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--surface-alt);
    border-radius: 8px;
    transition: var(--transition);
}

.valor-item:hover {
    background: var(--light-blue);
}

.valor-bullet {
    color: var(--success-green);
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.valor-item strong {
    color: var(--primary-blue);
}

/* Diferencial Competitivo Section */
.diferencial-content {
    max-width: 900px;
    margin: 0 auto;
}

.diferencial-text {
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.diferencial-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: justify;
}

.diferencial-block {
    background: var(--surface-alt);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.diferencial-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.diferencial-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

.diferencial-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pillar-card {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pillar-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pillar-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    text-align: justify;
}

.diferencial-conclusion {
    background: var(--gradient-secondary);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.diferencial-conclusion p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Novo Badge Veritas Ledger - Identidade Visual Corrigida */
.veritas-badge-new {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-yellow);
}

.veritas-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.veritas-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.veritas-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.veritas-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.veritas-text a {
    color: var(--primary-yellow);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.veritas-text a:hover {
    color: var(--text-light);
}

/* Responsive Design para novas seções */
@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .mvv-card-full {
        grid-column: 1;
    }
    
    .diferencial-pillars {
        grid-template-columns: 1fr;
    }
    
    .diferencial-text {
        padding: 2rem 1.5rem;
    }
    
    .veritas-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mvv-card {
        padding: 1.5rem;
    }
    
    .mvv-title {
        font-size: 1.5rem;
    }
    
    .diferencial-block {
        padding: 1.5rem;
    }
    
    .diferencial-subtitle {
        font-size: 1.25rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
    }
}

/* Parceiros Section */
.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.parceiro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--surface-light);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 200px;
}

.parceiro-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.parceiro-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.parceiro-card:hover .parceiro-logo {
    filter: grayscale(0%);
}

.parceiro-nome {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.parceiro-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.parceiro-link:hover {
    text-decoration: underline;
    color: var(--dark-blue);
}

/* Notícias Section */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.noticia-card {
    background: var(--surface-light);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.noticia-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.noticia-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.noticia-fonte {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    align-self: flex-start;
}

/* Correção de Legibilidade para Formulário de Licenciados */
/* Garante que o texto dentro do formulário de licenciados (que está em uma seção de fundo claro) seja escuro */
#licenciados .contact-form label,
#licenciados .contact-form p,
#licenciados .contact-form h3,
#licenciados .contact-form .form-group input[type="checkbox"] + label {
    color: var(--text-dark) !important;
}

/* Garante que o texto dos checkboxes e radios seja visível */
#licenciados .contact-form .checkbox-group label,
#licenciados .contact-form .radio-group label {
    color: var(--text-dark);
}
