/*
Theme Name: Dezenas Luxury
Theme URI: https://dezenasdivertidas.org
Author: Bruno Hamawaki - HamaCode.com
Description: Um portal de notícias e transparência de elite para o Dezenas Divertidas.
Version: 1.2.0
Text Domain: dezenas-luxury
*/

:root {
    --primary: #D4AF37;
    --primary-light: #F7E7CE;
    --bg-dark: #080808;
    --bg-card: #111111;
    --text-white: #ffffff;
    --text-muted: #888888;
    --border: rgba(212, 175, 55, 0.15);
    --header-h: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

/* Header */
.main-header {
    height: var(--header-h);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav li a {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav li a:hover, .main-nav li.current-menu-item a {
    color: var(--primary);
}

.cta-btn {
    background: linear-gradient(135deg, #ff3344 0%, #b30000 100%);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 51, 68, 0.4);
    animation: pulse-red 2s infinite ease-in-out;
}

/* Main Content */
.main-content {
    margin-top: var(--header-h);
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Home Hero - Cleaner */
.home-hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero-banner {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: clamp(28px, 4vw, 48px);
    color: #F7E7CE; /* High-contrast Gold/Cream */
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Post Cards - Super Professional Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(212,175,55,0.1);
}

.post-thumb {
    overflow: hidden;
}

.post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.post-card:hover .post-thumb img {
    transform: scale(1.1);
}

.post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

.post-card-meta {
    font-size: 12px;
    font-weight: 800;
    color: #F7E7CE;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.post-card-meta i {
    color: var(--primary);
    margin-right: 5px;
}

/* Footer & Creator */
footer {
    background: #050505;
    padding: 100px 0 60px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 30px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.creator-attribution {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(212,175,55,0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.creator-attribution:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(212,175,55,0.2);
    transform: translateY(-5px);
}

.creator-link {
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.creator-link span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* Floating Navigation */
.scroll-nav {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100000;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(212,175,55,0.4);
    transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-container { justify-content: center; }
    .posts-grid { grid-template-columns: 1fr; }
}

/* Premium Slider Styles */
.featured-slider {
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.swiper-slide {
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
}

/* Global Responsive Images & Fixes */
img {
    max-width: 100%;
    height: auto;
}

.entry-content img, 
.entry-content figure, 
.entry-content div {
    max-width: 100% !important;
    height: auto !important;
}

.entry-content img {
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.entry-content {
    overflow: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.single-article {
    flex: 1;
    max-width: 900px;
    min-width: 0; /* Fix for flex item overflow */
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 500px;
}

.slide-tag {
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.slide-title a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.slide-title a:hover {
    color: var(--primary);
}

.slide-excerpt {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.slide-btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

/* Swiper Customization */
.swiper-pagination-bullet { background: #fff !important; opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--primary) !important; opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--primary) !important; }

/* AJAX Loading Animation */
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.post-card {
    animation: fadeInCard 0.6s ease forwards;
}

/* Mixed / Infinite Grid Styles */
.infinite-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-card-wide {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.post-card-wide .post-thumb {
    width: 50%;
    height: 100%;
}

.post-card-wide .post-content {
    width: 50%;
}

@media (max-width: 991px) {
    .infinite-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-card-wide {
        grid-column: span 2;
        flex-direction: column;
    }
    .post-card-wide .post-thumb, .post-card-wide .post-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .infinite-grid {
        grid-template-columns: 1fr;
    }
    .post-card-wide {
        grid-column: span 1;
    }
}

/* Professional Single Post Layout */
.single-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}


.blog-sidebar {
    width: 350px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.widget-title {
    font-size: 18px;
    font-weight: 950;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.widget-list {
    list-style: none;
    padding: 0;
}

.widget-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.widget-list li a {
    color: #eee;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s;
}

.widget-list li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.widget-list li span {
    opacity: 0.5;
    font-size: 14px;
}

.ad-sidebar-box img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.ad-sidebar-box p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 20px;
    text-align: center;
}

/* Mini Recent Posts */
.recent-posts-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-post {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mini-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-post-text h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.mini-post-text h4 a {
    color: #fff;
    text-decoration: none;
}

.mini-post-text span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
}

/* Ads Placeholders */
.ad-placeholder {
    background: linear-gradient(90deg, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.1) 100%);
    border: 1px dashed var(--primary);
    color: var(--primary);
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .single-layout {
        flex-direction: column;
    }
    .blog-sidebar {
        width: 100%;
        position: static;
    }
}

/* Dual Ticker System Styles */
.tickers-container {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.ticker-wrapper {
    height: 35px;
    background: #050505;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.currency-ticker {
    background: #080808;
}

.news-ticker {
    background: #000;
}

.ticker-label {
    background: var(--primary);
    color: #000;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    font-size: 10px;
    font-weight: 950;
    z-index: 10;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    min-width: 100px;
}

.ticker-scroll {
    flex: 1;
    overflow: hidden;
}

.ticker-track-js {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    will-change: transform;
}

.ticker-news {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    font-weight: 400;
}

.ticker-news span {
    color: var(--primary);
    font-weight: 950;
    margin-right: 5px;
}

.ticker-rate {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.rate-flag {
    font-size: 16px;
}

.rate-name {
    font-size: 12px;
    color: #888;
    font-weight: 700;
}

.rate-value {
    font-size: 13px;
    font-weight: 900;
}

.rate-value.up {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.5);
}

.rate-value.down {
    color: #ff3344;
    text-shadow: 0 0 10px rgba(255,51,68,0.5);
}

/* Adjust Main Content for Double Tickers */
.main-content {
    margin-top: calc(var(--header-h) + 70px);
}

/* Fix Hero Banner on Home */
.home-hero-v3 {
    margin-top: 20px;
}

/* Global Action Buttons & Floating Elements */
.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-main-site {
    background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 100%);
    color: #000 !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(212,175,55,0.3);
    transition: all 0.3s;
}

.btn-main-site:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(212,175,55,0.5);
}

.btn-main-site i {
    font-size: 16px;
    animation: rocket-pulse 2s infinite;
}

@keyframes rocket-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1); }
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 51, 68, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 51, 68, 0.7); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 51, 68, 0.4); }
}

/* Premium Red Highlight System */
.wp-block-button__link {
    background: linear-gradient(135deg, #ff3344 0%, #e74c3c 50%, #c0392b 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 30px rgba(255, 51, 68, 0.4) !important;
    animation: pulse-red 2s infinite ease-in-out !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.wp-block-button__link:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(255, 51, 68, 0.6) !important;
    filter: brightness(1.2);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100000;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    transition: all 0.3s;
    position: relative;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37,211,102,0.6);
}

.wa-tooltip {
    position: absolute;
    left: 80px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
    pointer-events: none;
    border: 1px solid var(--border);
}

.whatsapp-float a:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
    .btn-main-site span { display: none; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float a { width: 55px; height: 55px; font-size: 30px; }
}

/* Draw Results Ticker Styles */
.results-ticker {
    background: #000;
}

.ticker-draw {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.draw-type {
    font-size: 11px;
    font-weight: 950;
    color: var(--primary);
    white-space: nowrap;
}

.draw-numbers {
    display: flex;
    gap: 5px;
}

.draw-num {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
    border: 1px solid rgba(255,255,255,0.2);
}

.results-ticker .ticker-label {
    background: linear-gradient(90deg, #B8860B 0%, #D4AF37 100%);
}

/* Mobile Fixes for Scroll Buttons */
@media (max-width: 768px) {
    .scroll-nav {
        right: 20px;
        bottom: 20px;
        z-index: 100001; /* Above almost everything */
    }
    .scroll-btn {
        width: 45px;
        height: 45px;
        background: rgba(184, 134, 11, 0.8) !important; /* Gold on mobile for visibility */
        color: #000 !important;
        border: 2px solid #fff;
    }
}

/* Mobile Optimization for Header Buttons */
@media (max-width: 768px) {
    .header-actions {
        gap: 8px;
    }
    .btn-main-site, .btn-admin {
        padding: 8px 12px !important;
        font-size: 11px !important;
        min-width: unset !important;
    }
    .btn-main-site span, .btn-admin span {
        display: none !important; /* Esconde o texto no mobile */
    }
    .btn-main-site i, .btn-admin i {
        margin: 0 !important;
        font-size: 16px !important;
    }
    .logo img {
        max-height: 40px !important;
    }
}

/* Refined Mobile Header: Logo Left, Full Button Right */
@media (max-width: 768px) {
    .header-container {
        justify-content: space-between !important;
        padding: 0 15px !important;
    }
    .logo {
        flex: 1;
        display: flex;
        align-items: center;
    }
    .logo img {
        max-height: 45px !important;
        width: auto !important;
    }
    .main-nav {
        display: none !important;
    }
    .header-actions {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .btn-admin {
        display: none !important;
    }
    .btn-main-site {
        padding: 8px 15px !important;
        font-size: 11px !important;
        display: flex !important;
    }
    .btn-main-site span {
        display: none !important; /* Keep it compact to give space to toggle */
    }
}

/* Hamburger Toggle Styling */
.mobile-toggle {
    display: none;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10001;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* Mobile Sidebar & Overlay */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--border);
    z-index: 1000000;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0,0,0,0.8);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    transition: 0.4s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.mobile-sidebar-header .logo h3 {
    font-size: 18px;
    color: #fff;
    margin: 0;
}

.mobile-sidebar-header .logo h3 span {
    color: var(--primary);
}

.close-sidebar {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.close-sidebar:hover {
    color: var(--primary);
}

.mobile-nav-content {
    flex: 1;
    padding: 30px 0;
    overflow-y: auto;
}

.mobile-nav-content ul {
    list-style: none;
}

.mobile-nav-content li {
    margin-bottom: 5px;
}

.mobile-nav-content a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 800;
    color: #eee;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
    border-left: 3px solid transparent;
}

.mobile-nav-content a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.mobile-nav-content a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

/* Bonus Sidebar Card - ULTRA PREMIUM & CHAMATIVO */
.mobile-sidebar-footer {
    padding: 30px;
    border-top: 1px solid var(--border);
}

.bonus-sidebar-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #050505 100%);
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    animation: sidebar-bonus-pulse 3s infinite ease-in-out;
}

@keyframes sidebar-bonus-pulse {
    0%, 100% { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
    50% { border-color: var(--primary); box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3); }
}

.bonus-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--primary);
    color: #000;
    font-size: 8px;
    font-weight: 950;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.bonus-label {
    display: block;
    font-size: 9px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.bonus-value {
    font-size: 32px;
    font-weight: 950;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.bonus-desc {
    font-size: 11px;
    color: #aaa;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-bonus-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff3344 0%, #b30000 100%);
    color: #fff !important;
    padding: 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(255, 51, 68, 0.4);
    animation: pulse-red 2s infinite ease-in-out;
}

.btn-bonus-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.bonus-glimmer {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent 45%, rgba(212,175,55,0.05) 50%, transparent 55%);
    animation: sidebar-glimmer 6s infinite linear;
    pointer-events: none;
}

@keyframes sidebar-glimmer {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

/* Cinematic Luxury Preloader Styles */
#luxury-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#luxury-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-ring {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    border-radius: 50%;
    animation: ring-rotate 1.5s linear infinite;
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.loader-logo span {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.loader-logo .dezenas {
    color: #fff;
}

.loader-logo .divertidas {
    color: var(--primary);
    animation: text-pulse 2s infinite ease-in-out;
}

@keyframes text-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.05);
    margin-top: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: progress-load 3s ease-in-out forwards;
}

@keyframes progress-load {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

.loader-status {
    margin-top: 15px;
    font-size: 8px;
    font-weight: 900;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Hero Banner V3 */
.home-hero-v3 {
    margin-bottom: 40px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    height: 400px;
    background: #000;
}

.home-hero-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .home-hero-v3 {
        height: auto; /* Deixa a imagem vertical respirar */
        border-radius: 15px;
        margin-bottom: 30px;
        aspect-ratio: 9/16; /* Força a proporção vertical luxuosa */
    }
}

/* Fine Tuning for Mobile Hero */
@media (max-width: 768px) {
    .home-hero-v3-link {
        display: block;
        margin-top: -20px; /* Sobe a imagem um pouquinho */
        position: relative;
        z-index: 5;
    }
}

/* Smoother Preloader Transition */
#luxury-preloader {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s !important;
}

#luxury-preloader .loader-content {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#luxury-preloader.fade-out .loader-content {
    transform: scale(1.2);
    opacity: 0;
}

/* Global Mobile Fixes */
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

body.loading {
    overflow: hidden !important;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Responsive Content Fixes */
.entry-content img, 
.entry-content iframe, 
.entry-content video {
    max-width: 100% !important;
    height: auto !important;
}

.single-article {
    max-width: 100% !important;
    padding: 0 15px;
}

/* Layout Wrapper Fix for Mobile Sidebar */
.layout-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 992px) {
    .layout-wrapper {
        flex-direction: column;
    }
    .blog-sidebar {
        width: 100% !important;
    }
    .hero-title {
        font-size: 28px !important;
    }
    .post-thumb img {
        height: 300px !important;
    }
}

/* Ad & Widget Title Fixes */
.widget-title {
    font-size: 14px !important;
    letter-spacing: 2px !important;
    white-space: normal !important; /* Allow wrapping */
}

.mini-post h4 {
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.ad-sidebar-box p {
    font-size: 12px !important;
}

/* Preloader UI Harmony Fix */
.loader-content {
    min-height: 350px;
    justify-content: center;
}

.loader-ring {
    width: 220px !important;
    height: 220px !important;
}

.loader-logo {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.loader-logo .dezenas {
    font-size: 28px !important;
}

.loader-logo .divertidas {
    font-size: 28px !important;
}

.loader-progress {
    position: absolute;
    bottom: 40px; /* Fixa a barra lá embaixo longe do anel */
    margin-top: 0 !important;
    width: 250px !important;
}

.loader-status {
    position: absolute;
    bottom: 20px;
}
