
.blog-page *,
.blog-page *::before,
.blog-page *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blog-page {
    --orange: #ff7900;
    --orange2: #ff9635;
    --black: #000;
    --dark: #080b0e;
    --dark2: #0d1216;
    --white: #fff;
    --muted: #a8afb5;
    font-family: 'Poppins', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.blog-page img {
    display: block;
    max-width: 100%;
}

.blog-page a {
    text-decoration: none;
    color: inherit;
}

.blog-page ul {
    list-style: none;
}

.blog-page button {
    font: inherit;
}

.blog-page .container {
    width: min(94%, 1400px);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.blog-page header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(8, 11, 14, .90);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.blog-page .header-inner {
    height: 60px;
    display: flex;
    align-items: center;
}

.blog-page .logo img {
    width: 200px;
    margin-right: 50px;
}

.blog-page nav {
    margin-left: auto;
    margin-right: 25px;
}

.blog-page nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.blog-page nav a {
    position: relative;
    color: #fff;
    font-size: 13px;
    transition: .25s;
}

.blog-page nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: .25s;
}

.blog-page nav a:hover::after,
.blog-page nav a.active::after {
    width: 100%;
}

.blog-page .btn-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    color: #fff;
    border: 2px solid var(--orange);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    transition: .3s;
}

.blog-page .btn-header:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.blog-page .menu-btn {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.blog-page .blog-hero {
    position: relative;
    min-height: 420px;
    padding-top: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #090d10;
}

.blog-page .blog-hero-bg {
    position: absolute;
    inset: 60px 0 0;
    background:
        linear-gradient(
            90deg,
            rgba(7,10,13,.98),
            rgba(7,10,13,.82),
            rgba(7,10,13,.45)
        ),
        url("../img/bg.png")
        center / cover no-repeat;
}

.blog-page .blog-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.blog-page .blog-hero-content > span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.blog-page .blog-hero h1 {
    max-width: 700px;
    margin: 12px 0 15px;
    font-size: 48px;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.blog-page .blog-hero h1 strong {
    color: var(--orange);
}

.blog-page .blog-hero p {
    max-width: 620px;
    color: #c3c7ca;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   CATEGORIAS
========================================================= */

.blog-page .categories {
    background: #10161a;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.blog-page .category-list {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
}

.blog-page .category {
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 4px;
    color: #aeb4b8;
    font-size: 10px;
    white-space: nowrap;
    transition: .25s;
}

.blog-page .category:hover,
.blog-page .category.active {
    color: #fff;
    background: var(--orange);
    border-color: var(--orange);
}


/* =========================================================
   CONTEÚDO DO BLOG
========================================================= */

.blog-page .blog-content {
    padding: 70px 0 70px;
    background: #000;
}


/* =========================================================
   POST EM DESTAQUE
========================================================= */

.blog-page .featured-post {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    min-height: 330px;
    margin-bottom: 65px;
    overflow: hidden;
    border-radius: 8px;
    background: #0d1216;
}

.blog-page .featured-image {
    position: relative;
    min-height: 330px;
    overflow: hidden;
}

.blog-page .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .75;
}

.blog-page .post-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    padding: 7px 10px;
    background: var(--orange);
    color: #fff;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 700;
}

.blog-page .featured-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-page .featured-info > small {
    color: var(--orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-page .featured-info h2 {
    margin: 10px 0 14px;
    font-size: 27px;
    line-height: 1.25;
}

.blog-page .featured-info p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.blog-page .post-meta {
    display: flex;
    gap: 20px;
    margin: 18px 0;
}

.blog-page .post-meta span {
    color: #858d92;
    font-size: 8px;
}

.blog-page .post-meta i {
    color: var(--orange);
    margin-right: 5px;
}

.blog-page .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 15px;
    color: #fff;
    background: var(--orange);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    transition: .25s;
}

.blog-page .read-more:hover {
    background: var(--orange2);
    transform: translateY(-2px);
}


/* =========================================================
   TÍTULO DA SEÇÃO
========================================================= */

.blog-page .section-title {
    margin-bottom: 30px;
}

.blog-page .section-title span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.blog-page .section-title h2 {
    margin-top: 15px;
    color: #fff;
    font-size: 25px;
}


.blog-page .posts-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 30px;
}


.blog-page .post-card {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: transparent ;
    border: none ;
    border-radius: 0 ;
    box-shadow: none ;
    cursor: pointer;
    transition: transform .3s ease;
}

.blog-page .post-card:hover {
    transform: translateY(-5px);
    border: none ;
    box-shadow: none ;
}


/* =========================================================
   IMAGEM DO POST
========================================================= */

.blog-page .post-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: transparent;
}

