* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: #111111;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12px 12px, rgba(0,0,0,.20) 2px, transparent 3px) 0 0 / 24px 24px,
        linear-gradient(135deg, #ffe44d, #ff8a00 48%, #ff3131);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 6%;
    background: #111111;
    color: #ffffff;
    border-bottom: 7px solid #000000;
}

.brand {
    font-family: 'Bangers', cursive;
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 2px;
    color: #ffe44d;
    text-shadow: 4px 4px #e11d48;
}

.nav-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 70px 20px;
    background:
        linear-gradient(135deg, rgba(37,99,235,.90), rgba(225,29,72,.90)),
        radial-gradient(circle, #ffffff 10%, transparent 12%) 0 0 / 32px 32px;
    border-bottom: 9px solid #111111;
}

.cover {
    width: min(1180px, 94%);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: clamp(32px, 5vw, 68px);
    background: #ffffff;
    border: 8px solid #111111;
    box-shadow: 18px 18px 0 #111111;
    padding: clamp(28px, 6vw, 60px);
    transform: rotate(-.5deg);
}

.edition {
    display: inline-block;
    background: #e11d48;
    color: #ffffff;
    border: 5px solid #111111;
    box-shadow: 6px 6px 0 #111111;
    padding: 10px 16px;
    font-weight: 900;
    margin-bottom: 25px;
}

h1 {
    margin: 0 0 20px;
    font-family: 'Bangers', cursive;
    font-size: clamp(4rem, 13vw, 9rem);
    line-height: .82;
    color: #ffe44d;
    -webkit-text-stroke: 4px #111111;
    text-shadow: 10px 10px #e11d48;
    letter-spacing: 2px;
}

.cover p {
    max-width: 650px;
    font-size: clamp(1rem, 2.4vw, 1.3rem);
    font-weight: 700;
}

.cover h1 {
    font-size: clamp(4rem, 8vw, 7rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-actions .main-btn {
    margin-top: 14px;
}

.main-btn--secondary {
    background: #ffffff;
}

.hero-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
}

.hero-topics a {
    padding: 5px 10px;
    border: 3px solid #111111;
    background: #ffe44d;
    color: #111111;
    font-size: .75rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 3px 3px 0 #111111;
    transition: transform .15s ease, background .15s ease;
}

.hero-topics a:nth-child(even) {
    background: #38bdf8;
}

.hero-topics a:hover {
    background: #ff5e57;
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-feature-wrap {
    position: relative;
}

.hero-feature-wrap::before {
    content: "DESTAQUE";
    position: absolute;
    z-index: 3;
    top: -20px;
    right: -16px;
    padding: 8px 14px;
    border: 4px solid #111111;
    background: #ffe44d;
    color: #111111;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: 5px 5px 0 #111111;
    transform: rotate(5deg);
}

.hero-feature {
    position: relative;
    display: block;
    overflow: hidden;
    border: 7px solid #111111;
    background: #111111;
    color: #ffffff;
    box-shadow: 13px 13px 0 #e11d48;
    text-decoration: none;
    transform: rotate(1.5deg);
    transition: transform .2s ease, box-shadow .2s ease;
}

a.hero-feature:hover {
    transform: rotate(0) translate(-4px, -4px);
    box-shadow: 18px 18px 0 #e11d48;
}

.hero-feature img,
.hero-feature-art {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.hero-feature-art {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle, rgba(17,17,17,.22) 2px, transparent 3px) 0 0 / 18px 18px,
        linear-gradient(135deg, #38bdf8 0 50%, #ff5e57 50%);
}

.hero-feature-art span {
    font-family: 'Bangers', cursive;
    font-size: clamp(3rem, 7vw, 6rem);
    color: #ffe44d;
    -webkit-text-stroke: 3px #111111;
    text-shadow: 7px 7px 0 #e11d48;
    transform: rotate(-7deg);
}

.hero-feature-info {
    display: grid;
    gap: 8px;
    padding: 18px 20px 20px;
}

.hero-feature-label {
    width: fit-content;
    padding: 4px 9px;
    background: #ff5e57;
    color: #ffffff;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .5px;
}

.hero-feature-info strong {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.25;
}

.hero-feature-link {
    color: #ffe44d;
    font-weight: 900;
    font-size: .85rem;
}

.main-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 16px 32px;
    background: #22c55e;
    color: #111111;
    border: 5px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    text-decoration: none;
    font-weight: 900;
    transition: .2s ease;
}

.main-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 13px 13px 0 #111111;
}

.burst {
    position: absolute;
    z-index: 3;
    width: 150px;
    height: 150px;
    background: #ffe44d;
    border: 6px solid #111111;
    display: grid;
    place-items: center;
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    clip-path: polygon(50% 0%, 61% 30%, 95% 18%, 72% 45%, 100% 60%, 66% 62%, 75% 100%, 50% 74%, 25% 100%, 34% 62%, 0 60%, 28% 45%, 5% 18%, 39% 30%);
}

.burst-one {
    right: 7%;
    top: 90px;
    transform: rotate(14deg);
}

.burst-two {
    left: 6%;
    bottom: 70px;
    transform: rotate(-12deg);
    background: #38bdf8;
}

@media (max-width: 960px) {
    .cover {
        grid-template-columns: 1fr;
    }

    .hero-feature-wrap {
        width: min(620px, 100%);
        margin: 10px auto 0;
    }
}

.speech-section,
.videos-section,
.topics,
.cta {
    width: min(1200px, 92%);
    margin: 60px auto;
}

.speech-box,
.cta {
    background: #ffffff;
    border: 7px solid #111111;
    box-shadow: 14px 14px 0 #111111;
    padding: clamp(25px, 5vw, 45px);
    border-radius: 28px;
}

.speech-box h2,
.section-title,
.cta h2 {
    margin: 0 0 14px;
    text-align: center;
    font-family: 'Bangers', cursive;
    font-size: clamp(2.6rem, 6vw, 4rem);
    letter-spacing: 2px;
}

.speech-box p,
.subtitle,
.cta p {
    max-width: 850px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.video-card {
    position: relative;
    background: #ffffff;
    border: 7px solid #111111;
    box-shadow: 12px 12px 0 #111111;
    transition: transform .24s cubic-bezier(.2, 1.5, .35, 1), box-shadow .24s ease, filter .24s ease;
    overflow: visible;
    isolation: isolate;
}

.video-card:hover {
    --comic-pop-mid: translate(-9px, -12px) rotate(-1.6deg) scale(1.04);
    --comic-pop-end: translate(-7px, -9px) rotate(-1.2deg) scale(1.025);
    transform: translate(-7px, -9px) rotate(-1.2deg) scale(1.025);
    box-shadow: 22px 22px 0 #111111, 0 0 0 6px #ffe44d;
    filter: saturate(1.08);
    animation: comic-pop .32s ease both;
}

.video-card::before,
.video-card::after {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .24s ease;
}

.video-card::before {
    content: "";
    inset: -13px;
    z-index: -1;
    background:
        repeating-linear-gradient(135deg, rgba(255, 228, 77, .92) 0 8px, rgba(225, 29, 72, .92) 8px 16px);
    border: 4px solid #111111;
    transform: translate(12px, 12px) rotate(1deg);
}

.video-card::after {
    content: "POP!";
    z-index: 12;
    right: -18px;
    top: -24px;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    background: #38bdf8;
    color: #ffffff;
    border: 4px solid #111111;
    font-family: 'Bangers', cursive;
    font-size: 1.65rem;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0 #111111;
    clip-path: polygon(50% 0%, 60% 28%, 92% 14%, 73% 43%, 100% 56%, 67% 62%, 78% 96%, 50% 77%, 22% 96%, 33% 62%, 0 56%, 27% 43%, 8% 14%, 40% 28%);
    transform: scale(.25) rotate(18deg);
}

.video-card:hover::before,
.video-card:hover::after {
    opacity: 1;
}

.video-card:hover::before {
    transform: translate(7px, 7px) rotate(1deg);
}

.video-card:hover::after {
    transform: scale(1) rotate(10deg);
}

.video-card a {
    display: block;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    border-radius: 0;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    border-bottom: 7px solid #111111;
    filter: saturate(1.25) contrast(1.05);
    transition: .35s ease;
}

.video-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.08) saturate(1.35) contrast(1.08);
}

