:root {
    --main-bg-body: #050505;
    --main-bg-header: #050505df;
    --main-bg-cont: #121212;
    --main-bg-cont-2: #212121;
    --main-bg-cont-3: #1e1e1e;
    --main-bg-cont-4: #2d2d2d;
    --bg-menu: #e7e7e7;
    --bg-menu-color: #222;
    --subnav-color: #ddd;
    --subnav-color-hover: #fff;
    --main-color: #5c5cff;
    --green-color: #92f392;
    --green-color-2: #92f3929f;
    --green-color-hover: #92f3920e;
    --green-color-hover-2: #92f3922b;
    --green-color-border: #92f39263;
    --main-text: #d7d7d7;
    --main-text-clean: #a5a5a5;
    --main-text-white: #fff;
    --main-text-3: #525252;
    --border-color: #38383884;
    --border-color-2: #494949;
    --max-width-default: 1380px;
    --story-width: 120px;
    --story-height: 160px;
    --color-red: #ff6464;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body,
input,
button,
select,
textarea {
    font-family: 'Google Sans', sans-serif;
    font-size: 1em;
    font-weight: 400;
}

body {
    background: var(--main-bg-body);
    color: var(--main-text);
}

/* Garante que o efeito elástico não quebre componentes do WP */
body :not(#wpadminbar *) {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

img {
    max-width: 100%;
    display: flex;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: var(--main-text);
    transition: none;
}

a:hover {
    color: var(--main-text-white);
}

.wd-header-search input:-webkit-autofill,
.wd-header-search input:-webkit-autofill:hover,
.wd-header-search input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 100px var(--main-bg-cont) inset !important;
    -webkit-text-fill-color: var(--main-text-white) !important;
    caret-color: var(--main-text-white);
    border: none !important;
}

.wd-flex {
    display: flex;
    flex-wrap: wrap;
}

.wd-container {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
    margin-bottom: 25px;
}

.wd-content {
    flex-basis: var(--max-width-default);
    max-width: var(--max-width-default);
    margin: 0 auto;
}

.wd-border-radius {
    border-radius: 10px;
}

.wd-box {
    padding: 16px;
    border: 1px solid var(--border-color);
    background: var(--main-bg-cont);
}

/* main-header */
.wd-header-main {
    width: 100%;
    z-index: 100;
    top: 0;
    background: var(--main-bg-header);
    backdrop-filter: blur(5px);
    position: sticky;
    position: -webkit-sticky;
    justify-content: center;
}

.wd-header-main-content {
    flex-basis: 1680px;
    padding: 10px 16px;
    justify-content: space-between;
    align-items: center;
}

.wd-logo {
    flex-basis: 180px;
    padding-right: 16px;
}

.wd-logo-desktop {
    width: 100%;
    height: 28px;
    background: url(../svg/logo.svg) no-repeat center;
    background-size: contain;
}

.wd-logo-desktop-plus {
    width: 100%;
    height: 28px;
    background: url(../svg/wd-plus.svg) no-repeat center;
    background-size: contain;
}

/* --- WD Search Block --- */
.wd-header-search {
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wd-header-search form {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    background: var(--main-bg-cont);
    padding: 4px 4px 4px 18px;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.wd-header-search form:focus-within {
    border-color: transparent;
}

.wd-header-search form::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 300%;
    background: conic-gradient(from 0deg,
            #ff0000, #ff7300, #fffb00, #48ff00,
            #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    transform: translate(-50%, -50%) rotate(0deg);
    animation: wd-rotate-chroma 4s linear infinite;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.wd-header-search form::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--main-bg-cont);
    border-radius: 24px;
    z-index: -1;
    opacity: 1;
}

.wd-header-search form:focus-within::before {
    opacity: 0.40;
}

.wd-header-search input {
    position: relative;
    z-index: 3;
    background: transparent !important;
    font-weight: 400;
    color: var(--main-text-white);
    border: none;
    padding: 8px 12px 8px 0;
    flex-basis: 100%;
    max-width: calc(100% - 48px);
    outline: none;
    caret-color: var(--main-text-white);
}

.wd-header-search input::placeholder {
    color: var(--main-text-clean);
}

.wd-header-search input:-webkit-autofill,
.wd-header-search input:-webkit-autofill:hover,
.wd-header-search input:-webkit-autofill:focus,
.wd-header-search input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--main-bg-cont) inset !important;
    -webkit-text-fill-color: var(--main-text-white) !important;
    font-family: 'DM Sans', sans-serif !important;
    transition: background-color 5000s ease-in-out 0s;
}

