* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "mendl-serif-dusk", serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "mendl-serif-dusk", serif;
    font-weight: 700;
}

/* Header com imagem de fundo - Tela Cheia */
.header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    gap: 20px;
    padding-top: 60px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    border-bottom: 1px solid #525050;
    padding-bottom: 15px;
    margin-left: 0;
    padding-left: 40px;
    padding-right: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.header-top.scrolled {
    background-color: #000;
}

.header-top.menu-open {
    background-color: #000;
}


/* Seções do Header */
.header-left,
.header-center,
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-left {
    order: 1;
    flex: 1;
}

.header-center {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-right {
    order: 3;
    flex: 1;
    justify-content: flex-end;
}

.btn-header.btn-primary {
    background-color: #F51C27;
    color: #F4F4F4;
    padding: 10px 20px 10px 20px;
    border: 0px;
    text-decoration: none;
    display: inline-block;
}


.main-content {
    width: 40%;
    padding: 90px 40px 0px 90px;
    margin-top: 30px;
    text-align: center;
}

.main-content p {
    font-size: 21px;
}

.main-content h2 {
    font-family: "mendl-serif-dusk", serif;
    font-weight: normal;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: 1;
}

.connect-btn {
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.btn-header.btn-primary {
    font-size: 14px;
}

.btn-listen {
    display: flex;
    flex-direction: row;
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 25px;
    background-color: transparent;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    gap: 10px;
    margin: 0 auto;
    margin-top: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.btn-listen i,
.btn-listen-icon {
    width: 16px;
    height: 16px;
}

.btn-listen span {
    font-size: 12px;
    color: #D9D9D9;
    font-weight: bold;
}

.btn-listen:hover {
    transform: translateY(-3px);
    border-color: #d1171f;
}

.card-image .btn-listen {
    position: absolute;
    top: 10px;
    left: 10px;
    margin: 0;
}

.card-image .btn-listen i,
.card-image .btn-listen .btn-listen-icon,
.card-image .btn-listen span {
    color: #D9D9D9;
}

/* Contenedor de Pesquisa */
.search-container {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

/* Botão de Pesquisa */
.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.search-btn img {
    width: 18px;
    height: 18px;
    transition: opacity 0.3s;
}

.search-btn:hover img {
    opacity: 0.8;
}

/* Campo de Pesquisa */
.search-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
    padding: 8px 15px;
    font-size: 13px;
    font-family: "mendl-serif-dusk", serif;
    max-width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    outline: none;
    width: 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Estado ativo do container */
.search-container.active .search-input {
    max-width: 200px;
    opacity: 1;
    width: 200px;
    padding: 8px 15px;
}

/* Link de Login */
.login-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.login-link img {
    transition: opacity 0.3s;
}

.login-link:hover img {
    opacity: 0.8;
}

/* Menu Hamburger */
.menu-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1000;
}

.menu-hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* INICIO DOS CONTEUDOS */
.conteudo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.filtros-conteudo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.filtros-conteudo-fixo {
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    padding: 10px 0;
    margin: 0px !important;
    margin-top: 10px !important;
    transition: background-color 0.3s ease;
}

.filtros-conteudo-fixo.scrolled {
    background: #000;
}

.filtros-conteudo-fixo a {
    color: #fff !important;
}


.filtros-conteudo a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

.filtros-conteudo a::after {
    content: " | ";
    margin-left: 10px;
}

.filtros-conteudo a:last-child::after {
    content: "";
    margin-left: 0;
}

.aviso-conteudo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}


.aviso-conteudo>img {
    margin-right: 20px;
}

.conteudo-divider {
    width: 100%;
    height: 1px;
    background-color: #cacaca;
    margin: 10px 0px 20px 0px;
}

/* DESTAQUES DO TERROR */

.destaque-terror {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px 40px 0px 40px;
    margin-bottom: 60px;
}

/* Destaque Especial */
.destaque-especial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
}

.destaque-especial-imagem {
    position: relative;
    width: 80%;
    overflow: hidden;
}

.destaque-especial-imagem img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.destaque-especial-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 30px;
    color: #fff;
}

.destaque-especial-categoria {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #cfcbcb;
}

.destaque-especial-titulo {
    font-size: 38px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.destaque-especial-descricao {
    font-size: 18px;
    color: #F4F4F4;
    max-width: 520px;
    line-height: 1.2;
}

.destaque-terror-dark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 90px 40px 90px 40px;
    margin-bottom: 60px;
    background-color: #000;
}

