/* <!-- CSS Adicional para melhorias visuais --> */

    :root {
        --primary-color: #28a745;
        --secondary-color: #6c757d;
        --dark-color: #343a40;
        --light-color: #f8f9fa;
        --danger-color: #dc3545;
        --warning-color: #ffc107;
        --site-color: #2e9fff;

    }

    .botao-renajud{
        background-color: #1b83fa !important;
        color: #ffffff !important;
    }

    .botao-renajud:hover{
        background-color: #76bfff !important;
        color: #ffffff !important;
    }

    body {
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
    }

    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/bg-hero.jpg');
        background-size: cover;
        background-position: center;
        padding: 80px 0;
        color: white;
    }

    .feature-card {
        transition: transform 0.3s ease;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .cta-button {
        padding: 12px 30px;
        font-weight: 600;
        border-radius: 30px;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .testimonial {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        position: relative;
    }

    .testimonial::before {
        content: '"';
        font-size: 60px;
        color: rgba(0, 0, 0, 0.1);
        position: absolute;
        top: -10px;
        left: 10px;
    }

    .breadcrumb {
        background-color: transparent;
        padding: 10px 0;
    }

    .sticky-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
    }

    .section-heading {
        position: relative;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .section-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary-color);
    }

    .benefit-icon {
        font-size: 40px;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }

    .faq-question {
        padding: 15px;
        background-color: #f8f9fa;
        cursor: pointer;
        font-weight: 600;
    }

    .faq-answer {
        padding: 15px;
        display: none;
    }

    .service-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .service-card .card-header {
        background-color: var(--secondary-color);
        color: white;
        padding: 15px;
        text-align: center;
    }

    .service-card .card-body {
        background-color: white;
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .price-tag {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-color);
    }

    .countdown {
        background-color: var(--danger-color);
        color: white;
        padding: 10px;
        border-radius: 5px;
        margin: 15px 0;
        text-align: center;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }

    .trust-badge img {
        height: 40px;
        margin: 0 10px;
    }

    /* Lazy loading para imagens */
    .lazy-load {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .lazy-load.loaded {
        opacity: 1;
    }

    /* Melhorias para acessibilidade */
    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }

    .btn-card{
        padding: 0.15rem .25rem .2rem 0.12rem !important
    }

    /* Melhorias para mobile */
    @media (max-width: 768px) {
        .hero-section {
            padding: 50px 0;
        }

        .cta-button {
            width: 100%;
            margin-bottom: 10px;
        }

        .sticky-cta {
            width: 100%;
            right: 0;
            bottom: 0;
            padding: 10px;
        }
    }
    .bg-secondary{
        background-color: var(--site-color) !important;
    }
    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
        color: #ffffff !important;
    }

    .bg-section-consulta {
        --bs-bg-opacity: 1;
        background-color: rgb(84 169 255) !important;
    }
    .bg-section-consulta p.my-4 {
        font-size: 1.3em !important; /* Ajuste conforme necessário */
    }
    .font-price{
        font-size: 1.95em !important;
    }
    
    footer>:last-child {
    background-color: #04568e !important;
   }
   
   .bg-footer{
           background-color: #04568e !important;
   }
   }
