        /* UI/UX Melhorada */
        .hero-section {
            background: url('caminho-da-imagem-de-fundo.jpg') center/cover no-repeat;
            color: white;
            padding: 80px 20px;
            text-align: center;
            border-radius: 10px;
        }

        .blog-post img {
            border-radius: 10px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Ajuste das imagens dos Outros Serviços */
        .other-services img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0; /* Garante que a imagem não aumente */
        }

        .other-services a {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .other-services div {
            margin-left: 10px;
            flex-grow: 1;
        }

        .artigo-content {
            border-left: 5px solid #8dbf41;
            padding-left: 15px;
            margin-top: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

        .artigo-content p {
            margin-bottom: 15px;
        }


 
    /* HERO SECTION ESTILIZADA */
    .hero-section {
        position: relative;
        background: url('imagens/banner-principal/banner-01.jpg') center/cover no-repeat;
        color: white;
        padding: 120px 20px;
        text-align: center;
        border-radius: 10px;
        overflow: hidden;
    }

    /* Overlay para contraste */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    /* Conteúdo dentro do hero */
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: auto;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        animation: fadeInUp 1.2s ease-in-out;
    }

    /* Animação de entrada */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Estilização do artigo */
    .artigo-content {
        border-left: 5px solid #8dbf41;
        padding: 20px;
        margin-top: 30px;
        font-size: 17px;
        line-height: 1.8;
        background: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease-in-out;
    }

    .artigo-content:hover {
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    }

    /* Imagens dos Outros Serviços */
    .other-services img {
        width: 70px;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .other-services a {
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 12px;
        border-bottom: 1px solid #ddd;
        transition: 0.3s;
    }

    .other-services a:hover {
        background: #f5f5f5;
        border-radius: 6px;
    }

    .other-services div {
        margin-left: 12px;
        flex-grow: 1;
    }