/**
 * Shineray Public Site Design System
 * Dark immersive theme — motorcycle dealership experience
 * Inspired by admin design but adapted for public-facing catalog
 */

/* ========== Design Tokens ========== */
:root {
    /* Core Palette */
    --pub-bg: #0a0a0f;
    --pub-bg-alt: #0e0e14;
    --pub-surface: #111118;
    --pub-surface-raised: #18181f;
    --pub-surface-hover: #1e1e28;

    /* Accent */
    --pub-accent: #e30613;
    --pub-accent-hover: #ff1a2a;
    --pub-accent-soft: rgba(227, 6, 19, 0.12);
    --pub-accent-glow: rgba(227, 6, 19, 0.35);

    /* Text */
    --pub-text: #f0f0f4;
    --pub-text-secondary: #9898a8;
    --pub-text-muted: #5c5c6e;

    /* Borders */
    --pub-border: rgba(255, 255, 255, 0.06);
    --pub-border-hover: rgba(255, 255, 255, 0.12);
    --pub-border-accent: rgba(227, 6, 19, 0.3);

    /* Semantic */
    --pub-green: #22c55e;
    --pub-amber: #f59e0b;
    --pub-blue: #3b82f6;
    --pub-orange: #f97316;

    /* Typography */
    --font-brand: 'Exo', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-card: 0 1px 3px rgba(0,0,0,0.4), 0 0 0 1px var(--pub-border);
    --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px var(--pub-border-hover);
    --shadow-glow: 0 0 30px var(--pub-accent-glow);
}

/* ========== Base ========== */
body.dark-site {
    background: var(--pub-bg);
    color: var(--pub-text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== Custom Scrollbar (dark) ========== */
body.dark-site::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
body.dark-site::-webkit-scrollbar-track {
    background: var(--pub-bg);
}
body.dark-site::-webkit-scrollbar-thumb {
    background: #2a2a35;
    border-radius: 4px;
}
body.dark-site::-webkit-scrollbar-thumb:hover {
    background: #3a3a48;
}

/* ========== Preloader ========== */
.dark-preloader {
    position: fixed;
    inset: 0;
    background: var(--pub-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity .5s ease, visibility .5s ease;
}
.dark-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.dark-preloader .preloader-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 1.5rem;
    animation: logoFloat 3s ease-in-out infinite;
}
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px var(--pub-accent-glow));
    }
    50% {
        transform: translateY(-16px) scale(1.04);
        filter: drop-shadow(0 0 50px rgba(227, 6, 19, 0.6));
    }
}
.dark-preloader .preloader-brand {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pub-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.dark-preloader .preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(227, 6, 19, 0.15);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.dark-preloader .preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--pub-accent), #ff4444);
    animation: preloaderFill 2s ease-in-out infinite;
}
@keyframes preloaderFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}
.dark-preloader .preloader-hint {
    font-size: 0.8rem;
    color: var(--pub-text-muted);
}

/* ========== Header ========== */
.dark-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--pub-border);
    transition: background .3s ease;
}
.dark-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.dark-header .nav-link {
    color: var(--pub-text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color .2s ease;
    position: relative;
}
.dark-header .nav-link:hover,
.dark-header .nav-link.active {
    color: var(--pub-text);
}
.dark-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pub-accent);
    transition: width .25s ease;
}
.dark-header .nav-link:hover::after,
.dark-header .nav-link.active::after {
    width: 100%;
}

/* ========== Hero ========== */
.dark-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}
.dark-hero .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.dark-hero .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,15,0.85), rgba(10,10,15,0.7), rgba(10,10,15,0.85));
    z-index: 2;
}
.dark-hero .hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--pub-bg), transparent);
    z-index: 3;
}
.dark-hero .hero-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    border: none;
}
@media (min-aspect-ratio: 16/9) {
    .dark-hero .hero-bg iframe { height: 56.25vw; }
}
@media (max-aspect-ratio: 16/9) {
    .dark-hero .hero-bg iframe { width: 177.78vh; }
}
.dark-hero .hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
}
.dark-hero .hero-logo-svg {
    width: min(420px, 80%);
    height: auto;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
.dark-hero .hero-title {
    font-family: var(--font-brand);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--pub-text);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    animation: heroSlideUp 1s ease-out 0.3s both;
}
.dark-hero .hero-title .accent {
    background: linear-gradient(135deg, var(--pub-accent), #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.dark-hero .hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: var(--pub-text-secondary);
    margin-bottom: 2rem;
    animation: heroSlideUp 1s ease-out 0.6s both;
}
.dark-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    animation: heroSlideUp 1s ease-out 0.8s both;
}
.dark-hero .hero-stat {
    text-align: center;
}
.dark-hero .hero-stat-value {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 800;
    color: var(--pub-text);
}
.dark-hero .hero-stat-label {
    font-size: 0.75rem;
    color: var(--pub-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--pub-accent), #c90c0f);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-brand);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 8px 24px var(--pub-accent-glow);
    animation: heroSlideUp 1s ease-out 1s both;
}
.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(227, 6, 19, 0.5);
}