.comic-label {
    position: absolute;
    z-index: 10;
    top: -16px;
    left: -16px;
    background: #e11d48;
    color: #ffffff;
    border: 4px solid #111111;
    box-shadow: 5px 5px 0 #111111;
    padding: 7px 14px;
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 900;
    transform: rotate(-20deg);
    transform-origin: top left;
    text-shadow: 2px 2px 0 rgba(0,0,0,.35);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 22px;
}

.topic {
    min-height: 135px;
    display: grid;
    place-items: center;
    gap: 8px;
    background: #ffffff;
    border: 6px solid #111111;
    box-shadow: 10px 10px 0 #111111;
    font-size: 2.4rem;
    transition: .2s ease;
}

.topic:hover {
    transform: rotate(2deg) scale(1.03);
}

.topic span {
    display: block;
    font-size: 1.05rem;
    font-weight: 900;
}

.cta {
    text-align: center;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    width: min(1200px, 92%);
    margin: 60px auto;
}

.blog-post {
    background: #ffffff;
    border: 7px solid #111111;
    box-shadow: 14px 14px 0 #111111;
    overflow: hidden;
}

/* Cabeçalho */
.blog-post-header {
    padding: clamp(24px, 5vw, 48px) clamp(24px, 5vw, 48px) 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.blog-tag {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    border: 3px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    padding: 5px 14px;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 1px;
}

.blog-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
}

.blog-title {
    margin: 0 0 14px;
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 1px;
    color: #111111;
    line-height: 1.1;
    /* Sobrescreve os efeitos pesados do h1 global */
    -webkit-text-stroke: 0;
    text-shadow: 3px 3px 0 rgba(225, 29, 72, 0.25);
}

.blog-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    color: #444;
    margin: 0 0 28px;
    line-height: 1.6;
}

/* Capa */
.blog-cover {
    position: relative;
    width: 100%;
    border-top: 7px solid #111111;
    border-bottom: 7px solid #111111;
}

.blog-cover img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
    filter: saturate(1.2) contrast(1.05);
}

.blog-cover-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17,17,17,.82);
    color: #ffe44d;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 8px 20px;
}

/* Corpo */
.blog-body {
    padding: clamp(24px, 5vw, 48px);
    font-size: 1.05rem;
    line-height: 1.75;
    color: #222;
}

.blog-body p {
    margin: 0 0 18px;
}

.blog-rich-text {
    min-width: 0;
}

.blog-body > .blog-rich-text {
    margin-bottom: 18px;
}

.blog-rich-text > :first-child {
    margin-top: 0;
}

.blog-rich-text > :last-child {
    margin-bottom: 0;
}