.wd-header-search button {
    position: relative;
    z-index: 3;
    flex-basis: 42px;
    height: 34px;
    color: var(--main-text-clean);
    background: var(--main-bg-cont-2);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    cursor: pointer;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.wd-header-search button svg {
    width: 20px;
    height: 20px;
}

.wd-header-search button:hover {
    color: var(--main-text-white);
    filter: brightness(1.2);
}

/* --- Animação Chroma --- */
@keyframes wd-rotate-chroma {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.wd-header-right-menu {
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.trp-ls-dropdown {
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.trp-language-switcher {
    margin-bottom: 0 !important;
    margin-bottom: -10px !important;
    background: var(--main-bg-cont) !important;
    border-radius: 20px !important;
}

.trp-language-item{
    justify-content: center !important;
}

.wd-header-right-menu ul {
    align-items: center;
    gap: 16px;
}

.wd-header-right-menu li {
    display: inline-flex;
}

.wd-header-right-menu a {
    display: flex;
    font-weight: 600;
    font-size: 0.9em;
    flex-wrap: wrap;
    align-items: center;
    color: var(--main-text-clean);
    justify-content: flex-start;
    padding: 8px;
    border-radius: 25px;
    background: var(--main-bg-cont);
}

.wd-header-right-menu a svg {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.wd-header-right-menu a:hover {
    background: var(--main-bg-cont-3);
    color: var(--main-text);
}

.wd-header-right-menu a.btn-login {
    background: var(--bg-menu);
    color: var(--bg-menu-color);
}

.trp-language-item__current img {
    width: 20px !important;
}

.trp-language-item__current {
    padding: 8px 2px 8px 12px !important;
}

.wd-header-right-menu a.btn-upgrade {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: var(--green-color-hover);
    border-radius: 25px;
    z-index: 1;
    color: var(--green-color);
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.wd-header-right-menu a.btn-upgrade svg {
    margin-right: 0;
}

.wd-header-right-menu a.btn-upgrade:hover {
    background: var(--green-color-hover-2);
    transition: opacity 0.3s ease;
}

/* wd-breads */
.wd-breads {
    font-size: 0.85em;
    padding: 10px;
    color: var(--main-text-clean);
}

/* subnav */
.wd-subnav {
    width: 100%;
    max-width: 100%;
    font-weight: 500;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding: 4px 16px;
    margin-bottom: 25px;
}

.wd-subnav-cont {
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    justify-content: center;
}

.wd-subnav ul {
    width: auto;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    -webkit-overflow-scrolling: touch;
    display: flex;
    gap: 25px;
}

.wd-subnav li {
    display: inline-flex;
    flex-shrink: 0;
}

.wd-subnav li:last-of-type {
    margin-right: 0;
}

.wd-subnav a {
    display: flex;
    color: var(--subnav-color);
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
}

.wd-subnav li a svg,
.wd-subnav li a img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

.wd-subnav li a:hover {
    color: var(--subnav-color-hover);
}

.wd-subnav ul::-webkit-scrollbar {
    height: 5px;
}

.wd-subnav ul::-webkit-scrollbar-track {
    background: rgba(254, 254, 254, 0.2);
    border-radius: 2px;
}

.wd-subnav ul::-webkit-scrollbar-thumb {
    background: rgba(254, 254, 254, 0.2);
    border-radius: 2px;
}

.wd-subnav ul::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

/* main-title */
.wd-main-title {
    margin-bottom: 20px;
    box-shadow: 0 1px 0 #111;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    flex-basis: 100%;
    padding-bottom: 16px;
}

.wd-main-title h2 {
    align-items: flex-start;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
}

.wd-main-title svg {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    color: var(--main-text-clean);
}

.wd-main-title span {
    margin-left: 8px;
    color: var(--main-text-white);
}

/* wd-stories */
.wd-stories {
    max-width: var(--max-width-default);
}

/* Estado inicial do Swiper para evitar quebra de layout */
.wd-stories-swiper {
    overflow: hidden;
    /* Esconde os slides que "vazarem" */
    visibility: hidden;
    /* Oculta tudo até o CSS carregar */
}

.wd-stories-swiper.swiper-initialized {
    visibility: visible;
    /* Mostra tudo quando o Swiper carregar */
}

.wd-stories-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    /* Impede o empilhamento vertical */
}

/* Força o tamanho do slide antes do JS calcular */
.wd-stories-swiper .swiper-slide {
    flex-shrink: 0;
    width: var(--story-width) !important;
    height: var(--story-height);
}

.swiper-slide {
    width: var(--story-width) !important;
    height: var(--story-height);
}

.item-story {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--main-bg-cont-2);
}

.item-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.item-story header {
    position: absolute;
    bottom: 0;
    width: 102%;
    padding: 14px;
    color: var(--main-text-white);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    font-size: 1em;
    font-weight: 600;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 32px;
    height: 32px;
    background: var(--main-bg-cont-2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    cursor: pointer;
    color: var(--main-text-color);
    transition: all 0.2s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--border-color);
}

.swiper-button-prev-custom svg,
.swiper-button-next-custom svg {
    margin: 0;
    width: 24px;
    height: 24px;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.wd-story-show-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--main-bg-cont-2);
    border: 1px dashed var(--border-color);
    color: var(--main-text-color);
    height: var(--story-height);
    width: var(--story-width);
    font-weight: 600;
}

.wd-story-show-more svg {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
}

/* wd-videos */
.wd-videos-cont {
    flex-basis: 100%;
    gap: 16px;
    justify-content: flex-start;
}

.wd-videos-cont article {
    flex-basis: calc(20% - (16px * 4 / 5));
    margin-bottom: 25px;
}

.wd-videos-cont img {
    width: 100%;
    height: auto;
    /* Garante que a altura siga a largura proporcionalmente */
    aspect-ratio: 380 / 214;
    /* Define a proporção exata do seu add_image_size */
    object-fit: cover;
    /* Garante que a imagem preencha o espaço sem achatar */
    z-index: 1;
}

.wd-videos-cont header {
    margin: 16px 0 0 0;
}

.wd-videos-meta {
    margin-top: 10px;
    font-size: 0.9em;
    color: var(--main-text-clean);
}

.wd-videos-cont h1 {
    font-size: 1.1em;
    font-weight: 600;
}

.wd-videos-cont a {
    color: var(--main-text);
    text-decoration: none;
}

.wd-videos-cont a:hover {
    text-decoration: none;
    color: var(--main-text-white);
}

.wd-videos-for-members {
    font-size: 0.75em;
    font-weight: 500;
    color: var(--main-text-clean);
    background: var(--green-color-hover);
    color: var(--green-color);
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 16px;
}

.wd-videos-for-members svg {
    width: 18px;
    height: 18px;
}

.wd-videos-pages {
    flex-basis: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    justify-content: center;
    align-items: center;
}

/* wd-cats */
.wd-cats-x-tags-list {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 16px;
}

.wd-cats-x-tags-list li {
    display: inline-flex;
    list-style: none;
}

.wd-cats-x-tags-list a {
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--main-bg-cont-2);
    color: var(--main-text);
    transition: opacity 0.3s ease;
}

.wd-cats-x-tags-list a:hover {
    text-decoration: none;
    color: var(--main-text-white);
    background-color: var(--main-bg-cont-4);
}

.wd-cats-x-tags-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* wd-footer */
.wd-footer {
    justify-content: space-between;
    gap: 16px;
}

.wd-footer .wd-copy {
    font-size: 0.9em;
    color: var(--main-text-clean);
}

.wd-footer ul {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wd-footer li {
    display: inline-flex;
}

.wd-footer a {
    color: var(--main-text-clean);
    font-size: 0.9em;
}

.wd-footer a:hover {
    color: var(--main-text-white);
}

/* call to wd plus */
.wd-call-to-plus {
    width: 100%;
    padding: 20px 16px;
    position: relative;
    justify-content: center;
    font-size: 0.9em;
    text-align: center;
    background: url(src/svg/bg-call-to-plus.svg) no-repeat center cover;
}

.wd-call-to-plus::before {
    content: '';
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    background: rgba(92, 92, 255, 10);
    background: linear-gradient(90deg, rgba(92, 92, 255, 0.482) 0%, rgba(8, 0, 36, 1) 50%, rgba(146, 243, 146, 0.38) 100%);
}

.wd-call-to-plus a {
    color: var(--green-color);
    font-weight: 600;
}

/* pagination */
.wd-pagination {
    flex-basis: 100%;
    justify-content: center;
    gap: 8px;
    padding: 15px 0 0 0;
    align-items: center;
}

.wd-pagination a {
    font-weight: 500;
    background: var(--main-bg-cont-2);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 10px;
    color: var(--main-text-clean);
}

.wd-pagination a:hover {
    text-decoration: none;
    color: var(--main-text);
}

.wd-pagination .current {
    color: var(--main-text);
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 10px;
    background: var(--main-bg-cont-4);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
}

/* wd-single */
.wd-player {
    flex-basis: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.wd-single-4dd5s {
    flex-basis: 300px;
}

.wd-single-4dd5s div {
    flex-basis: 300px;
    height: 250px;
    margin-bottom: 16px;
    background: var(--main-bg-cont);
}

.wd-single-4dd5s div:last-of-type {
    margin-bottom: 0;
}

.wd-single-header-box {
    flex-basis: 100%;
    margin-top: 16px;
}

.wd-single-header-call-upgrade {
    position: relative !important;
    text-align: center;
    font-size: 0.9em;
}

.wd-single-header-call-upgrade::before {
    position: absolute;
    content: '';
    background: var(--green-color-2);
    top: -2px;
    width: 40%;
    height: 4px;
    border-radius: 4px;
    left: 30%;
}

.wd-single-header-call-upgrade a {
    font-weight: 600;
    color: var(--green-color);
}

.wd-single-header {
    margin-top: 25px;
    flex-basis: 100%;
}

.wd-single-header-tags {
    margin-bottom: 16px;
}

.wd-single-header-tags a {
    margin-right: 8px;
}

.wd-single-header-tags a:hover {
    text-decoration: underline;
}

.wd-single-header header {
    margin: 16px 0;
}

.wd-single-header header h1 {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--main-text-white);
}

.wd-single-player {
    flex-basis: calc(100% - 316px);
}

.wd-single-player-for-members {
    width: 100%;
    padding: 56.25% 0 0 0;
    position: relative;
    background-position: center;
}

.wd-single-player-for-members-cont {
    width: calc(100% + 4px);
    text-shadow: 1px 1px 2px var(0, 0, 0, 0.3);
    height: calc(100% + 4px);
    padding: 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: absolute;
    left: -2px;
    top: -2px;
    align-items: center;
    justify-content: center;
}

.wd-single-player-for-members-cont h3 {
    font-size: 1.1em;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    text-align: center;
}

.wd-single-player-for-members-cont svg {
    width: 20px;
    height: 20px;
}

.wd-single-player-for-members-cont p {
    flex-basis: 100%;
    font-size: 0.95em;
    margin: 16px 0;
    flex-basis: 100%;
    text-align: center;
}

.wd-single-player-for-members-cont i {
    margin-right: 16px;
    width: 38px;
    height: 38px;
    background: var(--green-color-hover-2);
    border-radius: 50px;
    color: var(--green-color);
    justify-content: center;
    align-items: center;
}

.wd-plus-text-center {
    justify-content: center;
}

.wd-plus-text-center>div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wd-single-player-for-members-cont a button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    background: var(--green-color-hover-2);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    color: var(--main-text);
}

.wd-single-player-for-members-cont a svg {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.wd-single-player-for-members-cont a button:hover {
    background: var(--green-color);
    color: var(--main-text-3);
}

.user-menu-wrapper {
    position: relative;
    display: inline-block;
}

.user-menu-btn {
    background: var(--main-bg-cont);
    color: var(--main-text);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 6px;
    transition: background 0.3s;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.user-menu-btn svg {
    width: 24px;
    height: 24px;
}

.user-menu-btn:hover {
    background: var(--main-bg-cont-2);
    color: var(--main-text-white);
}

.user-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--main-bg-cont);
    border: 1px solid var(--border-color);
    min-width: 220px;
    max-width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 999;
    border-radius: 10px;
    margin: 10px 0 0 0;
}

.user-dropdown-content.is-active {
    display: block;
}

.user-dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user-dropdown-content li a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.user-dropdown-content li a:hover {
    background-color: #f1f1f1;
}

.user-info {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9em;
}

.user-info strong {
    margin-bottom: 16px;
    display: flex;
}

.user-info small {
    display: flex;
}


.wd-user-info-cont {
    padding: 16px;
}

.wd-header-call-to-up-level {
    margin-top: 16px;
}

/* LIKES */
.sl-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    position: relative;
}

.sl-wrapper a {
    display: flex;
    border: 1px solid var(--border-color);
    font-size: 1em;
    font-weight: 600;
    padding: 8px 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: var(--main-bg-cont-2);
    color: var(--main-text);
}

.sl-wrapper svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.sl-wrapper a:hover {
    text-decoration: none;
    color: var(--main-text-white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Container do botão para garantir que as partículas saiam dele */
.sl-wrapper {
    position: relative;
    display: inline-block;
}

/* Estilo base do botão */
.sl-button {
    position: relative;
    transition: transform 0.1s ease;
    z-index: 2;
}

.sl-button:active {
    transform: scale(0.9);
}

.wd-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Aumentamos de 6px para 10px */
    width: 8px;
    height: 8px;
    background-color: var(--main-color);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    /* Adiciona um leve brilho vermelho */
    box-shadow: 0 0 8px rgba(0, 4, 255, 0.8);
}

@keyframes wd-explode {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    /* O translate final agora terá valores maiores vindos do JS */
    100% {
        transform: translate(var(--x), var(--y)) scale(0.5);
        opacity: 0;
    }
}

/* Colors */
a.liked {
    color: var(--main-text);
    background: var(--main-bg-cont-2);
}

a.liked svg {
    color: var(--main-text)
}

a.liked:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

a.liked:hover svg {
    color: var(--color-red);
}

/* Loader */
.wd-sl-loader {
    border-radius: 20px;
    position: absolute;
    z-index: 2;
    left: 0;
    padding: 0;
    top: 0px;
    text-align: center;
    display: flex;
    width: 100%;
    left: 0;
    top: 0;
    justify-content: center;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    background: var(--main-bg-cont-2);
}

.wd-sl-loader svg {
    width: 22px;
    height: 22px;
    margin: 0;
    animation: wd-spinner-girar 1s linear infinite;
    transform-origin: center;
    /* Garante que ele gire em torno do próprio eixo */
    display: inline-block;
}

.wd-single-meta {
    justify-content: flex-start;
    align-items: center;
}

.wd-single-meta-like-down {
    margin-left: 16px;
}

.wd-single-meta-like-down a {
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 8px 12px;
    background: var(--main-bg-cont-2);
    border: 1px solid var(--border-color);
    color: var(--main-text);
    border-radius: 20px;
}

.wd-single-meta-like-down svg {
    width: 20px;
    margin-right: 8px;
    height: 20px;
}

.wd-single-meta-like-down a:hover {
    color: var(--main-text-white);
}

.wd-single-date-div {
    margin-left: 16px;
    color: var(--main-text-clean);
}

.wd-single-header-cats {
    flex-basis: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.wd-single-header-cats a:hover {
    text-decoration: underline;
}

.wd-playerx {
    position: relative;
    width: 100%;
    background: var(--main-bg-cont);
    border: 1px solid var(--border-color);
}

@keyframes wd-spinner-girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wd-menu-mobile {
    display: none;
}

.wd-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Escondido à direita */
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--main-bg-cont);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.wd-mobile-nav.is-active {
    right: 0;
}

/* Estilos da lista de menu */
.wd-mobile-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.wd-mobile-list li a {
    color: #fff;
    display: block;
    padding: 15px 0;
    font-size: 1.2rem;
    text-decoration: none;
    border-bottom: 1px solid #222;
}

.wd-close-menu {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    float: right;
    border-radius: 20px;
    background: var(--main-bg-cont-2);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 6px;
    position: absolute;
    top: 20px;
    right: 20px;

}

.wd-close-menu svg {
    width: 20px;
    height: 20px;
}

.wd-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 9998;
}

.wd-menu-backdrop.is-active {
    display: block;
}

.wd-mobile-menu-container {
    padding: 60px 0 0 0;
}

.wd-mobile-menu-container li {
    list-style: none;
}

.wd-mobile-menu-container a {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    justify-content: flex-start;
}

.wd-mobile-menu-container svg {
    width: 22px;
    margin-right: 16px;
    height: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* wd-error */
.wd-error {
    justify-content: space-between;
    align-items: center;
    flex-basis: 100%;
}

.wd-error figure {
    flex-basis: 320px;
    padding-left: 16px;
}

.wd-error-text {
    flex-basis: calc(100% - 320px);
}

.wd-error-text h1 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 16px;
}

.wd-error-text ol {
    padding-left: 28px;
    margin-top: 20px;
}

.wd-error-text li {
    margin-bottom: 10px;
}

.wd-error-text h2 {
    margin-top: 20px;
}

/* wd-contact */
.wd-contact {
    justify-content: center;
    align-items: center;
    flex-basis: 100%;
}

.wd-contact-cont {
    flex-basis: 420px;
}

.wd-contact-cont h1 {
    font-size: 1.4em;
    font-weight: 700;
    padding-bottom: 16px;
    flex-basis: 100%;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 16px;
    justify-content: flex-start;
    align-items: center;
}

.wd-contact-cont h1 svg {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

.wpcf7 {
    max-width: 100%;
    width: 100%;
}

.wpcf7 p {
    margin-top: 12px;
}

.wpcf7 form p:last-of-type {
    padding: 6px 0 0 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 !important;
}

.wpcf7 form p:last-of-type input[type="submit"] {
    background: var(--main-bg-cont-2);
    color: var(--main-text);
    border: 0;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 20px;
}

.wpcf7 form p:last-of-type input[type="submit"]:hover {
    background: var(--main-color);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}

.wpcf7 form .wpcf7-spinner {
    margin: 0 !important;
    background-color: var(--color-black);
}

.wpcf7 span {
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 12px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
    max-width: 640px;
    width: 100%;
    background: var(--main-bg-cont-2);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    font-weight: 400;
    color: var(--main-text-white);
    margin: 4px 0 6px 0;
    resize: none;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus {
    border-color: var(--border-color-2);
}

.wpcf7 form .wpcf7-response-output {
    border: 0 !important;
    border-radius: 8px;
    margin: 15px 0 0 0 !important;
    font-size: 0.9em;
    padding: 8px 12px !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.10);
}

.wpcf7 form.init .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    background: #46b450;
    /* Green */
    color: #fff !important;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #dc3232;
    /* Red */
    color: #fff !important;
}

.wpcf7 form.spam .wpcf7-response-output {
    background: #f56e28;
    /* Orange */
    color: #fff !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #f9e3a7;
    color: #111;
    /* Yellow */
}

.wd-archive-empty {
    padding: 80px 0;
    flex-basis: 100%;
    justify-content: center;
    text-align: center;
}

.wd-archive-empty svg {
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
}

/* parceiros */
.wd-friends-banners {
    position: relative;
    width: calc(100% + 8px);
    margin-left: -4px;
}

.wd-friends-banners div {
    flex-basis: 16.666%;
    padding: 4px;
    margin-bottom: 8px;
}

.wd-friends-banners div img {
    width: 100%;
    border-radius: 2px;
}

.wd-friends-list {
    flex-basis: 100%;
    justify-content: center;
}

.wd-friends-list ul {
    flex-basis: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9em;
    justify-content: center;
}

.wd-friends-list li {
    display: inline-flex;
    text-transform: capitalize;
}

.wd-mon-mobile {
    display: none;
}

@media screen and (max-width:680px) {
    .wd-logo {
        padding-right: 0;
    }

    .wd-header-search {
        order: 3;
        flex-basis: 100%;
        margin-top: 16px;
    }
}

@media screen and (max-width:980px) {
    .wd-videos-cont article {
        flex-basis: calc(25% - (16px * 3 / 4))
    }
}

@media screen and (max-width:860px) {
    .wd-single-date-div {
        margin-left: 0;
        flex-basis: 100%;
        margin-top: 16px;
    }

    .wd-friends-banners div {
        flex-basis: 25%;
    }

    .wd-error-text {
        flex-basis: 100%;
        order: 2;
        margin-top: 20px;
        text-align: center;
    }

    .wd-error-text li {
        list-style: none;
    }

    .wd-error {
        justify-content: center;
    }

    .wd-mon-mobile{
        display: flex;
    }

}

@media screen and (max-width:760px) {
    .wd-videos-cont article {
        flex-basis: calc(33.33% - (16px * 2 / 3))
    }

    .wd-single-player {
        flex-basis: 100%;
    }

    .wd-single-4dd5s {
        flex-basis: 100%;
        margin-top: 25px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .wd-single-4dd5s div:last-of-type {
        display: none;
    }


    .wd-single-4dd5s div {
        flex-basis: 300px;
        margin-bottom: 0;
    }

}

@media screen and (max-width:620px) {
    .wd-videos-cont article {
        flex-basis: calc(50% - (16px * 1 / 2))
    }

    .wd-logo {
        flex-basis: 120px;
    }

    .wd-copy {
        flex-basis: 100%;
        text-align: center;
    }

    .wd-footer ul {
        flex-basis: 100%;
        justify-content: center;
    }

    .wd-header-right-menu ul {
        display: none;
    }


    .wd-menu-mobile {
        display: flex;
    }

    .wd-menu-mobile button {
        background: var(--main-bg-cont);
        border: 0;
        border-radius: 25px;
        padding: 8px;
        color: var(--main-text);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .wd-menu-mobile button:hover {
        background: var(--main-bg-cont-2);
        color: var(--main-text-white);
    }

    .wd-menu-mobile button svg {
        width: 22px;
        height: 22px;
    }

    .wd-friends-banners div {
        flex-basis: 33.333%;
    }
}

@media screen and (max-width:480px) {
    .wd-videos-cont article {
        flex-basis: 100%;
    }

    .wd-logo-desktop {
        display: none;
    }

    .wd-logo-mobile {
        display: flex;
        width: 52px;
        height: 36px;
        background: url(../svg/wd-logo-mobile.svg) no-repeat center;
        background-size: contain;
    }

    .wd-logo-mobile-plus {
        display: flex;
        width: 64px;
        height: 38px;
        background: url(../svg/wd-logo-mobile-plus.svg) no-repeat center;
        background-size: contain;
    }

    .wd-logo {
        flex-basis: 48px;
    }
}

@media screen and (max-width:360px) {

    .wd-pagination .next,
    .wd-pagination .prev {
        flex-basis: 100%;
        text-align: center;
    }
}

/* vidstack */
media-player {
    aspect-ratio: auto !important;
    translate: none !important;
    transform: none !important;
    border-radius: 8px !important;
    position: absolute !important;
    top: 0;
    max-width: 100%;
    height: 100%;
}

media-player video {
    max-width: auto;
    background-color: #000 !important;
    border-radius: 8px !important;
    height: 100%
}

.vds-volume-popup {
    background: var(--main-bg-header) !important;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
    border: rgba(254, 254, 254, 0.1);
}

.vds-buffering-spinner,
.vds-buffering-indicator svg {
    width: 64px !important;
    height: 64px !important;
}

.vds-buffering-spinner {
    position: absolute;
    width: 64px !important;
    height: 64px !important
}

.vds-menu-section-title {
    padding: 2px 8px;
    color: #fff
}

.vds-menu-section-value {
    margin-right: 20px
}

.vds-menu-section-body,
.vds-menu-items,
.vds-menu-item,
#custom-context-menu {
    border-radius: 8px;
    background: var(--main-bg-header)
}

.vds-menu-items,
.vds-button:hover,
#custom-context-menu {
    backdrop-filter: blur(16px)
}

.vds-menu-items,
#custom-context-menu {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
}

