/* ═══════════════════════════════════════════════════
   World Box TV Theme - Main Stylesheet
   Entretenimento Sem Limites
   Colors: Navy (#0a1628), Gold (#d4a017), White
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    --navy:          #0a1628;
    --navy-light:    #0f2240;
    --navy-dark:     #060e1a;
    --navy-medium:   #132d50;
    --gold:          #d4a017;
    --gold-light:    #f0c040;
    --gold-dark:     #b8860b;
    --gold-glow:     rgba(212, 160, 23, 0.3);
    --white:         #ffffff;
    --gray-50:       #f8fafc;
    --gray-100:      #f1f5f9;
    --gray-200:      #e2e8f0;
    --gray-300:      #cbd5e1;
    --gray-400:      #94a3b8;
    --gray-500:      #64748b;
    --gray-600:      #475569;
    --gray-700:      #334155;
    --text-light:    rgba(255,255,255,0.85);
    --text-muted:    rgba(255,255,255,0.6);
    --success:       #10b981;
    --danger:        #ef4444;
    --warning:       #f59e0b;

    --font-primary:  'Poppins', sans-serif;
    --font-body:     'Inter', sans-serif;

    --shadow-sm:     0 1px 3px rgba(0,0,0,0.12);
    --shadow-md:     0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg:     0 10px 40px rgba(0,0,0,0.2);
    --shadow-gold:   0 4px 20px rgba(212,160,23,0.25);
    --shadow-card:   0 8px 32px rgba(10,22,40,0.12);

    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     28px;

    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Preloader ─── */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px; height: 50px;
    border: 4px solid rgba(212,160,23,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */
.wbtv-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.wbtv-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.wbtv-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img,
.nav-logo .custom-logo {
    height: 55px;
    width: auto;
}

.nav-logo .logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-logo .logo-text::after {
    content: ' TV';
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a {
    display: inline-block;
    padding: 8px 16px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li.current-menu-item a {
    color: var(--gold);
    background: rgba(212,160,23,0.1);
}

/* Nav Actions (Cart + Profile) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.15);
}

.nav-action-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.nav-action-link:hover {
    background: rgba(212,160,23,0.15);
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -2px; right: -2px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.profile-link .fa-user-circle {
    font-size: 22px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   HERO SECTION - BANNER SLIDER (FULL WIDTH)
   ═══════════════════════════════════════ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ─── Banner Slider ─── */
.wbtv-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.wbtv-slider-track {
    position: relative;
    width: 100%;
}

.wbtv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.wbtv-slide:first-child {
    position: relative;
}

.wbtv-slide.active {
    opacity: 1;
    z-index: 2;
}

.wbtv-slide-link {
    display: block;
    width: 100%;
    cursor: pointer;
}

.wbtv-slide-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ─── Overlay Buttons on Banner ─── */
.wbtv-slide-buttons {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.wbtv-slide-buttons .btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .wbtv-slide-buttons {
        bottom: 40px;
        gap: 10px;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .wbtv-slide-buttons .btn {
        font-size: 13px;
        padding: 10px 18px;
    }
}

/* Desktop: show desktop, hide mobile */
.wbtv-slide-desktop {
    display: block;
}
.wbtv-slide-mobile {
    display: none;
}

/* Mobile: show mobile, hide desktop */
@media (max-width: 768px) {
    .wbtv-slide-desktop {
        display: none;
    }
    .wbtv-slide-mobile {
        display: block;
    }
}

/* ─── Slider Navigation Arrows ─── */
.wbtv-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(10,22,40,0.6);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.wbtv-slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-50%) scale(1.1);
}

.wbtv-slider-prev {
    left: 30px;
}

.wbtv-slider-next {
    right: 30px;
}

@media (max-width: 768px) {
    .wbtv-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    .wbtv-slider-prev { left: 10px; }
    .wbtv-slider-next { right: 10px; }
}

/* ─── Slider Dots ─── */
.wbtv-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.wbtv-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.wbtv-dot.active,
.wbtv-dot:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .wbtv-slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    .wbtv-dot {
        width: 10px;
        height: 10px;
    }
}

/* ─── Hero Fallback (no banners) ─── */
.hero-fallback {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
    padding: 120px 0 80px;
}

.hero-fallback .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,34,64,0.85) 50%, rgba(10,22,40,0.9) 100%);
    z-index: 1;
}