.blog-subtitle {
    margin: 32px 0 16px;
    font-family: 'Bangers', cursive;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 1px;
    color: #111;
    border-left: 6px solid #e11d48;
    padding-left: 14px;
}

/* Callouts */
.blog-callout {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 24px;
    border: 5px solid #111111;
    box-shadow: 7px 7px 0 #111111;
    margin: 24px 0;
}

.blog-callout--date {
    background: #ffe44d;
}

.blog-callout--shop {
    background: #d1fae5;
}

.blog-callout-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.blog-callout strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.blog-callout p {
    margin: 0;
}

/* Plataformas */
.blog-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.platform-badge {
    background: #111111;
    color: #ffe44d;
    font-family: 'Bangers', cursive;
    font-size: 1.05rem;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 4px solid #111111;
    box-shadow: 5px 5px 0 #e11d48;
}

.blog-note {
    background: #f1f5f9;
    border-left: 5px solid #111111;
    padding: 12px 18px;
    margin: 12px 0 24px;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Tabela de preços */
.blog-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
    border: 5px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.blog-table thead {
    background: #111111;
    color: #ffe44d;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.blog-table th,
.blog-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 3px solid #111111;
}

.blog-table tbody tr:nth-child(even) {
    background: #f8f8f8;
}

.blog-table tbody tr.highlight-row {
    background: #ffe44d;
    font-weight: 900;
}

/* Personagens */
.blog-chars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 16px 0 28px;
}

.blog-char {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 22px;
    border: 5px solid #111111;
    box-shadow: 7px 7px 0 #111111;
}

.blog-char--lucia {
    background: #fce7f3;
}

.blog-char--jason {
    background: #dbeafe;
}

.char-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.blog-char strong {
    display: block;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.blog-char p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Fechamento */
.blog-closing {
    background: #111111;
    color: #ffe44d;
    padding: 22px 28px;
    margin-top: 32px;
    border: 5px solid #111111;
    box-shadow: 8px 8px 0 #e11d48;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.6;
}

.blog-closing p {
    margin: 0;
}

/* Imagens internas dos artigos */
.blog-image-wrap {
    position: relative;
    margin: 32px 0;
    border: 5px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    background: #ffffff;
    transform: rotate(-.25deg);
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-image-wrap:hover {
    transform: translate(-4px, -5px) rotate(0deg);
    box-shadow: 13px 13px 0 #111111, 0 0 0 5px #38bdf8;
}

.blog-image-wrap::before {
    content: attr(data-label);
    position: absolute;
    top: -18px;
    left: 16px;
    z-index: 2;
    padding: 2px 14px;
    border: 4px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    background: #ffe44d;
    color: #111111;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    max-width: calc(100% - 50px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
}

.blog-image-wrap img {
    width: 100%;
    display: block;
    max-height: 550px;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.03);
}

.blog-image-caption {
    background: #111111;
    color: #ffe44d;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    border-top: 5px solid #111111;
    font-family: 'Poppins', sans-serif;
}

.blog-video-wrap {
    position: relative;
    margin: 38px auto;
    padding: 22px 18px 0;
    border: 6px solid #111111;
    box-shadow: 10px 10px 0 #111111;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .14) 2px, transparent 3px) 0 0 / 22px 22px,
        linear-gradient(135deg, #ffdd59 0%, #ff9f1a 100%);
    transform: rotate(-.35deg);
    box-sizing: border-box;
}

.blog-video-wrap::before {
    content: "VIDEO";
    position: absolute;
    top: -18px;
    left: 18px;
    padding: 2px 16px;
    border: 4px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    background: #ff2d6d;
    color: #ffffff;
    font-family: 'Bangers', cursive;
    font-size: 1.4rem;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px #111111;
    transform: rotate(-3deg);
}

.blog-video-wrap--small {
    width: min(560px, 100%);
}

.blog-video-wrap--medium {
    width: min(760px, 100%);
}

.blog-video-wrap--large {
    width: 100%;
}

.blog-video-wrap iframe,
.blog-video-wrap video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 5px solid #111111;
    background: #000000;
    box-sizing: border-box;
}

.blog-video-caption {
    margin: 0 -18px;
    background: #ffffff;
    color: #111111;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 800;
    border-top: 5px solid #111111;
    font-family: 'Poppins', sans-serif;
}

.blog-video-error {
    margin: 34px 0;
    padding: 20px 22px;
    border: 5px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .14) 2px, transparent 3px) 0 0 / 20px 20px,
        #ffe4e6;
    font-weight: 800;
}

.blog-video-error strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Bangers', cursive;
    font-size: 1.55rem;
    letter-spacing: 1px;
    color: #e11d48;
    -webkit-text-stroke: .7px #111111;
}

.blog-video-error span,
.blog-video-error code {
    display: block;
}

.blog-video-error code {
    margin-top: 10px;
    padding: 8px 10px;
    border: 3px solid #111111;
    background: #ffffff;
    overflow-wrap: anywhere;
}

.blog-quote {
    position: relative;
    margin: 34px 0;
    padding: 30px 32px;
    border: 6px solid #111111;
    box-shadow: 9px 9px 0 #111111;
    font-weight: 900;
    font-size: 1.15rem;
}

.blog-quote::before {
    content: "“";
    position: absolute;
    top: -24px;
    left: 18px;
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    line-height: 1;
    color: #e11d48;
    -webkit-text-stroke: 2px #111111;
}