/* ========== Section Headers ========== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.section-badge.red {
    background: var(--pub-accent-soft);
    color: var(--pub-accent);
    border: 1px solid var(--pub-border-accent);
}
.section-badge.amber {
    background: rgba(245, 158, 11, 0.12);
    color: var(--pub-amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.section-badge.blue {
    background: rgba(59, 130, 246, 0.12);
    color: var(--pub-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.section-title {
    font-family: var(--font-brand);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--pub-text);
    margin-bottom: 0.75rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--pub-text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ========== Moto Card (dark) ========== */
.moto-card {
    background: var(--pub-surface);
    border: 1px solid var(--pub-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s ease;
}
.moto-card:hover {
    border-color: var(--pub-border-hover);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.moto-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--pub-bg-alt);
}
.moto-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.moto-card:hover .card-image img {
    transform: scale(1.05);
}
.moto-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--pub-surface), transparent);
    pointer-events: none;
}
.moto-card .card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.moto-card .card-badge.destaque {
    background: linear-gradient(135deg, var(--pub-amber), #d97706);
    color: white;
}
.moto-card .card-badge.categoria {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}
.moto-card .card-body {
    padding: 1.25rem;
}
.moto-card .card-title {
    font-family: var(--font-brand);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pub-text);
    margin-bottom: 0.5rem;
}
.moto-card .card-specs {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--pub-text-muted);
    margin-bottom: 0.75rem;
}
.moto-card .card-specs i {
    color: var(--pub-accent);
    margin-right: 0.25rem;
}
.moto-card .card-price {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pub-accent);
    margin-bottom: 0.25rem;
}
.moto-card .card-price-label {
    font-size: 0.75rem;
    color: var(--pub-text-muted);
}
.moto-card .card-actions {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* ========== Action Buttons ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--pub-accent), #c90c0f);
    color: white;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
}
.btn-primary:hover {
    box-shadow: 0 4px 16px var(--pub-accent-glow);
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--pub-text-secondary);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid var(--pub-border);
    cursor: pointer;
    transition: all .25s ease;
}
.btn-ghost:hover {
    border-color: var(--pub-border-hover);
    color: var(--pub-text);
    background: var(--pub-surface-hover);
}
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--pub-green);
    color: white;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
}
.btn-green:hover {
    background: #16a34a;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* ========== Category Card ========== */
.category-card {
    background: var(--pub-surface);
    border: 1px solid var(--pub-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all .3s ease;
    cursor: pointer;
}
.category-card:hover {
    border-color: var(--pub-border-accent);
    background: var(--pub-surface-raised);
    transform: translateY(-3px);
}
.category-card .cat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    background: var(--pub-accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.category-card:hover .cat-icon {
    background: var(--pub-accent);
}
.category-card .cat-icon i {
    font-size: 1.25rem;
    color: var(--pub-accent);
    transition: color .3s ease;
}
.category-card:hover .cat-icon i {
    color: white;
}
.category-card .cat-name {
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 0.25rem;
}
.category-card .cat-count {
    font-size: 0.8rem;
    color: var(--pub-text-muted);
}

/* ========== Contact Card ========== */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
}
.contact-item .contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}
.contact-item .contact-label {
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 0.25rem;
}
.contact-item .contact-value {
    font-size: 0.875rem;
    color: var(--pub-text-secondary);
}

/* ========== Phone Card ========== */
.phone-card {
    background: var(--pub-surface);
    border: 1px solid var(--pub-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s ease;
}
.phone-card:hover {
    border-color: var(--pub-border-hover);
    transform: translateY(-3px);
}
.phone-card .phone-header {
    padding: 1.5rem;
    text-align: center;
}
.phone-card .phone-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
}
.phone-card .phone-icon i {
    font-size: 1.5rem;
    color: white;
}
.phone-card .phone-body {
    padding: 1.5rem;
}

/* ========== Dark WhatsApp Modal ========== */
.dark-wpp-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.dark-wpp-modal.active {
    display: flex;
}
.dark-wpp-modal .modal-card {
    background: var(--pub-surface-raised);
    border: 1px solid var(--pub-border);
    border-radius: var(--radius-xl);
    max-width: 420px;
    width: 100%;
    padding: 1.5rem;
    animation: modalIn .3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.dark-wpp-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.dark-wpp-modal .modal-title {
    font-family: var(--font-brand);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--pub-text);
}
.dark-wpp-modal .modal-close {
    background: none;
    border: none;
    color: var(--pub-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color .2s;
    line-height: 1;
}
.dark-wpp-modal .modal-close:hover {
    color: var(--pub-text);
}
.dark-wpp-modal .modal-hint {
    text-align: center;
    color: var(--pub-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.dark-wpp-modal .store-btn {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--pub-green);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
    margin-bottom: 0.5rem;
}
.dark-wpp-modal .store-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}
.dark-wpp-modal .store-btn i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}
.dark-wpp-modal .store-name {
    font-weight: 700;
    font-size: 0.95rem;
}
.dark-wpp-modal .store-number {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* ========== Footer ========== */
.dark-footer {
    background: var(--pub-surface);
    border-top: 1px solid var(--pub-border);
    color: var(--pub-text-secondary);
}
.dark-footer a {
    color: var(--pub-text-secondary);
    transition: color .2s ease;
}
.dark-footer a:hover {
    color: var(--pub-text);
}
.dark-footer .footer-heading {
    font-family: var(--font-brand);
    font-weight: 700;
    color: var(--pub-text);
    margin-bottom: 1rem;
    font-size: 1rem;
}
.dark-footer .footer-divider {
    border-top: 1px solid var(--pub-border);
}
.dark-footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--pub-border);
    color: var(--pub-text-muted);
    transition: all .25s ease;
}
.dark-footer .social-icon:hover {
    border-color: var(--pub-accent);
    color: var(--pub-accent);
    background: var(--pub-accent-soft);
}