.hero-fallback .hero-container {
    position: relative;
    z-index: 3;
}

.hero-fallback .hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212,160,23,0.3); }
    50% { box-shadow: 0 0 40px rgba(212,160,23,0.5); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ─── Mini Features Bar (BELOW slider, separate block) ─── */
.hero-features-bar {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 20px 0;
    border-top: 1px solid rgba(212,160,23,0.15);
    border-bottom: 1px solid rgba(212,160,23,0.15);
    clear: both;
}

.hero-mini-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.mini-feature:hover {
    background: rgba(212,160,23,0.15);
    border-color: var(--gold-glow);
    transform: translateY(-2px);
}

.mini-feature i {
    color: var(--gold);
    font-size: 16px;
}

.mini-feature-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@media (max-width: 768px) {
    .hero-features-bar {
        padding: 16px 0;
    }
    .hero-mini-features {
        gap: 8px;
    }
    .mini-feature {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,160,23,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,160,23,0.1);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold), #e6b422, var(--gold-light));
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 4px 25px rgba(212,160,23,0.4);
    font-size: 17px;
    padding: 16px 36px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(212,160,23,0.5);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: var(--radius-sm);
}

.btn-block {
    width: 100%;
}

/* Dark context buttons */
.about-section .btn-primary,
.downloads-section .btn-primary {
    color: var(--navy);
}

/* ═══════════════════════════════════════
   SECTION COMMON STYLES
   ═══════════════════════════════════════ */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section-label.center {
    justify-content: center;
}

.label-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.label-text {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-decoration {
    position: absolute;
    top: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-placeholder {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.placeholder-device {
    background: var(--navy-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(212,160,23,0.2);
}

.placeholder-screen {
    padding: 20px;
}

.placeholder-ui .ui-nav {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.placeholder-ui .ui-nav span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

.placeholder-ui .ui-nav span:first-child {
    color: var(--gold);
}

.placeholder-ui .ui-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.placeholder-ui .ui-card {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--navy-medium), var(--navy-light));
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ═══════════════════════════════════════
   DOWNLOADS SECTION
   ═══════════════════════════════════════ */
.downloads-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.downloads-visual img {
    max-height: 450px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.downloads-placeholder-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-device {
    position: absolute;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    border: 2px solid rgba(212,160,23,0.2);
    box-shadow: var(--shadow-lg);
}

.dl-tv {
    width: 250px; height: 160px;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
}

.dl-tv i { font-size: 40px; }

.dl-phone {
    width: 80px; height: 140px;
    bottom: 20px; left: 30%;
    border-radius: var(--radius-sm);
}

.dl-phone i { font-size: 28px; }

.dl-tablet {
    width: 120px; height: 160px;
    bottom: 10px; right: 20%;
}

.dl-tablet i { font-size: 32px; }

.downloads-table-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.downloads-table-title i {
    color: var(--gold);
}

.device-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.device-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.device-row:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateX(4px);
}

.device-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.device-info i {
    font-size: 20px;
    color: var(--gold);
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.device-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}

.device-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.device-actions {
    display: flex;
    gap: 8px;
}

/* ═══════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════ */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.features-section .section-title {
    color: var(--white);
}

.features-section .section-subtitle {
    color: var(--text-muted);
}

.features-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212,160,23,0.08);
}

.circle-1 {
    width: 600px; height: 600px;
    top: -200px; right: -200px;
}

.circle-2 {
    width: 400px; height: 400px;
    bottom: -100px; left: -100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    background: rgba(212,160,23,0.08);
    border-color: rgba(212,160,23,0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 20px;
}

.feature-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--navy);
    position: relative;
    z-index: 1;
}

.feature-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.feature-icon-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-glow {
    opacity: 1;
}

.feature-image {
    margin: 16px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   PLANS SECTION
   ═══════════════════════════════════════ */
.plans-section {
    padding: 100px 0;
    background: var(--white);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.plan-card {
    position: relative;
    background: #ffffff;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-6px);
}

.plan-featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.plan-badge {
    position: absolute;
    top: 16px; right: -32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.plan-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.plan-card:hover .plan-image img {
    transform: scale(1.05);
}

.plan-header {
    padding: 32px 28px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}
.plan-image + .plan-header {
    padding-top: 20px;
}

.plan-name {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.plan-price {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-dark);
}

.plan-price del {
    font-size: 16px;
    color: var(--gray-400);
    font-weight: 400;
}

.plan-price ins {
    text-decoration: none;
}

.plan-body {
    padding: 20px 28px;
    flex: 1;
}

.plan-description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.8;
}

.plan-description ul {
    list-style: none;
    padding: 0;
}

.plan-description ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.plan-description ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 13px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    border-bottom: 1px solid var(--gray-100);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--gold);
    font-size: 13px;
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-dark);
}