.blog-quote--yellow { background: #fff3a3; }
.blog-quote--pink { background: #ffd6e5; }
.blog-quote--blue { background: #dbeafe; }

.blog-quote p {
    margin: 0;
}

.blog-quote cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.blog-gallery {
    display: grid;
    gap: 18px;
    margin: 34px 0;
}

.blog-gallery--grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.blog-gallery--strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    overflow-x: auto;
    padding-bottom: 10px;
}

.blog-gallery figure {
    position: relative;
    margin: 0;
    border: 5px solid #111111;
    box-shadow: 7px 7px 0 #111111;
    background: #ffffff;
    transform: rotate(-1deg);
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-gallery figure:nth-child(even) {
    transform: rotate(1deg);
}

.blog-gallery figure:hover {
    transform: translate(-4px, -5px) rotate(0deg) scale(1.02);
    box-shadow: 12px 12px 0 #111111, 0 0 0 5px #ffe44d;
}

.blog-gallery figure::before {
    content: attr(data-label);
    position: absolute;
    top: -15px;
    left: 12px;
    z-index: 2;
    padding: 2px 10px;
    border: 3px solid #111111;
    box-shadow: 3px 3px 0 #111111;
    background: #e11d48;
    color: #ffffff;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    max-width: calc(100% - 48px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
}

.blog-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.blog-gallery figcaption {
    padding: 10px 12px;
    border-top: 4px solid #111111;
    background: #111111;
    color: #ffe44d;
    font-weight: 800;
    font-size: .9rem;
}

.blog-image-wrap img,
.blog-gallery img {
    cursor: zoom-in;
}

/* Carousel Block */
.blog-carousel-wrap {
    position: relative;
    margin: 34px 0;
    border: 5px solid #111111;
    box-shadow: 7px 7px 0 #111111;
    background: #ffffff;
    overflow: hidden;
}

.blog-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    overflow: hidden;
}

.blog-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.blog-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-carousel-info {
    position: absolute;
    bottom: clamp(15px, 4vw, 25px);
    left: clamp(15px, 4vw, 25px);
    right: clamp(15px, 4vw, 25px);
    z-index: 3;
    background: #ffe44d;
    border: 4px solid #111111;
    box-shadow: 5px 5px 0 #111111;
    padding: 10px 16px;
    transform: rotate(-0.5deg);
    max-width: 85%;
}

.blog-carousel-title {
    margin: 0 0 4px 0;
    font-family: 'Bangers', cursive;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    color: #111111;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-carousel-desc {
    margin: 0;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    color: #111111;
    font-weight: 700;
}

.blog-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 3px solid #111111;
    border-radius: 50%;
    background: #ffdd59;
    color: #111111;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    box-shadow: 3px 3px 0 #111111;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
    user-select: none;
}

.blog-carousel-control:hover {
    background: #ffea75;
    transform: translateY(-50%) translate(-2px, -2px);
    box-shadow: 5px 5px 0 #111111;
}

.blog-carousel-control:active {
    transform: translateY(-50%) translate(0, 0);
    box-shadow: 1px 1px 0 #111111;
}

.blog-carousel-control.prev {
    left: 15px;
}

.blog-carousel-control.next {
    right: 15px;
}

.blog-carousel-indicators {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.blog-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #111111;
    background: #ffffff;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 1px 1px 0 #111111;
}

.blog-carousel-dot.active {
    background: #e11d48;
    transform: scale(1.25);
}

.comic-lightbox-open {
    overflow: hidden;
}

.comic-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: clamp(18px, 4vw, 42px);
    background:
        radial-gradient(circle, rgba(255,255,255,.20) 2px, transparent 3px) 0 0 / 24px 24px,
        rgba(0, 0, 0, .82);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.comic-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.comic-lightbox-panel {
    position: relative;
    width: min(1060px, 96vw);
    max-height: 92vh;
    padding: clamp(14px, 2vw, 22px);
    border: 8px solid #111111;
    box-shadow: 16px 16px 0 #111111, 0 0 0 8px #ffe44d;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .16) 2px, transparent 3px) 0 0 / 20px 20px,
        #ffffff;
    transform: rotate(-1.4deg) scale(.86);
    transition: transform .24s cubic-bezier(.2, 1.5, .35, 1);
}

.comic-lightbox.is-open .comic-lightbox-panel {
    transform: rotate(-1.4deg) scale(1);
}

.comic-lightbox-panel img {
    width: 100%;
    max-height: calc(92vh - 150px);
    object-fit: contain;
    display: block;
    border: 6px solid #111111;
    background: #000000;
}

.comic-lightbox-panel p {
    margin: 0;
    padding: 13px 18px;
    border: 6px solid #111111;
    border-top: 0;
    background: #111111;
    color: #ffe44d;
    font-weight: 900;
}

.comic-lightbox-close {
    position: absolute;
    top: -24px;
    right: -24px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 5px solid #111111;
    box-shadow: 5px 5px 0 #111111;
    background: #e11d48;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Bangers', cursive;
    font-size: 2.4rem;
    line-height: 1;
}

.comic-lightbox-burst {
    position: absolute;
    top: -34px;
    left: -28px;
    z-index: 3;
    width: 106px;
    height: 106px;
    display: grid;
    place-items: center;
    background: #38bdf8;
    color: #ffffff;
    border: 5px solid #111111;
    font-family: 'Bangers', cursive;
    font-size: 1.65rem;
    letter-spacing: 1px;
    text-shadow: 3px 3px 0 #111111;
    clip-path: polygon(50% 0%, 60% 28%, 92% 14%, 73% 43%, 100% 56%, 67% 62%, 78% 96%, 50% 77%, 22% 96%, 33% 62%, 0 56%, 27% 43%, 8% 14%, 40% 28%);
    transform: rotate(-12deg);
}

.blog-proscons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 34px 0;
}

