/*
Theme Name: WP-SEXMUTANT
Theme URI: https://sexmutant.com
Author: WP-Script
Author URI: https://wp-script.com
Description: Tema WordPress para site de vídeos adultos baseado em sexmutant.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp-sexmutant
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --primary-color: #F87575;
    --secondary-color: #f55050;
    --header-bg: #000;
    --body-bg: #dadada;
    --text-primary: #383838;
    --text-secondary: #6c757d;
    --text-muted: #808080;
    --white-color: #fff;
    --border-color: rgba(0, 0, 0, 0.1);
    --card-bg: #fff;
    --card-hover: #f8f8f8;
}

/* ========================================
   FONT DISPLAY OPTIMIZATION
======================================== */
@font-face {
    font-family: system-ui;
    font-display: swap;
}

/* ========================================
   RESET & NORMALIZE
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-display: swap;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #383838;
    background-color: #dadada;
    transition: color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: #383838;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.fa {
    transition: .3s all;
}

/* ========================================
   LAYOUT
======================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 .625rem;
}

.wrap {
    padding: 20px 0;
}

.home .site-main {
    padding-top: 20px;
}

/* ========================================
   HEADER DESKTOP
======================================== */
.header-desktop {
    background-color: #000;
    border-bottom: 1px solid #2e2e2e;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 64px;
    display: flex;
    align-items: center;
}

.header-desktop .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white-color);
}

.site-favicon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    transition: color 0.3s;
}

.site-title:hover {
    color: var(--primary-color);
}

.site-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.site-title a:hover {
    color: var(--secondary-color);
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    justify-content: flex-end;
}

.header-desktop .main-navigation ul {
    justify-content: end;
    padding: 0;
    gap: 0px 10px;
}

#menu-main-menu {
    flex-wrap: wrap;
}

.main-navigation a {
    color: #fff;
    font-weight: 600;
    background-color: transparent;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.main-navigation a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* Search Icon Toggle */
.search-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.search-toggle:hover {
    color: var(--primary-color);
}

header .fa {
    color: #fff;
}

.fa.fa-search {
    color: #fff;
}

/* Search Form Popup */
.header-search-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.header-search-popup.active {
    display: flex;
}

.search-popup-inner {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 30px;
    cursor: pointer;
}

.header-search-popup form {
    position: relative;
}

.header-search-popup input[type="text"] {
    width: 100%;
    padding: 15px 60px 15px 20px;
    font-size: 18px;
    background: var(--white-color);
    color: var(--text-primary);
    border: none;
    border-radius: 4px;
}

.header-search-popup button[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: var(--primary-color);
    border: none;
    color: var(--white-color);
    font-size: 20px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.search-popup-inner .fa.fa-search {
    color: #fff;
}

/* ========================================
   HEADER MOBILE
======================================== */
.header-mobile {
    display: none;
    background-color: #000;
    border-bottom: 1px solid #2e2e2e;
    color: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
}

.header-mobile .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mobile-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mobile-logo .site-title {
    font-size: 18px;
    color: var(--primary-color);
}

.mobile-search-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
}

/* Mobile Menu Sidebar */
.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--header-bg);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    text-transform: uppercase;
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-header {
    padding: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white-color);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--white-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.1s;
}

.mobile-menu-nav a:hover {
    background: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
}

.mobile-menu-overlay.active {
    display: block;
}

/* ========================================
   BREADCRUMBS
======================================== */
.breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--text-secondary);
}

.breadcrumb-current {
    color: #484848;
}

/* ========================================
   PAGE TITLE & DESCRIPTION
======================================== */
.page-header {
    padding: 0 0 20px 0;
}

.page-title {
    padding: 0;
    background-color: transparent;
    color: #484848;
    border-radius: 0;
    line-height: 1.5;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.page-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   VIDEO GRID
======================================== */
.videos-grid {
    display: grid !important;
    visibility: visible !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 12px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video:hover {
    transform: none;
    border-color: var(--primary-color);
    box-shadow: none;
}

.video:hover .video-thumb {
    border: none !important;
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: none;
    transition: all .3s;
    border: none !important;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    padding: 0 10px;
    font-size: 15px;
    font-weight: 700;
    color: #484848;
    background: #fff;
    border-radius: 0 0 3px 3px;
    border: none;
    line-height: 39px;
    height: 39px;
    max-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

article.video:hover .video-title {
    color: var(--primary-color);
    transition: all 0.3s;
}

/* ========================================
   SINGLE VIDEO PAGE
======================================== */
.single-video {
    padding: 20px 0;
}

.single-video h1 {
    text-transform: none !important;
}

.video-player-wrapper {
    margin-bottom: 20px;
}

.post-title {
    padding: 0;
    background-color: transparent;
    color: #484848;
    border-radius: 0;
    line-height: 1.5;
    font-size: 24px;
    font-weight: bold;
}

.post-categories {
    margin-bottom: 15px;
}

.post-categories a {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px !important;
    background: #1C1E29;
    border-radius: inherit;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    text-transform: capitalize;
    transition: all 0.3s;
}

.post-categories a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.post-content {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.post-content p {
    margin-bottom: 15px;
}

.post-content br {
    display: none;
}

/* ========================================
   RELATED VIDEOS
======================================== */
.related-videos-section {
}

.related-title {
    padding: 0;
    background-color: transparent;
    color: #484848;
    border-radius: 0;
    line-height: 1.5;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.related-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* ========================================
   PAGINATION
======================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 30px 0;
}

.pagination a,
.pagination span {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    width: auto;
    height: auto;
    line-height: 1;
    padding: 5px 10px;
    text-align: center;
    background: #fff;
    border: none;
    border-radius: inherit;
    color: #484848;
    transition: all .3s;
}

.pagination a:hover {
    background: var(--primary-color);
    color: #fff;
}

.pagination .current,
.pagination .page-current {
    background: var(--primary-color);
    border: none;
    color: #fff;
}

span.page-numbers.dots {
    background: none;
}

.pagination .next,
.pagination .prev {
    width: auto;
    padding: 0 6px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: var(--primary-color);
    border-radius: inherit;
    color: #fff;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: #000;
    border-top: 1px solid #2e2e2e;
    color: #484848;
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-content {
    text-align: center;
    font-size: 13px;
    color: #ccc;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content a {
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 991px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .related-videos {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .videos-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 20px;
    }

    .related-videos {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .page-title {
        font-size: 22px;
    }

    .post-title {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .video-title {
        height: auto;
        max-height: 42px;
        font-size: 12px;
    }
}

/* ========================================
   IFRAME RESPONSIVE
======================================== */
iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    height: auto;
}

/* ========================================
   SOCIAL SHARING
======================================== */
.heateor_sss_sharing_container.heateor_sss_horizontal_sharing {
    margin-top: 16px;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
input[type="text"]{color:#222!important;}