/* ===== Página ===== */
.blog-page,
main.bg-white.text-black,
main {
    background: #ffffff;
    color: #000000;
}

.blog-content-section {
    background: #ffffff;
    padding: 24px 0 80px;
}

.blog-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.blog-layout {
    display: block;
}

.blog-main {
    min-width: 0;
}

/* ===== HERO ===== */
.blog-hero {
    position: relative;
    min-height: 690px;
    padding: 120px 0 170px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    padding: 0 24px;
    box-sizing: border-box;
}

.blog-hero h1 {
    margin: 0 0 18px;
    font-size: 82px;
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
}

.blog-hero p {
    max-width: 1120px;
    margin: 0 auto 34px;
    font-size: 34px;
    line-height: 1.34;
    font-weight: 400;
    color: #ffffff;
}

/* ===== Busca ===== */
.blog-search {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.blog-search input[type="search"] {
    width: 100%;
    height: 58px;
    padding: 0 22px 0 58px;
    border: 2px solid #11FFFC;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    font-size: 18px;
    outline: none;
    box-shadow: none;
}

.blog-search input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.blog-search .search-icon,
.blog-search button {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    background: none;
    border: none;
    padding: 0;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}

/* ===== Post destaque ===== */
.blog-featured {
    display: grid;
    grid-template-columns: 1.32fr 1fr;
    background: #ffffff;
    border: 12px solid #ffffff;
    margin-top: -200px;
    margin-bottom: 52px;
    position: relative;
    z-index: 3;
    box-sizing: border-box;
}

.blog-featured__image {
    display: block;
    background: #dddddd;
}

.blog-featured__image img {
    width: 100%;
    height: 100%;
    min-height: 465px;
    object-fit: cover;
    display: block;
}

.blog-featured__content {
    padding: 52px 54px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    color: #000000;
}

.blog-featured__title {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 400;
    color: #000000;
}

.blog-featured__title a {
    color: #000000;
    text-decoration: none;
}

.blog-featured__title strong,
.blog-featured__title b {
    font-weight: 700;
}

.blog-featured__excerpt {
    margin-bottom: 26px;
    font-size: 21px;
    line-height: 1.45;
    color: #333333;
}

.blog-featured__meta {
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ff2f92;
}

.blog-featured__actions {
    margin-top: 0;
}

.blog-featured__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-width: 245px;
    height: 50px;
    padding: 0 22px;
    background: #e9edf3;
    color: #8fa0b3;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    box-shadow: none;
    transition: 0.2s ease;
}

.blog-featured__button:hover {
    background: #e2e8ef;
    color: #7b8da1;
}

/* ===== Grid abaixo do destaque ===== */
.blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 42px;
    align-items: start;
}

/* ===== Cards de posts ===== */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #d6d6d6;
    padding: 8px;
    box-sizing: border-box;
}

.blog-card__image {
    display: block;
}

.blog-card__image img {
    width: 100%;
    aspect-ratio: 1 / 0.72;
    object-fit: cover;
    display: block;
}

.blog-card__content {
    padding: 10px 6px 8px;
    color: #000000;
}

.blog-card__meta {
    margin: 0 0 10px;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ff0088;
}

.blog-card__title {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #000000;
}

.blog-card__title a {
    color: #000000;
    text-decoration: none;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8ca0b3;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
}

/* ===== Sidebar ===== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 34px;
    color: #000000;
}

.blog-sidebar__block h2,
.blog-sidebar__title {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    color: #000000;
}

.blog-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-categories__item {
    margin: 0 0 12px;
}

.blog-categories__item a {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 16px;
}

.blog-sidebar__footer-link {
    margin-top: 12px;
}

.blog-sidebar__footer-link a {
    color: #8ca0b3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.blog-sidebar__footer-link--secondary a {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    background: #e9edf3;
    padding: 12px 16px;
}

/* ===== Material gratuito ===== */
.blog-material {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #000000;
}

.blog-material__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.blog-material__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #8a8a8a;
}

.blog-material__image img {
    width: 100%;
    max-width: 215px;
    height: auto;
    display: block;
}

.blog-material__button {
    display: block;
    width: 100%;
    max-width: 215px;
    padding: 12px 16px;
    background: #ff0088;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border-radius: 0;
}

/* ===== Paginação ===== */
.blog-pagination {
    padding-top: 34px;
}

.blog-empty {
    color: #000000;
}

/* ===== Garantias ===== */
.blog-content-section,
.blog-content-section * {
    box-sizing: border-box;
}

.blog-featured__title,
.blog-featured__title a,
.blog-featured__excerpt,
.blog-card__title,
.blog-card__title a,
.blog-sidebar__title,
.blog-material__title {
    color: #000000;
}