.blog-proscons-box {
    border: 6px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    padding: 22px;
}

.blog-proscons-box--pros {
    background: #dcfce7;
}

.blog-proscons-box--cons {
    background: #ffe4e6;
}

.blog-proscons h2,
.blog-specs h2,
.blog-timeline h2 {
    margin: 0 0 14px;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.blog-proscons ul {
    margin: 0;
    padding-left: 22px;
    font-weight: 800;
}

.blog-specs {
    margin: 34px 0;
    padding: 24px;
    border: 6px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .13) 2px, transparent 3px) 0 0 / 20px 20px,
        #ffffff;
}

.blog-specs dl {
    margin: 0;
    display: grid;
    gap: 10px;
}

.blog-specs dl div {
    display: grid;
    grid-template-columns: minmax(130px, .45fr) 1fr;
    border: 3px solid #111111;
    background: #f8fafc;
}

.blog-specs dt,
.blog-specs dd {
    margin: 0;
    padding: 10px 12px;
    font-weight: 800;
}

.blog-specs dt {
    background: #111111;
    color: #ffe44d;
}

.blog-faq {
    display: grid;
    gap: 12px;
    margin: 34px 0;
}

.blog-faq details {
    border: 5px solid #111111;
    box-shadow: 6px 6px 0 #111111;
    background: #ffffff;
    padding: 14px 18px;
}

.blog-faq summary {
    cursor: pointer;
    font-weight: 900;
    font-family: 'Bangers', cursive;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.blog-faq p {
    margin: 12px 0 0;
}

.blog-timeline {
    position: relative;
    margin: 34px 0;
    padding: 24px;
    border: 6px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    background: #f8fafc;
}

.blog-timeline-item {
    position: relative;
    padding: 16px 0 16px 28px;
    border-left: 6px solid #e11d48;
}

.blog-timeline-item::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 20px;
    width: 18px;
    height: 18px;
    border: 4px solid #111111;
    background: #ffe44d;
}

.blog-timeline-item span,
.blog-timeline-item strong {
    display: block;
}

.blog-timeline-item span {
    font-weight: 900;
    color: #e11d48;
}

.blog-timeline-item p {
    margin: 6px 0 0;
}

.blog-alert {
    margin: 30px 0;
    padding: 20px 22px;
    border: 6px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    font-weight: 800;
}