.vds-button:hover {
    background: var(--main-bg-header)
}

.vds-menu-item {
    margin-bottom: 4px;
}

.hidden-mobile {
    align-items: center;
}

.unmute-button {
    position: absolute;
    bottom: 85px;
    right: 16px;
    border: 1px solid rgba(254, 254, 254, 0.15);
    border-radius: 25px;
    z-index: 999;
    background: var(--main-bg-header);
    backdrop-filter: blur(16px);
    color: white;
    padding: 12px 16px;
    font-size: 1em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.unmute-button svg {
    width: 20px;
    height: 20px;
}

.unmute-button.show {
    opacity: 1;
    pointer-events: auto;
}

.hidden-div-player {
    padding: 0 !important;
}

.wd-video-player-novo {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    margin: 0 auto;
}

.wd-video-player-novo video::-webkit-media-controls-overlay-enclosure,
.wd-video-player-novo video::-webkit-media-controls-enclosure {
    display: none !important;
}

.wd-video-player-novo video {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.wd-single-more-posts {
    flex-basis: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    justify-content: center;
}

.wd-single-more-posts a {
    color: var(--main-text);
    text-decoration: none;
    font-weight: 600;
    background: var(--main-bg-cont-3);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.wd-single-more-posts a:hover {
    background: var(--main-bg-cont-2);
    color: var(--main-text-white);
}

.wd-single-more-posts a svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.wd-single-not-video {
    padding: 56.25% 0 0 0;
    flex-basis: 100%;
    position: relative;
}

.wd-single-not-video-cont {
    position: absolute;
    padding: 16px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.wd-single-not-video-cont svg {
    width: 32px;
    height: 32px;
    display: block;
    margin-bottom: 20px;
}

.wd-single-not-video-cont span {
    text-align: center;
    font-size: 0.9em;
}

.wd-single-not-video iframe,
.wd-single-not-video video {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 8px;
}

/* page */
.wd-page-cont ul,
.wd-page-cont p,
.wd-page-cont h1,
.wd-page-cont h2,
.wd-page-cont h3 {
    margin-bottom: 16px;
}

.wd-page-cont ul,
.wd-page-cont ol {
    margin-left: 36px;
}

.wd-page-cont li {
    margin-bottom: 8px;
}

.wd-page-cont h2 {
    font-size: 1.4em;
    font-weight: 700;
}

@media screen and (max-width:460px) {
    .wd-video-player-novo.portrait {
        padding-top: 177.77%;
    }
}

@media screen and (max-width:720px) {
    .unmute-button {
        bottom: 65px;
        right: 10px;
    }

    .vds-settings-menu-items {
        transform: translateY(-20px) !important;
    }
}