.blog-page .post-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition:
        transform .5s ease,
        opacity .5s ease;
}

.blog-page .post-card:hover .post-image img {
    transform: scale(1.06);
    opacity: .9;
}


/* =========================================================
   DEGRADÊ SOBRE A IMAGEM
========================================================= */

.blog-page .post-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.95) 0%,
            rgba(0,0,0,.70) 30%,
            rgba(0,0,0,.25) 60%,
            rgba(0,0,0,0) 100%
        );
    pointer-events: none;
}


/* =========================================================
   CATEGORIA SOBRE A IMAGEM
========================================================= */

.blog-page .post-image > span {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    padding: 6px 9px;
    background: var(--orange);
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    border-radius: 3px;
}


.blog-page .post-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 25px 22px 22px;
    background: transparent !important;
    border: none !important;
}


/* =========================================================
   ESCONDER DATA
========================================================= */

.blog-page .post-date {
    display: none !important;
}


/* =========================================================
   TÍTULO DO POST
========================================================= */

.blog-page .post-info h3 {
    min-height: auto;
    margin: 0 0 10px;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}


/* =========================================================
   ESCONDER RESUMO
========================================================= */

.blog-page .post-info p {
    display: none !important;
}


/* =========================================================
   LER ARTIGO
========================================================= */

.blog-page .post-info a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    color: var(--orange);
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    transition: .25s;
}

.blog-page .post-info a:hover {
    color: #fff;
}

.blog-page .post-info a i {
    transition: .25s;
}

.blog-page .post-info a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   ARTIGO ABERTO
========================================================= */

.blog-page .article-view {
    width: 100%;
    margin-top: 20px;
}