.blog-alert--info { background: #dbeafe; }
.blog-alert--tip { background: #dcfce7; }
.blog-alert--warning { background: #fef3c7; }
.blog-alert--danger { background: #ffe4e6; }

.blog-alert strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Bangers', cursive;
    font-size: 1.45rem;
    letter-spacing: 1px;
}

.blog-alert p {
    margin: 0;
}

.blog-divider {
    margin: 38px 0;
    display: grid;
    place-items: center;
}

.blog-divider span {
    display: inline-block;
    padding: 12px 34px;
    border: 6px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    font-family: 'Bangers', cursive;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 2px;
    transform: rotate(-2deg);
}

.blog-divider--yellow span { background: #ffe44d; color: #111111; }
.blog-divider--pink span { background: #e11d48; color: #ffffff; }
.blog-divider--blue span { background: #38bdf8; color: #111111; }

.blog-spacer {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    pointer-events: none;
}

.blog-spacer--small { min-height: 34px; }
.blog-spacer--medium { min-height: 64px; }
.blog-spacer--large { min-height: 104px; }

.blog-spacer--dots::before {
    content: "";
    width: min(340px, 64%);
    height: 16px;
    border: 3px solid #111111;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .55) 1.5px, transparent 2px) 0 0 / 11px 11px,
        #ffe44d;
    box-shadow: 5px 5px 0 #111111;
    transform: rotate(-1deg);
}

.blog-spacer--action::before {
    content: "";
    width: min(440px, 76%);
    height: 22px;
    background: repeating-linear-gradient(
        -12deg,
        transparent 0 13px,
        #111111 14px 17px,
        transparent 18px 25px
    );
    clip-path: polygon(4% 35%, 96% 0, 100% 65%, 0 100%);
    opacity: .78;
}

.blog-product-card {
    display: grid;
    grid-template-columns: minmax(160px, 260px) 1fr;
    gap: 22px;
    margin: 34px 0;
    padding: 20px;
    border: 6px solid #111111;
    box-shadow: 9px 9px 0 #111111;
    background: #ffffff;
}

.blog-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 5px solid #111111;
}

.blog-product-card h2 {
    margin: 0 0 8px;
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 1px;
}

.blog-product-price {
    display: inline-block;
    margin: 6px 0 14px;
    padding: 6px 12px;
    background: #ffe44d;
    border: 3px solid #111111;
    box-shadow: 4px 4px 0 #111111;
}

.blog-product-btn,
.blog-social-card a {
    display: inline-block;
    padding: 10px 18px;
    background: #e11d48;
    color: #ffffff;
    border: 4px solid #111111;
    box-shadow: 5px 5px 0 #111111;
    font-family: 'Bangers', cursive;
    text-decoration: none;
    letter-spacing: 1px;
}

.blog-social-card {
    margin: 34px 0;
    padding: 24px;
    border: 6px solid #111111;
    box-shadow: 9px 9px 0 #111111;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .14) 2px, transparent 3px) 0 0 / 20px 20px,
        #ffffff;
}

.blog-social-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 14px;
    background: #111111;
    color: #ffe44d;
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

.blog-social-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 14px 0;
    border: 5px solid #111111;
    background: #000000;
}

@media (max-width: 760px) {
    .blog-video-wrap,
    .blog-video-wrap--small,
    .blog-video-wrap--medium,
    .blog-video-wrap--large {
        width: 100%;
        transform: none;
    }

    .blog-proscons,
    .blog-product-card {
        grid-template-columns: 1fr;
    }

    .blog-specs dl div {
        grid-template-columns: 1fr;
    }

    .comic-lightbox-panel {
        transform: none;
        width: 96vw;
    }

    .comic-lightbox.is-open .comic-lightbox-panel {
        transform: scale(1);
    }

    .comic-lightbox-close {
        top: -16px;
        right: -8px;
    }

    .comic-lightbox-burst {
        display: none;
    }
}

.blog-link-card {
    position: relative;
    margin: 34px 0;
    padding: 26px;
    border: 6px solid #111111;
    box-shadow: 9px 9px 0 #111111;
    background:
        radial-gradient(circle, rgba(17, 17, 17, .13) 2px, transparent 3px) 0 0 / 20px 20px,
        #ffffff;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.blog-link-card::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 3px dashed rgba(17, 17, 17, .35);
    pointer-events: none;
}

.blog-link-card--pink {
    background:
        radial-gradient(circle, rgba(17, 17, 17, .13) 2px, transparent 3px) 0 0 / 20px 20px,
        linear-gradient(135deg, #fff 0%, #ffd6e5 100%);
}

.blog-link-card--blue {
    background:
        radial-gradient(circle, rgba(17, 17, 17, .13) 2px, transparent 3px) 0 0 / 20px 20px,
        linear-gradient(135deg, #fff 0%, #d7ecff 100%);
}

.blog-link-card--yellow {
    background:
        radial-gradient(circle, rgba(17, 17, 17, .13) 2px, transparent 3px) 0 0 / 20px 20px,
        linear-gradient(135deg, #fff7bd 0%, #ffdd59 100%);
}

.blog-link-card-badge {
    position: absolute;
    top: -18px;
    left: 18px;
    padding: 2px 16px;
    border: 4px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    background: #2f6bff;
    color: #ffffff;
    font-family: 'Bangers', cursive;
    font-size: 1.35rem;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px #111111;
    transform: rotate(-3deg);
    z-index: 1;
}

.blog-link-card-content,
.blog-link-card-btn {
    position: relative;
    z-index: 1;
}

.blog-link-card-content h2 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 0 0 8px;
    color: #111111;
}

.blog-link-card-content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333333;
}

.blog-link-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 18px;
    border: 4px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    background: #ff2d6d;
    color: #ffffff;
    font-family: 'Bangers', cursive;
    font-size: 1.25rem;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-text-stroke: .7px #111111;
    transition: .15s ease;
}

.blog-link-card-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #111111;
}

@media (max-width: 760px) {
    .blog-link-card {
        grid-template-columns: 1fr;
        padding: 28px 18px 20px;
    }

    .blog-link-card-btn {
        width: 100%;
    }
}

/* ===== FIM BLOG ===== */

/* ===== BLOG CARDS (listagem) ===== */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    position: relative;
    background: #ffffff;
    border: 7px solid #111111;
    box-shadow: 12px 12px 0 #111111;
    transition: transform .24s cubic-bezier(.2, 1.5, .35, 1), box-shadow .24s ease, filter .24s ease;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.blog-card:hover {
    --comic-pop-mid: translate(-9px, -12px) rotate(1.4deg) scale(1.04);
    --comic-pop-end: translate(-7px, -9px) rotate(.9deg) scale(1.025);
    transform: translate(-7px, -9px) rotate(.9deg) scale(1.025);
    box-shadow: 22px 22px 0 #111111, 0 0 0 6px #ff2d6d;
    filter: saturate(1.08);
    animation: comic-pop .32s ease both;
}

.blog-card::before,
.blog-card::after {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s ease, transform .24s ease;
}

.blog-card::before {
    content: "";
    inset: -13px;
    z-index: -1;
    background:
        radial-gradient(circle at 9px 9px, rgba(17, 17, 17, .22) 2px, transparent 3px) 0 0 / 18px 18px,
        linear-gradient(135deg, #38bdf8, #ffe44d 55%, #ff2d6d);
    border: 4px solid #111111;
    transform: translate(12px, 12px) rotate(-1deg);
}

.blog-card::after {
    content: "WOW!";
    z-index: 12;
    right: -18px;
    top: -24px;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    background: #ffe44d;
    color: #e11d48;
    border: 4px solid #111111;
    font-family: 'Bangers', cursive;
    font-size: 1.65rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 #ffffff;
    clip-path: polygon(50% 0%, 60% 28%, 92% 14%, 73% 43%, 100% 56%, 67% 62%, 78% 96%, 50% 77%, 22% 96%, 33% 62%, 0 56%, 27% 43%, 8% 14%, 40% 28%);
    transform: scale(.25) rotate(-18deg);
}

.blog-card:hover::before,
.blog-card:hover::after {
    opacity: 1;
}

.blog-card:hover::before {
    transform: translate(7px, 7px) rotate(-1deg);
}

.blog-card:hover::after {
    transform: scale(1) rotate(-10deg);
}

.blog-card--coming {
    opacity: .6;
    pointer-events: none;
}

.blog-card-img-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-bottom: 7px solid #111111;
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    filter: saturate(1.2) contrast(1.05);
    transition: .35s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
    filter: brightness(1.08) saturate(1.35);
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, .55);
    color: #ffe44d;
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .25s ease;
}

.blog-card-img-link:hover .blog-card-img-overlay {
    opacity: 1;
}

.blog-card-coming-img {
    aspect-ratio: 16 / 9;
    background: #e5e7eb;
    border-bottom: 7px solid #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-coming-img span {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 4px;
    color: #9ca3af;
}

.blog-card-missing-img {
    aspect-ratio: 16 / 9;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-missing-img span {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    color: #ff2d6d;
    -webkit-text-stroke: 1px #111111;
}

.blog-card-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}

.blog-card-title {
    margin: 0;
    font-family: 'Bangers', cursive;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    letter-spacing: 1px;
    line-height: 1.2;
}

.blog-card-title a {
    color: #111111;
    text-decoration: none;
    transition: color .2s;
}

.blog-card-title a:hover {
    color: #e11d48;
}

.blog-card-excerpt {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    line-height: 1.6;
    flex: 1;
}

.blog-read-more {
    display: inline-block;
    margin-top: 6px;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #e11d48;
    text-decoration: none;
    border-bottom: 3px solid #e11d48;
    padding-bottom: 2px;
    transition: .2s;
    align-self: flex-start;
}

.blog-read-more:hover {
    color: #111111;
    border-color: #111111;
}

/* ===== BLOG LISTING PAGE HERO ===== */
.blog-page-hero {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 60px 20px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, .90), rgba(225, 29, 72, .90)),
        radial-gradient(circle, #ffffff 10%, transparent 12%) 0 0 / 32px 32px;
    border-bottom: 9px solid #111111;
}

.blog-page-hero-inner {
    width: min(900px, 92%);
    position: relative;
    z-index: 2;
    background: #ffffff;
    border: 8px solid #111111;
    box-shadow: 18px 18px 0 #111111;
    padding: clamp(24px, 5vw, 48px);
    transform: rotate(-0.7deg);
}

.blog-page-hero-inner h1 {
    margin: 10px 0 14px;
    font-size: clamp(3rem, 8vw, 6rem);
}

.blog-page-hero-inner p {
    max-width: 680px;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 700;
    margin: 0;
}

/* ===== FILTROS ===== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 9px 20px;
    background: #ffffff;
    color: #111111;
    border: 4px solid #111111;
    box-shadow: 5px 5px 0 #111111;
    font-family: 'Bangers', cursive;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .2s ease;
}

.filter-btn:hover,
.filter-btn--active {
    background: #111111;
    color: #ffe44d;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 #e11d48;
}

/* ===== BLOG LISTING SECTION ===== */
.blog-listing-section {
    width: min(1200px, 92%);
    margin: 60px auto;
}

/* ===== POST PAGE ===== */
.post-page-wrap {
    width: min(900px, 92%);
    margin: 48px auto 72px;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.post-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.post-breadcrumb a:hover {
    text-decoration: underline;
}

.post-breadcrumb span {
    color: #aaa;
}

.post-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.post-nav-btn {
    display: inline-block;
    padding: 13px 24px;
    background: #ffffff;
    color: #111111;
    border: 5px solid #111111;
    box-shadow: 7px 7px 0 #111111;
    font-family: 'Bangers', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: .2s ease;
}

.post-nav-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 #111111;
    background: #ffe44d;
}

/* Nav active state */
.nav-active {
    color: #ffe44d !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== FIM BLOG CARDS / POST PAGE ===== */

/* ===== INSTAGRAM SECTION ===== */

.instagram-section {
    width: min(1200px, 92%);
    margin: 60px auto;
}

.insta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: #ffffff;
    border: 7px solid #111111;
    box-shadow: 14px 14px 0 #111111;
    padding: clamp(18px, 4vw, 32px) clamp(20px, 5vw, 40px);
    margin-bottom: 28px;
    border-radius: 0;
}

.insta-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.insta-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    color: #e11d48;
    filter: drop-shadow(4px 4px 0 #111111);
}

.insta-sub {
    margin: 4px 0 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #555;
}

.insta-follow-btn {
    display: inline-block;
    padding: 13px 28px;
    background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
    color: #ffffff;
    border: 5px solid #111111;
    box-shadow: 7px 7px 0 #111111;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: .2s ease;
    white-space: nowrap;
}

.insta-follow-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 #111111;
}