.destaque-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.destaque-header h2 {
    font-family: "mendl-serif-dusk", serif;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.destaque-header-dark h2 {
    color: #fff;
}

.destaque-subtitulo {
    font-size: 21px;
    color: #000000;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    padding: 0px 50px 0px 50px;
}

.destaque-terror-dark .card-category {
    color: #fff;
}

.destaque-terror-dark .card-title {
    color: #fff;
}

.destaque-terror-dark .card-audio {
    color: #999;
}

.destaque-terror-dark .card-audio img {
    filter: brightness(0.6);
}

.conteudo-destaque-terror {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
    width: 100%;
}

.destaque-dots {
    display: none;
}

.conteudo-destaque-terror-pagina {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.conteudo-destaque-terror-pagina:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: #9B8FA8;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #F51C27;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.card-badge img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.card-category {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-decoration: none;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-align: left;
}

.card-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: left;
}

.card-audio {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-top: 30px;
}

.card-audio img {
    width: 16px;
    height: 16px;
}

.card-audio span::before {
    content: " | ";
    margin-right: 8px;
    color: #999;
}

.card-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.dubladores-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    padding-top: 20px;
    padding: 0px 30px;
}

.dubladores-slogan {
    font-size: 14px;
    color: #333;
}

.dubladores-slogan strong {
    font-weight: bold;
}

.dubladores-social {
    display: flex;
    gap: 12px;
}

.dubladores-dots {
    display: none;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: #F51C27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #d1171f;
}

.dubladores-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 50px 60px 50px;
    margin-bottom: 60px;
    background-color: #ffffff;
}

.conteudo-dubladores {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}