.blog-page .back-to-posts {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    padding: 10px 15px;
    background: var(--orange);
    border: 0;
    border-radius: 4px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.blog-page .back-to-posts:hover {
    background: var(--orange2);
    transform: translateY(-2px);
}

.blog-page .single-article {
    width: 100%;
    background: #0d1216;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}

.blog-page .single-article-content {
    max-width: 950px;
    margin: auto;
    padding: 45px;
}

.blog-page .article-category {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-page .single-article h1 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 36px;
    line-height: 1.2;
}

.blog-page .single-article-image {
    width: 100%;
    max-height: 500px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 6px;
}

.blog-page .single-article-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-page .article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-page .article-meta span {
    color: #858d92;
    font-size: 9px;
}

.blog-page .article-meta i {
    color: var(--orange);
    margin-right: 5px;
}

.blog-page .article-text {
    color: #c3c7ca;
    font-size: 14px;
    line-height: 1.9;
}

.blog-page .article-text p {
    margin-bottom: 20px;
}

.blog-page .article-text h2,
.blog-page .article-text h3,
.blog-page .article-text h4 {
    margin: 30px 0 15px;
    color: #fff;
}

.blog-page .article-text img {
    max-width: 100%;
    height: auto;
    margin: 25px auto;
    border-radius: 6px;
}


/* =========================================================
   CTA
========================================================= */

.blog-page .blog-cta {
    padding: 25px 0;
    background: #090e12;
}

.blog-page .cta-box {
    min-height: 170px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 7px;
    background:
        linear-gradient(
            120deg,
            #11171c,
            #0d1318
        );
}

.blog-page .cta-box span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-page .cta-box h2 {
    margin: 5px 0 6px;
    font-size: 24px;
}

.blog-page .cta-box p {
    color: var(--muted);
    font-size: 9px;
}

.blog-page .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    background: var(--orange);
    border-radius: 5px;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 700;
    transition: .25s;
}

.blog-page .cta-button i {
    font-size: 17px;
}

.blog-page .cta-button:hover {
    background: var(--orange2);
    transform: translateY(-2px);
}


/* =========================================================
   FOOTER
========================================================= */

.blog-page footer {
    padding-top: 35px;
    background: #070b0e;
}

.blog-page .footer-grid {
    display: grid;
    grid-template-columns:
        2fr 1fr 1.25fr 1.25fr;
    gap: 45px;
    padding-bottom: 30px;
}

.blog-page .footer-brand img {
    width: 145px;
    margin-bottom: 12px;
}

.blog-page .footer-grid p,
.blog-page .footer-grid li {
    color: #8f979c;
    font-size: 8px;
    line-height: 1.7;
    margin-bottom: 7px;
}

.blog-page .footer-brand p {
    max-width: 280px;
}

.blog-page .footer-grid h4 {
    color: #fff;
    font-size: 9px;
    margin-bottom: 12px;
}

.blog-page .footer-grid a:hover {
    color: var(--orange);
}

.blog-page .footer-grid li i {
    color: #9da4a8;
    width: 15px;
}

.blog-page .copyright {
    border-top: 1px solid rgba(255,255,255,.08);
}

.blog-page .copyright .container {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.blog-page .copyright span,
.blog-page .copyright a {
    color: #656d72;
    font-size: 7px;
}

.blog-page .copyright div {
    display: flex;
    gap: 20px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .blog-page .logo img {
        width: 150px;
        margin-right: 25px;
    }

    .blog-page nav ul {
        gap: 15px;
    }

    .blog-page .posts-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .blog-page .post-card {
        height: 280px;
    }

    .blog-page .featured-post {
        grid-template-columns: 1fr;
    }

    .blog-page .featured-image {
        min-height: 280px;
    }

    .blog-page .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

    .blog-page .header-inner {
        height: 62px;
    }

    .blog-page .logo img {
        width: 130px;
        margin-right: 0;
    }

    .blog-page nav {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        margin: 0;
        background: #080b0e;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .blog-page nav.open {
        display: block;
    }

    .blog-page nav ul {
        flex-direction: column;
        gap: 0;
        padding: 15px;
    }

    .blog-page nav li {
        width: 100%;
    }

    .blog-page nav a {
        display: block;
        padding: 12px;
    }

    .blog-page .btn-header {
        display: none;
    }

    .blog-page .menu-btn {
        display: block;
    }


    /* HERO */

    .blog-page .blog-hero {
        min-height: 480px;
        padding-top: 62px;
    }

    .blog-page .blog-hero-bg {
        inset: 62px 0 0;
    }

    .blog-page .blog-hero h1 {
        font-size: 38px;
    }

    .blog-page .blog-hero p {
        font-size: 11px;
    }


    /* CATEGORIAS */

    .blog-page .category-list {
        padding: 12px 0;
    }


    /* BLOG */

    .blog-page .blog-content {
        padding: 40px 0 50px;
    }


    /* DESTAQUE */

    .blog-page .featured-info {
        padding: 25px;
    }

    .blog-page .featured-info h2 {
        font-size: 22px;
    }


    /* POSTS */

    .blog-page .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-page .post-card {
        height: 270px;
    }

    .blog-page .post-info {
        padding: 22px;
    }

    .blog-page .post-info h3 {
        font-size: 16px;
    }


    /* ARTIGO */

    .blog-page .single-article-content {
        padding: 25px;
    }

    .blog-page .single-article h1 {
        font-size: 28px;
    }


    /* CTA */

    .blog-page .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-page .cta-button {
        width: 100%;
    }


    /* FOOTER */

    .blog-page .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-page .copyright .container {
        padding: 12px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 480px) {

    .blog-page .container {
        width: 92%;
    }

    .blog-page .blog-hero h1 {
        font-size: 32px;
    }

    .blog-page .featured-image {
        min-height: 220px;
    }

    .blog-page .featured-info h2 {
        font-size: 20px;
    }

    .blog-page .post-card {
        height: 250px;
    }

    .blog-page .post-info {
        padding: 20px;
    }

    .blog-page .post-info h3 {
        font-size: 14px;
    }

    .blog-page .single-article-content {
        padding: 20px;
    }

    .blog-page .single-article h1 {
        font-size: 24px;
    }

    .blog-page .footer-grid {
        grid-template-columns: 1fr;
    }
}