/* Wrapper do widget Behold */
.behold-wrapper {
    background: #ffffff;
    border: 7px solid #111111;
    box-shadow: 14px 14px 0 #111111;
    padding: 20px;
    margin-bottom: 28px;
    overflow: hidden;
}

.behold-wrapper behold-widget {
    display: block;
    width: 100%;
}

.insta-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background: #111111;
    color: #ffe44d;
    border: 7px solid #111111;
    box-shadow: 10px 10px 0 #e11d48;
    padding: 22px 32px;
}

.insta-cta-strip p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    color: #ffe44d;
}

/* ===== FIM INSTAGRAM ===== */

@keyframes comic-pop {
    0% {
        transform: translate(0, 0) rotate(0) scale(1);
    }

    48% {
        transform: var(--comic-pop-mid, translate(-9px, -12px) rotate(-1.6deg) scale(1.04));
    }

    100% {
        transform: var(--comic-pop-end, translate(-7px, -9px) rotate(-1.2deg) scale(1.025));
    }
}

@media (prefers-reduced-motion: reduce) {
    .video-card,
    .video-card::before,
    .video-card::after,
    .video-card img,
    .blog-card,
    .blog-card::before,
    .blog-card::after,
    .blog-card-img {
        animation: none;
        transition-duration: .01ms;
    }
}

