:root {
    --cor-primaria: #C3201E;
    --cor-secundaria: #2A2D34;
    --cor-destaque: #FFD700;
    --cor-texto: #ffffff;
    --success-color: #4BB543;
    --error-color: #FF3333;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--cor-bg-light);
    color: #333;
    margin: 0;
    overflow-x: hidden;
}
.navbar {
    background-color: var(--cor-secundaria);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1050;
    transition: all 0.3s ease;
}
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    color: var(--cor-texto);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.navbar-brand img { height: 35px; margin-right: 0.5rem; }
.navbar-nav .btn-login {
    background: var(--cor-destaque);
    color: var(--cor-secundaria);
    padding: 0.5rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.navbar-nav .btn-login:hover {
    background: #e6c200;
    transform: scale(1.05);
}
.navbar-toggler { border: none; color: var(--cor-texto); padding: 0.25rem 0.5rem; }
.navbar-toggler-icon-custom { font-size: 1.5rem; color: var(--cor-texto); }
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-primaria) 70%);
    color: var(--cor-texto);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 45, 52, 0.8) 0%, rgba(195, 32, 30, 0.8) 70%);
    animation: pulseGradient 6s infinite ease-in-out;
    z-index: 0;
    opacity: 0.5;
}
@keyframes pulseGradient {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}
.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 1rem;
}
.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.btn-hero {
    background: var(--cor-destaque);
    color: var(--cor-secundaria);
    padding: 0.8rem 2rem;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: pulseHero 2s infinite;
}
.btn-hero:hover {
    background: #e6c200;
    transform: scale(1.1);
}
@keyframes pulseHero {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.benefits-section {
    padding: 5rem 0;
    background: #fff;
}
.benefit-card {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: var(--cor-texto);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.benefit-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--cor-destaque);
}
.how-it-works-section {
    padding: 5rem 0;
    background: var(--cor-bg-light);
}
.steps-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 4rem;
}
.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2rem;
    width: 2px;
    background: rgba(195, 32, 30, 0.3);
    z-index: 0;
}
.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}
.step-number {
    width: 40px;
    height: 40px;
    background: var(--cor-primaria);
    color: var(--cor-texto);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    position: absolute;
    left: -4rem;
    z-index: 1;
}
.step-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: transform 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); }
.step-card h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--cor-primaria);
    margin-bottom: 0.5rem;
}
.step-card p { margin: 0; color: #555; }
.faq-section {
    padding: 5rem 0;
    background: #fff;
}
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: transparent;
}
.accordion-button {
    font-family: 'Poppins', sans-serif;
    background: var(--cor-secundaria);
    color: var(--cor-texto);
    padding: 1.25rem;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background: var(--cor-primaria);
    color: var(--cor-texto);
}
.accordion-button:focus { box-shadow: none; }
.accordion-body {
    background: var(--cor-bg-light);
    border-radius: 0 0 10px 10px;
    padding: 1.5rem;
}
.cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: var(--cor-texto);
    text-align: center;
    position: relative;
}
.cta-final h2 { font-family: 'Poppins', sans-serif; font-size: 2.5rem; }
.cta-final .btn { font-size: 1.25rem; padding: 0.8rem 2rem; }
.footer {
    background: var(--cor-secundaria);
    color: #adb5bd;
    padding: 3rem 0;
}
.footer a {
    color: #adb5bd;
    transition: color 0.3s ease;
}
.footer a:hover { color: var(--cor-destaque); }
.footer .social-icons i {
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}
.footer .social-icons i:hover { transform: scale(1.2); }
@media (max-width: 991.98px) {
    .navbar-brand { font-size: 1.25rem; }
    .navbar-brand img { height: 30px; }
    .navbar-nav { padding: 1rem; background: var(--cor-secundaria); }
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1.2rem; }
    .steps-container { max-width: 100%; padding-left: 3.5rem; }
    .steps-container::before { left: 1.5rem; }
    .step-number { left: -3.5rem; }
}
@media (max-width: 767.98px) {
    .navbar-brand { font-size: 1.1rem; }
    .navbar-brand img { height: 25px; }
    .navbar-nav .btn-login { padding: 0.4rem 1.2rem; font-size: 1rem; }
    .hero-section { height: 80vh; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section p { font-size: 1rem; }
    .btn-hero { padding: 0.6rem 1.5rem; font-size: 1rem; }
    .benefits-section, .how-it-works-section, .faq-section, .cta-final { padding: 3rem 0; }
    .benefit-card { margin-bottom: 1.5rem; }
    .steps-container { padding-left: 3rem; }
    .steps-container::before { left: 1rem; width: 1px; }
    .step-item { margin-bottom: 1.5rem; }
    .step-number { width: 30px; height: 30px; font-size: 1.2rem; left: -3rem; }
    .step-card { padding: 1rem; }
    .cta-final h2 { font-size: 2rem; }
    .cta-final .btn { padding: 0.6rem 1.5rem; font-size: 1rem; }
}
@media (max-width: 575.98px) {
    .hero-section h1 { font-size: 1.8rem; }
    .hero-section p { font-size: 0.9rem; }
    .btn-hero { padding: 0.5rem 1.2rem; font-size: 0.9rem; }
    .benefit-card { padding: 1.5rem; }
    .benefit-card i { font-size: 2rem; }
    .steps-container { padding-left: 2.5rem; }
    .step-number { left: -2.5rem; }
}

.cadastro-form {
    max-width: 900px;
    width: 100%;
    border-radius: 15px;
    background: white;
}

.form-control:focus {
    border-color: var(--cor-primaria);
    box-shadow: 0 0 5px rgba(195, 32, 30, 0.5);
}

.toggle-password {
    top: 38px;
    right: 15px;
    cursor: pointer;
}

.next-btn, .prev-btn, .submit-btn {
    min-width: 120px;
}

@media (max-width: 576px) {
    .cadastro-form {
        margin: 10px;
        padding: 15px;
    }
    .btn-hero, .next-btn, .prev-btn, .submit-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.list-group-item {
    font-size: 14px;
}


main {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    min-height: 100vh;
    padding: 2rem 0;
}

.register-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1200px) {
    .register-container {
        max-width: 100%;
        padding: 0 2rem;
    }
}

.register-card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.card-header h4 {
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 2rem;
    background-color: white;
}

.form-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.section-title i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

.form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(195, 32, 30, 0.25);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.file-upload-area {
    background: #f8f9fa;
    border: 2px dashed #e0e0e0;
    transition: all 0.3s;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: #f0f0f0;
}

.file-item {
    transition: all 0.3s;
}

.file-item:hover {
    background: #e9ecef;
}

.alert {
    border-radius: 6px;
    padding: 1rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.toggle-password {
    cursor: pointer;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-height: 45px;
    padding: 0.375rem 0.75rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--primary-color);
    border: none;
    color: white;
    border-radius: 4px;
    padding: 0 0.5rem;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: white;
    margin-right: 0.25rem;
}

/* Modal LGPD */
.modal-header {
    background: var(--primary-color);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-footer .btn-primary {
    background-color: var(--primary-color);
}

.modal-footer .btn-primary:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .register-container {
        padding: 1rem;
    }
    .card-body, .form-section {
        padding: 1rem;
    }
    .btn-lg {
        width: 100%;
    }
    .modal-dialog {
        margin: 0.5rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .input-group-text {
        padding: 0.5rem;
    }
    .modal-body {
        padding: 1rem;
    }
}