.price-period {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 400;
}

.plans-grid-1 { grid-template-columns: minmax(300px, 400px); justify-content: center; }
.plans-grid-2 { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
.plans-grid-3 { grid-template-columns: repeat(3, minmax(260px, 1fr)); }
.plans-grid-4 { grid-template-columns: repeat(4, minmax(240px, 1fr)); }

.downloads-table-full {
    max-width: 700px;
    margin: 0 auto;
}

.plan-footer {
    padding: 20px 28px 28px;
}

.plans-cta {
    text-align: center;
    margin-top: 20px;
}

.plans-cta .btn-outline {
    color: var(--navy);
    border-color: var(--gray-300);
}

.plans-cta .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.plans-empty,
.no-content {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 16px;
}

.admin-notice {
    margin-top: 16px;
    padding: 16px;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--navy);
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-medium) 50%, var(--navy-dark) 100%);
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(15,34,64,0.85));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--navy);
    box-shadow: 0 0 40px rgba(212,160,23,0.3);
}

.cta-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════ */
.faq-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-list,
.faq-page-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-dark);
}

.faq-question i {
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.wbtv-footer {
    background: var(--navy-dark);
    color: var(--text-light);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: var(--navy-dark);
    line-height: 0;
    margin-top: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img,
.footer-logo .custom-logo {
    height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .logo-text::after {
    content: ' TV';
    color: var(--gold);
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li i {
    color: var(--gold);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   BACK TO TOP & WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.back-to-top {
    position: fixed;
    bottom: 100px; right: 24px;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--navy);
    color: var(--gold);
    transform: translateY(-5px);
}

/* WhatsApp Floating Button (Custom Image) */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 70px; height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
    text-decoration: none;
    border-radius: 50%;
}

.whatsapp-float-img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(37,211,102,0.4));
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
}

.whatsapp-float:hover .whatsapp-float-img {
    filter: drop-shadow(0 6px 20px rgba(37,211,102,0.6));
}

@keyframes whatsapp-pulse {
    0%, 100% { filter: drop-shadow(0 4px 12px rgba(37,211,102,0.3)); }
    50% { filter: drop-shadow(0 4px 20px rgba(37,211,102,0.5)); }
}

/* Extra Banner Sections */
.extra-banner-section {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.extra-banner-link {
    display: block;
    width: 100%;
}

.extra-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.extra-banner-mobile {
    display: none;
}

@media (max-width: 768px) {
    .extra-banner-desktop {
        display: none;
    }
    .extra-banner-mobile {
        display: block;
    }
}

/* Button Icon Images */
.btn-icon-img {
    display: inline-block;
    vertical-align: middle;
    width: 20px; height: 20px;
    object-fit: contain;
    margin: 0 4px;
}

.cta-icon-img {
    width: 48px; height: 48px;
    object-fit: contain;
}

/* ═══════════════════════════════════════
   PAGE HERO MINI (Inner pages)
   ═══════════════════════════════════════ */
.page-hero-mini {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-medium));
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero-mini .page-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.page-hero-mini .page-subtitle {
    font-size: 17px;
    color: var(--text-muted);
}

.page-hero-mini .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.page-hero-mini .breadcrumb a {
    color: var(--gold);
}

.page-hero-mini .breadcrumb i {
    font-size: 10px;
}

/* ═══════════════════════════════════════
   CONTENT AREA
   ═══════════════════════════════════════ */
.content-area {
    padding: 60px 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.page-content h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 16px;
}

.page-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

/* ═══════════════════════════════════════
   SUPPORT PAGE
   ═══════════════════════════════════════ */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.support-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.support-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.support-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.support-icon.whatsapp { background: rgba(37,211,102,0.1); color: #25d366; }
.support-icon.telegram { background: rgba(0,136,204,0.1); color: #0088cc; }
.support-icon.email    { background: rgba(212,160,23,0.1); color: var(--gold); }
.support-icon.faq      { background: rgba(10,22,40,0.1); color: var(--navy); }

.support-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.support-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   POSTS GRID
   ═══════════════════════════════════════ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.post-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 24px;
}

.post-card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.post-card-title a {
    color: var(--navy);
}

.post-card-title a:hover {
    color: var(--gold);
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════ */
.single-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-featured-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.post-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

/* ═══════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════ */
.error-404-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    text-align: center;
}

.error-content .error-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 16px;
}

.error-content h1 {
    font-family: var(--font-primary);
    font-size: 120px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.error-content h2 {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   SHOP / PRODUCT CARDS
   ═══════════════════════════════════════ */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shop-product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.shop-product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.shop-product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-placeholder-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: 40px;
}

.product-placeholder-img.large {
    height: 400px;
    border-radius: var(--radius-lg);
}

.product-placeholder-img span {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
}

.product-sale-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--danger);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card-title a { color: var(--navy); }
.product-card-title a:hover { color: var(--gold); }

.product-card-price {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════ */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.product-detail-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.product-detail-price {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.product-detail-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-detail-meta {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.meta-item {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
}

.meta-label {
    font-weight: 600;
    color: var(--navy);
}

.meta-value {
    color: var(--gray-600);
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.product-out-of-stock {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius-md);
    color: var(--danger);
    font-weight: 600;
}

.product-trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
}

.trust-badge i {
    color: var(--gold);
}

.product-full-description {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.product-full-description h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.related-products {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.related-products h2 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════ */
.wbtv-toast {
    position: fixed;
    top: 90px; right: 24px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transform: translateX(120%);
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
    max-width: 350px;
}

.wbtv-toast.show {
    transform: translateX(0);
}

.wbtv-toast.success {
    border-left-color: var(--success);
}

.wbtv-toast.error {
    border-left-color: var(--danger);
}

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 8px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination a {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--gray-200);
}

.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.pagination span.current {
    background: var(--gold);
    color: var(--navy);
}

/* ═══════════════════════════════════════
   SELECTION & SCROLLBAR
   ═══════════════════════════════════════ */
::selection {
    background: var(--gold);
    color: var(--navy);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--navy-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* ═══════════════════════════════════════
   RESPONSIVE: MOBILE MENU
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
    }

    .nav-actions {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.15);
        width: 100%;
        justify-content: center;
        gap: 16px;
    }

    .nav-action-link {
        width: 44px; height: 44px;
        font-size: 20px;
    }

    .whatsapp-float {
        bottom: 16px; right: 16px;
        width: 60px; height: 60px;
    }
}

/* ─── Responsive: Plans Grid ─── */
@media (max-width: 992px) {
    .plans-grid-3,
    .plans-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .plans-grid-2,
    .plans-grid-3,
    .plans-grid-4 {
        grid-template-columns: 1fr;
    }
    .price-amount {
        font-size: 26px;
    }
}

/* ─── Custom Section Styles ─── */
.custom-section {
    padding: 80px 0;
}

.custom-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.custom-section-grid.no-image {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.custom-section-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.custom-section-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .custom-section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ─── Header Custom Icons ─── */
.menu-item-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.header-icon-img {
    display: inline-block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════
   CORREÇÃO DE CORES - Seções com fundo claro
   Garante que textos fiquem visíveis em fundo branco/cinza
   ═══════════════════════════════════════════════════ */

/* ─── AOS Fallback: garante visibilidade mesmo sem JS ─── */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.6s ease, transform 0.6s ease !important;
}

/* ─── Títulos e labels globais (fundo claro) ─── */
.section-title {
    color: #0a1628 !important;
}
.section-subtitle {
    color: #64748b !important;
}
.label-text {
    color: #d4a017 !important;
}
.label-line {
    background: linear-gradient(90deg, #d4a017, #f0c040) !important;
}

/* ─── Seção Sobre / About ─── */
.about-section {
    background: #ffffff !important;
}
.about-section .section-title {
    color: #0a1628 !important;
}
.about-section .label-text {
    color: #d4a017 !important;
}
.about-section .about-text,
.about-section .about-text p {
    color: #475569 !important;
}
.about-section .btn-primary {
    color: #0a1628 !important;
}

/* ─── Seção Downloads ─── */
.downloads-section {
    background: #f8fafc !important;
}
.downloads-section .section-title {
    color: #0a1628 !important;
}
.downloads-section .section-subtitle {
    color: #64748b !important;
}
.downloads-section .downloads-table-title {
    color: #0a1628 !important;
}
.downloads-section .device-name {
    color: #0a1628 !important;
}
.downloads-section .btn-primary {
    color: #0a1628 !important;
}

/* ─── Seção Planos ─── */
.plans-section {
    background: #ffffff !important;
}
.plans-section .section-title {
    color: #0a1628 !important;
}
.plans-section .section-subtitle {
    color: #64748b !important;
}
.plans-section .plan-name {
    color: #0a1628 !important;
}
.plans-section .plan-description,
.plans-section .plan-description ul li {
    color: #475569 !important;
}
.plans-section .plan-features li {
    color: #475569 !important;
}
.plans-section .price-amount {
    color: #b8860b !important;
}
.plans-section .price-period {
    color: #64748b !important;
}
.plans-section .admin-notice {
    color: #0a1628 !important;
}
.plans-section .empty-icon {
    color: #d4a017 !important;
}

/* ─── Seção FAQ ─── */
.faq-section {
    background: #f8fafc !important;
}
.faq-section .section-title {
    color: #0a1628 !important;
}
.faq-section .section-subtitle {
    color: #64748b !important;
}
.faq-section .faq-question {
    color: #0a1628 !important;
}
.faq-section .faq-answer-inner {
    color: #475569 !important;
}

/* ─── Seção Recursos/Features (fundo escuro - manter branco) ─── */
.features-section .section-title {
    color: #ffffff !important;
}
.features-section .section-subtitle {
    color: rgba(255,255,255,0.6) !important;
}
.features-section .feature-title {
    color: #ffffff !important;
}
.features-section .feature-text {
    color: rgba(255,255,255,0.7) !important;
}

/* ─── Seção CTA (fundo escuro - manter branco) ─── */
.cta-section .cta-title {
    color: #ffffff !important;
}
.cta-section .cta-text {
    color: rgba(255,255,255,0.85) !important;
}

/* ─── Seções Customizadas ─── */
.custom-section .section-title {
    color: #0a1628 !important;
}
.custom-section .section-subtitle {
    color: #64748b !important;
}
.custom-section .custom-section-text {
    color: #475569 !important;
}
/* Seção customizada escura */
.custom-section.style-dark .section-title {
    color: #ffffff !important;
}
.custom-section.style-dark .section-subtitle {
    color: rgba(255,255,255,0.6) !important;
}
.custom-section.style-dark .custom-section-text {
    color: rgba(255,255,255,0.85) !important;
}
.custom-section.style-gold .section-title {
    color: #0a1628 !important;
}

/* ─── Hero Features / Mini Features ─── */
.hero-features-bar .mini-feature {
    color: rgba(255,255,255,0.85) !important;
}

/* ─── Botões (garantir legibilidade) ─── */
.btn-primary {
    background: linear-gradient(135deg, #d4a017, #f0c040) !important;
    color: #0a1628 !important;
    border-color: #d4a017 !important;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #f0c040, #d4a017) !important;
    color: #0a1628 !important;
}

/* ─── Footer (fundo escuro) ─── */
.wbtv-footer .footer-heading {
    color: #ffffff !important;
}
.wbtv-footer .footer-description {
    color: rgba(255,255,255,0.7) !important;
}
.wbtv-footer .footer-links a {
    color: rgba(255,255,255,0.7) !important;
}
.wbtv-footer .footer-links a:hover {
    color: #d4a017 !important;
}

/* ─── Extra Banners ─── */
.extra-banner-section .extra-banner-title {
    color: #ffffff !important;
}
.extra-banner-section .extra-banner-subtitle {
    color: rgba(255,255,255,0.85) !important;
}

/* ─── Planos: botão e no-content ─── */
.plans-section .no-content h3 {
    color: #0a1628 !important;
}
.plans-section .no-content p {
    color: #475569 !important;
}