footer {
    background: #111111;
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    border-top: 8px solid #000000;
}

@media (max-width: 700px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
    }

    h1 {
        -webkit-text-stroke: 2px #111111;
        text-shadow: 6px 6px #e11d48;
    }

    .hero {
        min-height: auto;
        padding: 40px 10px;
    }

    .cover {
        width: min(960px, 100%);
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
        padding: clamp(20px, 5vw, 40px);
        transform: none;
    }

    .edition {
        border-width: 3px;
        box-shadow: 4px 4px 0 #111111;
        padding: 7px 12px;
        font-size: 0.85rem;
    }

    .burst {
        display: none;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    /* Reduz box-shadows pesados no mobile */
    .speech-box,
    .cta {
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
        padding: clamp(18px, 4vw, 30px);
        border-radius: 18px;
    }

    .speech-section,
    .videos-section,
    .topics,
    .cta {
        width: min(1200px, 96%);
        margin: 36px auto;
    }

    .video-card {
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
    }

    .video-card:hover {
        transform: none;
        box-shadow: 8px 8px 0 #111111;
        animation: none;
    }

    .video-card::before,
    .video-card::after {
        display: none;
    }

    .topic {
        min-height: 100px;
        border-width: 4px;
        box-shadow: 6px 6px 0 #111111;
    }

    .topic-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 14px;
    }

    .main-btn {
        padding: 12px 22px;
        border-width: 4px;
        box-shadow: 5px 5px 0 #111111;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    /* Blog cards no mobile */
    .blog-section,
    .blog-listing-section,
    .instagram-section {
        width: min(1200px, 96%);
        margin: 36px auto;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card {
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
    }

    .blog-card:hover {
        transform: none;
        box-shadow: 8px 8px 0 #111111;
        animation: none;
    }

    .blog-card::before,
    .blog-card::after {
        display: none;
    }

    .blog-card-body {
        padding: 16px 18px;
    }

    /* Instagram no mobile */
    .insta-header {
        flex-direction: column;
        align-items: flex-start;
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
        padding: 16px 18px;
    }

    .insta-header .section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .insta-follow-btn {
        width: 100%;
        text-align: center;
        border-width: 4px;
        box-shadow: 5px 5px 0 #111111;
    }

    .behold-wrapper {
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
        padding: 12px;
    }

    .insta-cta-strip {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        border-width: 5px;
        box-shadow: 6px 6px 0 #e11d48;
        padding: 16px 18px;
    }

    /* Blog post page no mobile */
    .blog-post {
        border-width: 5px;
        box-shadow: 8px 8px 0 #111111;
    }

    .blog-page-hero {
        padding: 36px 10px;
        min-height: auto;
    }

    .blog-page-hero-inner {
        border-width: 5px;
        box-shadow: 10px 10px 0 #111111;
        transform: none;
    }

    .post-page-wrap {
        width: min(900px, 96%);
    }

    footer {
        padding: 22px 14px;
        border-top-width: 5px;
    }
}

/* ===== DYNAMIC HIERARCHICAL NAV DROPDOWNS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-item-has-children {
    position: relative;
    display: inline-block;
}
.nav-item-has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) rotate(-1deg);
}
.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}
.nav-item-has-children:hover .nav-arrow {
    transform: rotate(180deg);
}
.submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 1000;
    min-width: 180px;
    background: #ffffff;
    border: 5px solid #111111;
    box-shadow: 6px 6px 0 #111111;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.submenu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #111111 transparent;
}
.submenu li {
    padding: 0;
    margin: 0;
}
.submenu a {
    display: block;
    color: #111111 !important;
    padding: 10px 20px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: background 0.1s ease, color 0.1s ease;
    border-bottom: 2px dashed #e2e8f0;
}
.submenu li:last-child a {
    border-bottom: none;
}
.submenu a:hover {
    background: #ffdd59;
    color: #111111 !important;
}

/* Ajustes responsivos para dropdown e hamburger em telas menores */
.mobile-menu-toggle {
    display: none;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border: 3px solid #000000;
    box-shadow: 2px 2px 0 #000000;
    background: #ffe44d;
    color: #111111;
    cursor: pointer;
    transition: transform 0.05s ease;
}
.mobile-menu-toggle:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000000;
}

@media (max-width: 700px) {
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }
    .navbar {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 12px 6% !important;
    }
    .nav-links {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-top: 15px !important;
        border-top: 3px dashed #ffe44d;
        padding-top: 15px;
    }
    .nav-links.is-open {
        display: flex !important;
    }
    .nav-item-has-children {
        width: 100%;
        position: relative;
    }
    .dropdown-trigger {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-arrow {
        transition: transform 0.2s ease;
        display: inline-block;
    }
    .submenu {
        position: static !important;
        display: none;
        width: 100%;
        box-sizing: border-box;
        border-left: 4px solid #ffe44d !important;
        background: rgba(255, 255, 255, 0.06) !important;
        padding: 8px 0 8px 15px !important;
        margin-top: 8px !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    .submenu li {
        width: 100%;
        border: none !important;
        box-shadow: none !important;
    }
    .submenu a {
        display: block !important;
        width: 100% !important;
        padding: 8px 0 !important;
        font-size: 1rem !important;
        border: none !important;
        box-shadow: none !important;
        color: #ffffff !important;
    }
    .submenu a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffe44d !important;
    }
}
