.at-seo-home { padding: 80px 0; background-color: #f9f9f9; }

    /* Barra vertical com gradiente conforme a imagem */
    .at-seo-home__bar {
        width: 15px;
        height: 100%;
        min-height: 350px;
        background: linear-gradient(to bottom, #b8d27a, #8dbf9a, #73a9c2);
        border-radius: 20px;
    }

    .at-seo-home__title {
        color: #b8d27a; /* Cor verde do título */
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .at-seo-home__content {
        color: #666;
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 40px;
        max-width: 90%;
    }

    /* Estilo das Tags */
    .at-seo-home__tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .at-seo-tag {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 25px;
        padding: 8px 18px;
        font-size: 14px;
        color: #777;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .at-seo-tag:hover {
        background-color: #b8d27a;
        color: #fff;
        border-color: #b8d27a;
    }

    @media (max-width: 991px) {
        .at-seo-home__content { max-width: 100%; }
        .at-seo-home__bar { display: none; } /* Oculta a barra no mobile ou ajusta */
    }