:root {
    --primary-color: #0056b3;
    --secondary-color: #003d82;
    --accent-color: #e8f3ff;
    --text-color: #2c3e50;
    --light-text: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 45px;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar .btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Animação do Texto */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animação da Imagem */
.animate-slide-left {
    opacity: 0;
    transform: translateX(100px);
    animation: slideLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Estilos do Conteúdo */
.hero-text-wrapper {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Botão com Efeito */
.btn-hover-slide {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-hover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-hover-slide:hover::before {
    transform: translateX(100%) rotate(45deg);
}

/* Imagem e Elementos Flutuantes */
.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image-inner {
    transform-style: preserve-3d;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }
    25% {
        transform: translateY(-10px) rotateY(2deg);
    }
    75% {
        transform: translateY(10px) rotateY(-2deg);
    }
}

.hero-image {
    border-radius: 20px;
}

/* Elementos Flutuantes */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-element i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.fe-1 {
    top: 20%;
    left: -25px;
    animation-delay: 0s;
}

.fe-2 {
    top: 50%;
    right: -25px;
    animation-delay: 1s;
}

.fe-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    75% {
        transform: translateY(15px) rotate(-5deg);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .floating-element {
        width: 40px;
        height: 40px;
    }

    .floating-element i {
        font-size: 1.25rem;
    }
}
.navbar-toggler {
    display: none!important;
}
@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .animate-slide-right,
    .animate-slide-left {
        transform: translateX(0);
        animation: fadeIn 1s ease forwards;
        display: hidden;
        margin-top: 29px;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .hero-image-wrapper {
        margin-top: 2rem;
                overflow: hidden;
    }
}

/* Seções Gerais */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards e Boxes */
.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Botões */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Planos Section */
.pricing-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #2196f3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.pricing-title {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.pricing-features-title {
    color: #444;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(33, 150, 243, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 1rem 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.pricing-features li i {
    color: #2196f3;
    margin-right: 1rem;
    font-size: 1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-features li:hover i {
    background: #2196f3;
    color: white;
    transform: scale(1.1);
}

.pricing-footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.pricing-footer .btn {
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pricing-footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.pricing-footer .btn:hover::before {
    transform: translateX(0);
}

@media (max-width: 991.98px) {
    .pricing-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .pricing-card {
        padding: 1.75rem;
    }
    
    .pricing-features-title {
        font-size: 0.9rem;
    }
    
    .pricing-features li {
        padding: 0.875rem 0;
    }
}

/* Seção de Contato */
.contact-section {
    background-color: var(--accent-color);
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(33, 150, 243, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(33, 150, 243, 0.1);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.contact-item div {
    flex: 1;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #2196f3;
}

.contact-description {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-description img {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-description img:hover {
    transform: scale(1.02);
}

.contact-description p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .contact-info {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 0.875rem;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-info {
        padding: 1.25rem;
    }

    .contact-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Sobre Section */
.about-content {
    padding-right: 2rem;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Missão, Visão e Valores */
.mvv-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #2196f3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mvv-card:hover::before {
    opacity: 1;
}

.mvv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    transform: rotateY(360deg);
    background: var(--primary-color);
}

.mvv-icon i {
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon i {
    color: #fff;
}

.mvv-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mvv-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.mvv-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Clientes Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-item {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    border: 1px solid var(--border-color);
}

.client-item:hover {
    filter: grayscale(0%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
}

.client-item img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .mvv-card {
        margin-bottom: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .client-item {
        padding: 1rem;
    }

    .client-item img {
        max-height: 40px;
    }
}

/* Animações */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilitários */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Form Elements */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
}

/* Imagens e Mídia */
.img-fluid {
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
a {
    text-decoration: none !important;
}
.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Animações Globais */
[data-aos] {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Ajustes para telas menores */
@media (max-width: 991.98px) {
    .mvv-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .mvv-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .mvv-icon i {
        font-size: 2.5rem;
    }

    .mvv-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .mvv-card {
        padding: 1.75rem;
    }

    .mvv-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .mvv-icon i {
        font-size: 2rem;
    }
}

/* Estilos para a seção de depoimentos */
#depoimentos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffd700;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Estilos para a seção de simulação */
.simulation-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.simulation-step {
    display: none;
}

.simulation-step.active {
    display: block;
    animation: slideIn 0.5s ease forwards;
}

.step-title {
    text-align: center;
    margin-bottom: 30px;
    color: #343a40;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.option-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: #007bff;
    background-color: #f8f9fa;
}

.option-card i {
    font-size: 2em;
    color: #007bff;
    margin-bottom: 10px;
}

.option-card span {
    display: block;
    font-size: 1.1em;
    color: #495057;
}

.step-tip {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    align-items: start;
    gap: 15px;
}

.step-tip i {
    color: #007bff;
    font-size: 1.2em;
}

.step-tip p {
    margin: 0;
    color: #6c757d;
}

.checkbox-option input[type="checkbox"] {
    display: none;
}

.privacy-text {
    font-size: 0.9em;
    color: #6c757d;
    text-align: center;
}

/* Estilos para o formulário final */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .options-container {
        grid-template-columns: 1fr;
    }
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    margin-left: 8px;
}

.loading-spinner i {
    color: #fff;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.toast-content {
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.toast-content i {
    font-size: 18px;
}

.toast-content.success {
    background-color: #28a745;
}

.toast-content.error {
    background-color: #dc3545;
}

.toast-message {
    font-size: 14px;
}

/* Animações */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Navegação */
.simulation-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Estilos para o simulador */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#step-final .form-group {
    margin-bottom: 20px;
}

#step-final label {
    font-weight: 500;
    margin-bottom: 5px;
}

#step-final input[type="tel"],
#step-final input[type="number"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

#btnEnviarSimulacao {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    margin-top: 20px;
} 