.card-dublador {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dublador-imagem {
    width: 191px;
    height: 191px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

.dublador-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dublador-funcao {
    font-family: "mendl-serif-dusk", serif;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dublador-nome {
    font-family: "mendl-serif-dusk", serif;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.dublador-descricao {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    padding: 0px 5px;
}


.aviso-conteudo a {
    color: #2594cf;
}

.mobile-menu-categorias {
    display: none;
}

/* Media Queries para Mobile e Tablet */
@media (max-width: 768px) {
    .header {
        min-height: auto;
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .header-top {
        width: 100%;
        margin-left: 0;
        padding: 15px 15px;
        border-bottom: 1px solid #ffffff;
        position: relative;
        z-index: 100;
        gap: 15px;
        justify-content: space-between;
        align-items: center;
    }

    .menu-hamburger {
        display: flex;
        order: 1;
    }

    .header-center {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .header-center img {
        width: 80px;
    }

    .header-left {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        border-bottom: 1px solid #525050;
        padding: 15px;
        gap: 10px;
        display: none;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 99;
        width: 100%;
    }

    .header-left.active {
        display: flex;
        padding: 15px;
        background-color: #000000;
    }

    .header-left .search-container {
        width: 100%;
    }

    .header-left .search-input {
        max-width: 100% !important;
        width: 100% !important;
        opacity: 1 !important;
        padding: 8px 15px !important;
    }

    .mobile-menu-categorias {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .mobile-menu-categoria {
        color: #F4F4F4;
        text-decoration: none;
        padding: 10px 15px;
        border: 1px solid #525050;
        border-radius: 5px;
        text-align: center;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }

    .mobile-menu-categoria:hover {
        background-color: #F51C27;
        border-color: #F51C27;
        color: #F4F4F4;
    }

    .header-left img {
        width: 18px;
        height: 18px;
    }

    .header-left a {
        text-align: center;
    }

    .header-right {
        display: none !important;
    }

    .btn-assinar-mobile {
        display: flex !important;
        order: 3;
    }

    .header-right img {
        width: 20px;
        height: 20px;
    }

    .header-right img:first-child::after {
        content: "|";
        margin-left: 8px;
        margin-right: 8px;
        color: white;
    }


    .main-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 100px 15px 30px 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        flex: 1;
    }

    .aviso-conteudo {
        flex-direction: column;
        text-align: center;
        margin: 20px 15px;
    }

    .main-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .main-content h2 {
        font-size: 27px;
        padding-bottom: 15px;
        line-height: 1;
        font-weight: bold;
    }

    .btn-listen {
        width: 90px;
        height: 40px;
        margin-top: 15px;
    }

    .btn-listen i {
        font-size: 20px;
    }

    .btn-listen span {
        font-size: 11px;
    }

    .search-modal-content {
        width: 95%;
        max-width: none;
        padding: 20px;
    }

    .search-modal-header h2 {
        font-size: 20px;
    }

    .search-form {
        flex-direction: column;
    }

    #searchInput {
        padding: 10px 12px;
        font-size: 14px;
    }

    .search-submit {
        padding: 10px 20px;
        font-size: 13px;
    }

    .filtros-conteudo {
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 20px 0;
        display: none;
    }

    .conteudo-divider-top {
        display: none;
    }

    .filtros-conteudo a {
        margin: 5px 0;
        flex-basis: calc(50% - 10px);
        text-align: center;
    }

    .destaque-terror,
    .destaque-terror-dark {
        padding: 60px 15px 30px 15px;
        margin-bottom: 40px;
        text-align: center;
    }

    .destaque-especial {
        padding: 30px 0px 0px 0px;
    }

    .destaque-especial .destaque-header {
        padding: 0 15px;
    }

    .destaque-especial-imagem {
        border-radius: 0;
        max-width: 100%;
        width: 100%;
    }

    .destaque-especial-imagem img {
        height: 100%;
    }

    .destaque-especial-titulo {
        font-size: 28px;
        line-height: 1.2;
        font-weight: bold;
        margin-bottom: 10px !important;
    }


    .conteudo-destaque-terror {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 30px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .conteudo-destaque-terror-pagina {
        flex: 0 0 calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        scroll-snap-align: start;
    }

    .card-title {
        font-size: 22px;
    }

    .destaque-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: -20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dot.active {
        background: #f51b26;
    }

    .dubladores-section {
        padding: 40px 15px;
    }

    .conteudo-dubladores {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px;
    }

    .card-dublador {
        flex: 0 0 calc(50vw - 25px);
        min-width: calc(50vw - 25px);
        scroll-snap-align: start;
    }

    .dubladores-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .dublador-imagem {
        width: 191px;
        height: 191px;
    }

    .dublador-funcao {
        font-size: 20px;
        font-weight: bold;
        color: #000;
    }


    .dublador-nome {
        font-size: 16px;
    }

    .dublador-descricao {
        font-size: 14px;
        color: #000;
    }

    .dubladores-footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }

    .footer {
        padding: 40px 15px;
    }


    .destaque-especial-descricao {
        font-size: 17px;
        margin-bottom: 10px !important;
    }
}

/* Tablet Large (1024px e acima, mas menos de desktop full) */
@media (min-width: 769px) and (max-width: 1200px) {
    .header {
        height: 75vh;
        padding: 20px 0px;
    }

    .header-top {
        padding: 12px 20px;
        margin-bottom: 20px;
    }

    .main-content {
        width: 40%;
        padding: 40px 0px 0 20px;
        margin-top: 120px;
        text-align: center;
    }

    .main-content h2 {
        font-size: 30px;
        padding-bottom: 15px;
        font-weight: bold;
    }

    .main-content p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .destaque-terror {
        padding: 60px 30px 50px 30px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 60px;
    }

    .destaque-terror-dark {
        padding: 60px 30px 50px 30px;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }



    .conteudo-destaque-terror {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .conteudo-dubladores {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 30px;
        padding: 0px 20px;
    }


}

/* Desktop (1025px e acima) */
@media (min-width: 1200px) {
    .header {
        height: 90vh;
        padding: 20px 0px;
    }

    .header-top {
        padding: 12px 20px;
        margin-bottom: 30px;
    }

    .main-content {
        padding: 50px 0px 0px 40px;
        margin-top: 170px;
        text-align: center;
    }

    .main-content h2 {
        font-size: 42px;
        padding-bottom: 20px;
        font-weight: bold;
    }

    .destaque-terror {
        padding: 60px 50px 0 50px;
        text-align: center;
        align-items: center;
    }

    .destaque-terror-dark {
        padding: 60px 50px 60px 50px;
        text-align: center;
        align-items: center;
    }

    .conteudo-destaque-terror {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 30px;
    }


    .conteudo-dubladores {
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        margin-top: 30px;
        padding: 0px 20px;
    }

}

/* Smartphone Large (600px - 767px) */
@media (min-width: 481px) and (max-width: 600px) {
    .header {
        min-height: 52vh;
        display: flex;
        flex-direction: column;
    }

    .header-top {
        padding: 13px 15px;
        justify-content: space-between;
        align-items: center;
        gap: 12px;

    }

    .menu-hamburger {
        order: 1;
        display: flex;
    }

    .header-center {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .header-center img {
        width: 75px;
    }

    .header-right {
        display: none !important;
    }

    .main-content {
        width: 100%;
        margin: 0;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .main-content h2 {
        font-size: 28px;
        line-height: 1.2;
        font-weight: bold;
    }

    .main-content p {
        font-size: 14px;
        margin-bottom: 0px !important;

    }

    .btn-listen {
        width: 90px;
        height: 40px;
        margin-top: 12px;
    }

    .btn-listen i {
        font-size: 18px;
    }

    .btn-listen span {
        font-size: 12px;
    }

    .search-modal-content {
        width: 90%;
        max-width: 500px;
        padding: 20px;
    }

    .search-modal-header h2 {
        font-size: 18px;
    }

    .search-form {
        flex-direction: column;
    }

    #searchInput {
        padding: 9px 12px;
        font-size: 13px;
    }

    .search-submit {
        padding: 9px 20px;
        font-size: 12px;
    }

    .filtros-conteudo {
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 15px 0;
    }

    .filtros-conteudo a {
        margin: 5px 0;
        flex-basis: calc(50% - 8px);
        text-align: center;
        font-size: 12px;
    }

    .destaque-terror {
        padding: 25px 12px 0px 12px;
        margin-bottom: 30px;
        text-align: center;
    }

    .destaque-terror-dark {
        padding: 60px 12px 25px 12px;
        margin-bottom: 30px;
        text-align: center;
    }

    .conteudo-destaque-terror {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .conteudo-destaque-terror-pagina {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 15px;
    }

    .conteudo-destaque-terror-pagina:last-child {
        border-bottom: none;
    }


    .card-title {
        font-size: 22px;
    }


    .conteudo-dubladores {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        padding-left: 12px;
        padding-right: 12px;
        margin-top: 30px;
    }

    .card-dublador {
        flex: 0 0 calc(50vw - 22px);
        min-width: calc(50vw - 22px);
        scroll-snap-align: start;
    }

    .dublador-imagem {
        width: 191px;
        height: 191px;
    }

    .dublador-funcao {
        font-size: 16px;
        color: #000;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .dublador-nome {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .dublador-descricao {
        font-size: 14px;
        color: #000;
    }

    .aviso-conteudo {
        flex-direction: row;
        text-align: center;
        margin: 20px 15px;
    }

    .destaque-header h2 {
        font-size: 26px;
        font-weight: bold;
    }

    .aviso-conteudo p {
        text-align: left;
        padding-left: 10px;
    }

    .aviso-conteudo img {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 48vh;
        display: flex;
        flex-direction: column;
    }

    .header-top {
        padding: 12px 12px;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .menu-hamburger {
        order: 1;
    }

    .menu-hamburger span {
        width: 20px;
        height: 2.5px;
    }

    .header-center {
        order: 2;
        flex: 1;
        justify-content: center;
        display: flex;
    }

    .header-center img {
        width: 70px;
    }

    .header-right {
        display: none !important;
    }


    .header-left img {
        display: none !important;
    }

    .header-left a {
        font-size: 12px;
        padding: 6px 0;
        text-align: center;
    }

    .connect-btn,
    .btn-header {
        padding: 6px 12px;
        font-size: 11px;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .main-content p {
        font-size: 14px;
        color: #F4F4F4;
        margin-bottom: 0px !important;

    }

    .main-content h2 {
        font-size: 28px;
        line-height: 1;
        font-weight: bold;
        margin-bottom: 0px !important;
    }



    .btn-listen i {
        font-size: 16px;
    }

    .btn-listen span {
        font-size: 12px;
    }

    .search-modal-content {
        width: 90%;
        max-width: 480px;
        padding: 18px;
    }

    .search-modal-header h2 {
        font-size: 16px;
    }

    .search-form {
        flex-direction: column;
        gap: 8px;
    }

    #searchInput {
        padding: 8px 10px;
        font-size: 13px;
    }

    .search-submit {
        padding: 8px 16px;
        font-size: 12px;
    }

    .filtros-conteudo {
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 12px 0;
        display: none;
    }

    .filtros-conteudo a {
        margin: 5px 0;
        flex-basis: calc(50% - 8px);
        text-align: center;
        font-size: 12px;
    }

    .destaque-terror {
        padding: 30px 15px 0px 15px;
        margin-bottom: 40px;
        text-align: center;
    }

    .destaque-terror-dark {
        padding: 60px 15px 30px 15px;
        margin-bottom: 40px;
        text-align: center;
    }

    .destaque-header {
        flex-direction: column;
        align-items: center;
    }

    .destaque-header h2 {
        font-size: 22px;
        font-weight: bold;
    }

    .destaque-subtitulo {
        font-size: 18px;
        padding: 0px 50px;
    }

    .destaque-especial-categoria {
        font-size: 14px;
    }

    .destaque-especial-titulo {
        font-size: 28px;
        line-height: 1.2;
        font-weight: bold;
        margin-bottom: 10px !important;
    }


    .destaque-especial-descricao {
        font-size: 17px;
        margin-bottom: 10px !important;
    }


    .conteudo-destaque-terror {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 10px;
    }

    .conteudo-destaque-terror-pagina {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }

    .conteudo-destaque-terror-pagina:last-child {
        border-bottom: none;
    }


    .card-category {
        font-size: 14px;
        color: #666565 !important;
        font-weight: normal !important
    }

    .card-description {
        font-size: 11px;
    }

    .card-audio img {
        width: 20px;
        height: 20px;
    }

    .card-audio {
        font-size: 14px;
    }

    .filtros-conteudo {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filtros-conteudo a {
        font-size: 12px;
    }

    .aviso-conteudo {
        flex-direction: row;
        text-align: center;
        margin: 20px 15px;
    }



    .aviso-conteudo img {
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-bottom: 10px;
    }


    .aviso-conteudo p {
        text-align: left;
        padding-left: 10px;
    }

    .dubladores-section {
        padding: 10px 15px;
    }



    .footer-descricao {
        font-size: 10px;
    }

    .footer-content {
        gap: 5px !important;
        margin: 0 auto 20px auto !important;
    }

    .conteudo-dubladores {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px !important;
    }

    .card-dublador {
        flex: 0 0 calc(50vw - 25px);
        min-width: calc(50vw - 25px);
        scroll-snap-align: start;
    }

    .dublador-imagem {
        width: 150px;
        height: 150px;
    }

    .dublador-funcao {
        font-size: 22px;
        margin-bottom: 6px;
        color: #000;
        font-weight: bold;

    }

    .dublador-nome {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .dublador-descricao {
        font-size: 14px;
        color: #000;
        padding: 0px 5px;
    }

    .dubladores-footer {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        text-align: center;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .footer {
        padding: 40px 15px 10px 15px !important;
    }

    .footer-content {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-descricao {
        font-size: 10px !important;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-logo img {
        width: 54px !important;
    }

    .footer-copyright {
        font-size: 10px;
        color: #fff !important;
    }
}

/* Extra Small Screens (320px - 480px) */
@media (max-width: 320px) {
    .header {
        min-height: 43vh;
        display: flex;
        flex-direction: column;
    }

    .header-top {
        padding: 10px 10px;
        justify-content: space-between;
        align-items: center;
        gap: 8px;

    }

    .menu-hamburger {
        order: 1;
    }

    .menu-hamburger span {
        width: 18px;
        height: 2px;
        gap: 3px;
    }

    .header-center {
        order: 2;
        flex: 1;
        justify-content: center;
        display: none;
    }

    .header-center img {
        width: 55px;
    }

    .header-right {
        display: none !important;
    }

    .header-right img {
        width: 18px;
        height: 18px;
    }

    .header-right img:first-child::after {
        content: "|";
        margin-left: 6px;
        margin-right: 6px;
        color: white;
        font-size: 12px;
    }

    .header-left a {
        font-size: 11px;
        padding: 5px 0;
        text-align: center;
    }

    .connect-btn,
    .btn-header {
        padding: 5px 10px;
        font-size: 10px;
    }

    .main-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 15px 10px 10px 10px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .main-content p {
        font-size: 11px;
        margin-bottom: 6px;
        font-weight: 600;
    }

    .main-content h2 {
        font-size: 16px;
        padding-bottom: 6px;
        line-height: 1;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .btn-listen {
        width: 70px;
        height: 30px;
        margin-top: 6px;
    }

    .btn-listen i {
        font-size: 14px;
    }

    .btn-listen span {
        font-size: 8px;
    }

    .search-modal-content {
        width: 85%;
        max-width: 450px;
        padding: 15px;
    }

    .search-modal-header {
        margin-bottom: 15px;
    }

    .search-modal-header h2 {
        font-size: 14px;
    }

    .search-form {
        flex-direction: column;
        gap: 8px;
    }

    #searchInput {
        padding: 7px 10px;
        font-size: 12px;
    }

    .search-submit {
        padding: 7px 14px;
        font-size: 11px;
    }

    .destaque-terror {
        padding: 20px 10px 0px 10px;
        margin-bottom: 30px;
        text-align: center;
    }

    .destaque-terror-dark {
        padding: 60px 10px 20px 10px;
        margin-bottom: 30px;
        text-align: center;
    }

    .destaque-header h2 {
        font-size: 16px;
    }

    .destaque-header {
        gap: 8px;
    }

    .conteudo-destaque-terror {
        gap: 15px;
    }

    .conteudo-destaque-terror-pagina {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 12px;
    }

    .conteudo-destaque-terror-pagina:last-child {
        border-bottom: none;
    }


    .card-title {
        font-size: 11px;
    }

    .card-category {
        font-size: 9px;
    }

    .card-description {
        font-size: 10px;
    }

    .card-audio {
        font-size: 9px;
    }

    .filtros-conteudo {
        margin: 10px;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .filtros-conteudo a {
        margin: 4px 0;
        flex-basis: calc(50% - 5px);
        text-align: center;
        font-size: 10px;
    }

    .aviso-conteudo {
        margin: 12px 8px;
    }

    .aviso-conteudo img {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
    }

    .aviso-conteudo p {
        font-size: 10px;
    }

    .dubladores-section {
        padding: 30px 10px;
    }

    .conteudo-dubladores {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 30px;
    }

    .card-dublador {
        flex: 0 0 calc(50vw - 18px);
        min-width: calc(50vw - 18px);
        scroll-snap-align: start;
    }

    .dublador-imagem {
        width: 100px;
        height: 100px;
    }

    .dublador-funcao {
        font-size: 9px;
    }

    .dublador-nome {
        font-size: 11px;
    }

    .dublador-descricao {
        font-size: 10px;
    }

    .footer {
        padding: 25px 10px;
    }

    .footer-content {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo {
        text-align: left;
    }

    .footer-logo img {
        width: 80px;
    }

    .footer-copyright {
        font-size: 10px;
        text-align: center;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

/* FOOTER */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 10px 10px 10px;
    margin-top: 60px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto 10px auto;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-descricao {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background-color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom {
    max-width: 900px;
    margin: 10px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-copyright {
    font-size: 13px;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F51C27;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ── Paywall ── */
.paywall-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paywall-modal-box {
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.paywall-modal-box h2 {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.paywall-modal-box p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.paywall-btn {
    display: inline-block;
    margin-top: 8px;
    background: #e53935;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.paywall-btn:hover {
    background: #c62828;
}

.paywall-fechar {
    background: transparent;
    border: none;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    margin-top: 4px;
    text-decoration: underline;
}

.paywall-fechar:hover {
    color: #888;
}

/* Player bloqueado — overlay inline no header */
.header-player.player-bloqueado {
    position: relative;
    pointer-events: none;
}

.player-paywall-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    pointer-events: all;
}

.player-paywall-inline p {
    font-size: 13px;
    color: #ccc;
    text-align: center;
    margin: 0;
}

.player-paywall-inline .paywall-btn {
    padding: 9px 24px;
    font-size: 12px;
    margin-top: 4px;
}

/* ============================================
   CORPO DA NOTÍCIA (imagem + texto completo)
   ============================================ */

.noticia-corpo {
    max-width: 760px;
    margin: 10px auto 0;
    padding: 0 24px;
    width: 100%;
}

.noticia-corpo-imagem {
    position: relative;
}

.noticia-corpo-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.noticia-corpo-credito {
    display: block;
    font-size: 11px;
    color: #0f0f0f;
    margin-top: 6px;
    text-align: right;
    font-style: italic;
}

.noticia-corpo-texto {
    font-size: 20px;
    line-height: 1.75;
    color: #000000;
}

.noticia-corpo-texto strong {
    color: #000000;
    font-weight: 700;
}

.noticia-corpo-texto u {
    text-decoration-color: #e53935;
}

.fala-linha {
    display: block;
    padding-left: 18px;
    border-left: 3px solid #e53935;
    margin: 14px 0;
    color: #ccc;
    font-style: italic;
}



.noticia-corpo-texto figure.noticia-corpo-imagem img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.noticia-corpo-texto figure.noticia-corpo-imagem figcaption.noticia-corpo-credito {
    display: block;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

@media (max-width: 768px) {
    .noticia-corpo {
        padding: 0 16px;
    }

    .noticia-corpo-texto {
        font-size: 18px;
    }
}