.blog-card__content,
.blog-featured__content,
.blog-sidebar,
.blog-material {
    color: #000000;
}

/* ===== Responsivo ===== */
@media (max-width: 1024px) {
    .blog-hero {
        min-height: 560px;
        padding: 90px 0 120px;
    }

    .blog-hero h1 {
        font-size: 60px;
    }

    .blog-hero p {
        font-size: 26px;
    }

    .blog-search input[type="search"] {
        height: 54px;
        font-size: 17px;
    }

    .blog-featured {
        grid-template-columns: 1fr;
        margin-top: -48px;
    }

    .blog-featured__image img {
        min-height: 340px;
    }

    .blog-featured__content {
        padding: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-posts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blog-content-section {
        padding: 0 0 56px;
    }

    .blog-container {
        padding: 0 16px;
    }

    .blog-hero {
        min-height: 430px;
        padding: 72px 0 84px;
    }

    .blog-hero h1 {
        font-size: 44px;
        margin-bottom: 16px;
    }

    .blog-hero p {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 24px;
    }

    .blog-search input[type="search"] {
        height: 50px;
        padding-left: 50px;
        font-size: 16px;
        border-width: 2px;
    }

    .blog-search .search-icon,
    .blog-search button {
        left: 16px;
        font-size: 16px;
    }

    .blog-featured {
        margin-top: -24px;
        margin-bottom: 32px;
        border-width: 8px;
    }

    .blog-featured__content {
        padding: 24px 20px;
    }

    .blog-featured__title {
        font-size: 28px;
    }

    .blog-featured__excerpt {
        font-size: 18px;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-sidebar__block h2,
    .blog-sidebar__title {
        font-size: 20px;
    }
}

.blog-topbar {
    background: #000000;
    border-bottom: 4px solid #11FFFC;
    position: relative;
    z-index: 50;
}

.blog-topbar__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-topbar__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.blog-topbar__logo img {
    display: block;
    height: 48px;
    width: auto;
}

.blog-topbar__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.blog-topbar__nav a {
    color: #11FFFC;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.blog-topbar__nav a:hover {
    opacity: 0.75;
}

@media (max-width: 767px) {
    .blog-topbar__inner {
        padding: 14px 16px;
        gap: 16px;
    }

    .blog-topbar__logo img {
        height: 36px;
    }

    .blog-topbar__nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .blog-topbar__nav a {
        font-size: 14px;
    }
}

/* ===== Página individual do post ===== */
.blog-single-page {
    background: #ffffff;
    color: #000000;
}

.blog-single {
    padding: 64px 0 80px;
    background: #ffffff;
}

.blog-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 42px;
    align-items: start;
}

.blog-single__content {
    min-width: 0;
}

.blog-single__thumb {
    margin-bottom: 28px;
}

.blog-single__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single__header {
    margin-bottom: 28px;
}

.blog-single__title {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    color: #000000;
}

.blog-single__meta {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ff2f92;
}

.blog-single__body {
    font-size: 19px;
    line-height: 1.75;
    color: #111111;
}

.blog-single__body p,
.blog-single__body ul,
.blog-single__body ol,
.blog-single__body blockquote,
.blog-single__body h2,
.blog-single__body h3,
.blog-single__body h4 {
    margin: 0 0 24px;
}

.blog-single__body h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
}

.blog-single__body h3 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 700;
    color: #000000;
}

.blog-single__body a {
    color: #8ca0b3;
    text-decoration: underline;
}

.blog-single__body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px 0;
}

.blog-single__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #dddddd;
}

.blog-single__nav-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-single__nav-item--next {
    text-align: right;
    align-items: flex-end;
}

.blog-single__nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999999;
    font-weight: 700;
}

.blog-single__nav-item a {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.blog-single__nav-item a:hover {
    color: #8ca0b3;
}

@media (max-width: 1024px) {
    .blog-single__grid {
        grid-template-columns: 1fr;
    }

    .blog-single {
        padding: 48px 0 64px;
    }

    .blog-single__title {
        font-size: 34px;
    }

    .blog-single__body {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .blog-single {
        padding: 32px 0 48px;
    }

    .blog-single__title {
        font-size: 28px;
    }

    .blog-single__body {
        font-size: 17px;
        line-height: 1.7;
    }

    .blog-single__nav {
        grid-template-columns: 1fr;
    }

    .blog-single__nav-item--next {
        text-align: left;
        align-items: flex-start;
    }
}

.blog-single__thumb {
    margin-bottom: 28px;
}

.blog-single__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-single__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 42px;
    align-items: start;
}