/* ========== Floating WhatsApp ========== */
.wpp-floating {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    background: var(--pub-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    transition: all .3s ease;
    animation: wppPulse 3s ease-in-out infinite;
}
.wpp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.5);
}
@keyframes wppPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(34, 197, 94, 0.6), 0 0 0 10px rgba(34, 197, 94, 0.1); }
}

/* ========== Scroll Reveal ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========== Custom section (gallery card) ========== */
.custom-card {
    background: var(--pub-surface);
    border: 1px solid var(--pub-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .35s ease;
}
.custom-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
    transform: translateY(-4px);
}

/* ========== Swiper overrides (dark) ========== */
.dark-site .swiper-button-prev,
.dark-site .swiper-button-next {
    color: white !important;
    background: rgba(17, 17, 24, 0.7) !important;
    border: 1px solid var(--pub-border) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
}
.dark-site .swiper-button-prev:hover,
.dark-site .swiper-button-next:hover {
    background: rgba(17, 17, 24, 0.9) !important;
    border-color: var(--pub-border-hover) !important;
}
.dark-site .swiper-button-prev::after,
.dark-site .swiper-button-next::after {
    font-size: 16px !important;
    font-weight: bold !important;
}
.dark-site .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: white !important;
    opacity: 0.4 !important;
    transition: all 0.3s ease !important;
}
.dark-site .swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.3) !important;
    background: var(--pub-accent) !important;
}

/* ========== Mobile Menu ========== */
.mobile-menu {
    background: var(--pub-surface);
    border-top: 1px solid var(--pub-border);
}
.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--pub-text-secondary);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all .2s ease;
}
.mobile-menu a:hover {
    background: var(--pub-surface-hover);
    color: var(--pub-text);
}

/* ========== Favorites Floating (dark) ========== */
.dark-site .favorites-floating {
    background: var(--pub-surface-raised);
    border: 1px solid var(--pub-border);
    color: var(--pub-accent);
    box-shadow: var(--shadow-card);
}
.dark-site .favorites-floating:hover {
    border-color: var(--pub-border-accent);
    box-shadow: 0 4px 16px var(--pub-accent-glow);
}

/* ========== Responsive ========== */
@media (max-width: 640px) {
    .dark-hero {
        padding: 6rem 1rem 3rem;
    }
    .dark-hero .hero-stats {
        gap: 1.5rem;
    }
    .dark-hero .hero-stat-value {
        font-size: 1.5rem;
    }
    .hero-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ========== Sobre Feature ========== */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
}
.feature-item .feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--pub-accent-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-item .feature-icon i {
    color: var(--pub-accent);
    font-size: 1rem;
}
.feature-item .feature-title {
    font-weight: 600;
    color: var(--pub-text);
    margin-bottom: 0.125rem;
}
.feature-item .feature-desc {
    font-size: 0.875rem;
    color: var(--pub-text-secondary);
}

/* ========== Tippy.js Dark Theme ========== */
.tippy-box[data-theme~='dark-red'] {
    background: var(--pub-accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}
.tippy-box[data-theme~='dark-red'] > .tippy-arrow::before {
    border-top-color: var(--pub-accent);
}

/* ========== Swiper Carousel (Quad/TLUX) ========== */
.quad-carousel,
.tlux-carousel {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
}
.quad-carousel .swiper-wrapper,
.tlux-carousel .swiper-wrapper {
    height: auto;
    transition: height 0.3s ease;
}
.quad-carousel .swiper-slide,
.tlux-carousel .swiper-slide {
    height: auto !important;
    min-height: 500px;
    position: relative;
    display: block;
}
