/* ==============================================================================
   U M B R A   H O M E   -   P R E M I U M   D E S I G N   S Y S T E M
   LemosPlatform Sovereign Aesthetics
   ============================================================================== */

:root {
    /* ── Base Surfaces ── */
    --bg:            #080808;   /* matte black */
    --bg2:           #111111;   /* surface primária */
    --bg-elevated:   #1A1A1A;   /* surface elevada */
    --bg-hover:      #242424;   /* hover state */

    /* ── Gold Accent — LEMOS brand ── */
    --gold:          #C9A843;
    --gold-light:    #D4B86A;
    --gold-bright:   #E0CB94;
    --gold-fill:     rgba(201, 168, 67, 0.08);
    --gold-glow:     rgba(201, 168, 67, 0.22);
    --gold-glow-lg:  rgba(201, 168, 67, 0.12);

    /* ── Legacy aliases (mapped to gold) ── */
    --cyan:          #C9A843;
    --cyan-glow:     rgba(201, 168, 67, 0.22);
    --cyan-dim:      rgba(201, 168, 67, 0.08);

    /* ── Status Colors (uso restrito) ── */
    --green:         #4ADE80;   /* status OK apenas */
    --green-glow:    rgba(74, 222, 128, 0.25);
    --purple:        #a78bfa;
    --orange:        #ff6a00;
    --warning:       #FBBF24;

    /* ── Text Scale ── */
    --text:          #FFFFFF;
    --text-mid:      #999999;
    --text-dim:      #555555;

    /* ── Borders ── */
    --border:        rgba(255, 255, 255, 0.06);
    --border-mid:    rgba(255, 255, 255, 0.10);
    --border-high:   rgba(255, 255, 255, 0.16);

    /* ── Shadows ── */
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.4);
    --shadow-md:     0 8px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
    --shadow-gold:   0 4px 20px rgba(201,168,67,0.25), 0 1px 4px rgba(0,0,0,0.4);

    /* ── Layout ── */
    --border-radius: 12px;
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     16px;
    --radius-xl:     24px;

    /* ── Easing ── */
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
    --transition:  all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Selection & Base Header Hierarchy */
h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

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

/* ==============================================================================
   C O M P O N E N T S   &   U I   E L E M E N T S
   ============================================================================== */

/* Geo-Targeted Alerts Banner */
.geo-banner {
    background: linear-gradient(90deg, #020b14, #041221);
    border-bottom: 1px solid rgba(201, 168, 67, 0.15);
    color: var(--text-mid);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pulse-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--green);
    display: inline-block;
    animation: pulse 1.8s infinite alternate;
}

/* Header & Nav */
.header {
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(20px, 5vw, 64px);
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-txt {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: var(--text);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 10px rgba(240, 248, 255, 0.15);
}

.logo-sub {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    color: var(--cyan);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 8px var(--cyan-glow);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--text);
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--cyan);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-status-pill {
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.18);
    border-radius: 99px;
    padding: 5px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--green);
}

/* CTA button in nav */
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--gold);
    color: #000;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.22s var(--ease-out);
    letter-spacing: 0.01em;
}
.btn-nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
    color: #000;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 40px 140px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 67, 0.08) 0%, rgba(1, 4, 8, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    background: rgba(201, 168, 67, 0.05);
    border: 1px solid rgba(201, 168, 67, 0.15);
    border-radius: 30px;
    padding: 6px 18px;
    color: var(--cyan);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 0 10px rgba(201, 168, 67, 0.05);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--text-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ── Buttons — Premium Physical Feel ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s var(--ease-out);
    box-shadow: 0 1px 2px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #000;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s var(--ease-out);
}

.btn-secondary:hover {
    border-color: var(--border-high);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.category-sec {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.sec-header {
    margin-bottom: 50px;
}

.sec-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.sec-subtitle {
    color: var(--text-mid);
    font-size: 1rem;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

/* ==============================================================================
   P R O D U C T   C A R D S   (G L A S S M O R P H I S M)
   ============================================================================== */

.product-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        border-color 0.25s var(--ease-out),
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}

.product-card > *:not(.card-glow),
.highlight-card > *:not(.card-glow) {
    position: relative;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: transparent;
    transition: background 0.1s ease;
}

/* Gold shimmer line no topo no hover */
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card:hover::before {
    opacity: 0.75;
}

.product-badge {
    display: inline-flex;
    padding: 3px 10px;
    background: var(--gold-fill);
    border: 1px solid rgba(201, 168, 67, 0.25);
    border-radius: 99px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
    width: fit-content;
}

.product-badge--new {
    background: rgba(167, 139, 250, 0.08);
    border-color: rgba(167, 139, 250, 0.25);
    color: var(--purple);
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text);
}

.product-desc {
    color: var(--text-mid);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-mid);
}

.specs span {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.price-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    border: none;
    color: #000;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.22s var(--ease-out);
    cursor: pointer;
    white-space: nowrap;
}

.btn-buy:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
    color: #000;
}

/* Highlight Cards (Heating) */
.highlight-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition:
        border-color 0.25s var(--ease-out),
        transform 0.35s var(--ease-out),
        box-shadow 0.35s var(--ease-out);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover {
    border-color: var(--border-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.highlight-card:hover::before {
    opacity: 0.6;
}

.badge-accent {
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 12px;
}

.highlight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.highlight-card .desc {
    color: var(--text-mid);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pros-cons {
    margin-bottom: 30px;
}

.pros-cons .pros {
    color: var(--green);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.pros-cons .cons {
    color: var(--orange);
    font-size: 0.88rem;
}

.action-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    margin-left: 6px;
    font-weight: 400;
}

.btn-buy-large {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.22s var(--ease-out);
    box-shadow: 0 1px 2px rgba(0,0,0,0.4);
    cursor: pointer;
}

.btn-buy-large:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: #000;
}

/* ==============================================================================
   C O M P A R I S O N   T A B L E
   ============================================================================== */

.table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
    min-width: 600px;
}

.comparison-table th {
    background: rgba(4, 10, 16, 0.8);
    padding: 18px 24px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-mid);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text);
}

.feature-lbl {
    font-weight: 600;
    color: var(--text) !important;
}

/* ==============================================================================
   I N T E R A C T I V E   C A L C U L A T O R
   ============================================================================== */

.calc-section {
    margin: 80px 0;
    background: radial-gradient(100% 100% at 50% 0%, rgba(201, 168, 67, 0.03) 0%, rgba(1, 4, 8, 0) 100%), rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(201, 168, 67, 0.08);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-section h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.calc-section p {
    color: var(--text-mid);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.calc-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    flex-grow: 1;
    text-align: left;
    min-width: 280px;
}

.slider-container label {
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.slider-container label span {
    color: var(--cyan);
    font-size: 1.2rem;
}

/* Range Input Customization */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 3px;
    outline: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold-glow);
    transition: transform 0.15s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-result {
    background: rgba(201, 168, 67, 0.03);
    border: 1px solid rgba(201, 168, 67, 0.15);
    padding: 24px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    min-width: 220px;
}

.calc-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    text-shadow: none;
    line-height: 1.1;
    margin-bottom: 6px;
}

.calc-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-mid);
    font-weight: 600;
}

/* ==============================================================================
   F O O T E R
   ============================================================================== */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #000307;
    padding: 80px 40px 40px 40px;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 500px;
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    color: var(--text);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--text-mid);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ==============================================================================
   M O D A L   (DISCLAIMER)
   ============================================================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg2);
    border: 1px solid rgba(201, 168, 67, 0.2);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    padding: 35px;
    position: relative;
    box-shadow: 0 10px 40px rgba(201, 168, 67, 0.1);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-mid);
    line-height: 1;
}

.modal-close:hover {
    color: var(--cyan);
}

.modal-body p {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin-bottom: 15px;
}

/* ==============================================================================
   A N I M A T I O N S
   ============================================================================== */

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 6px var(--green); }
    100% { transform: scale(1.05); box-shadow: 0 0 12px var(--green); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================================================
   H E R O   C A N V A S   A N I M A T I O N
   ============================================================================== */

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ==============================================================================
   P R O D U C T   I M A G E S   (real Amazon CDN photos)
   ============================================================================== */

.product-img-wrap {
    width: 100%;
    height: 160px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-badge--new {
    background: rgba(167,139,250,0.12);
    border-color: rgba(167,139,250,0.3);
    color: var(--purple);
}

/* ==============================================================================
   P R O D U C T   C A R D   I C O N S
   ============================================================================== */

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 67, 0.04);
    border: 1px solid rgba(201, 168, 67, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px;
    transition: var(--transition);
}

.product-card:hover .card-icon {
    background: rgba(201, 168, 67, 0.08);
    border-color: rgba(201, 168, 67, 0.25);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

/* ==============================================================================
   L E M O S   G R O U P   B R A N D I N G
   ============================================================================== */

/* ── LEMOS logo real (PNG) ── */
.lemos-mark-nav {
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 10px;
    margin-bottom: 1px;
    transition: filter 0.3s ease;
}

.logo:hover .lemos-mark-nav {
    filter: drop-shadow(0 0 6px rgba(201, 168, 67, 0.6));
}

.lemos-mark-footer {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(201, 168, 67, 0.3));
}

.lemos-group-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.lemos-group-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lemos-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: #c9a843;
    letter-spacing: 0.18em;
}

.lemos-sub {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.48rem;
    color: #c9a843;
    letter-spacing: 0.28em;
    opacity: 0.65;
}

/* ═══════════════════════════════════════════════════════════════
   CINEMATIC HERO BACKGROUND  — Door × Lock Camera Approach
   Loop: fade-in (0.8s) → slow zoom to lock (7.2s) → fade-out (1.2s)
   → invisible snap-reset → repeat  (total 10s)
   ═══════════════════════════════════════════════════════════════ */

.cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.cinematic-scene {
    position: absolute;
    inset: 0;
    /* transform-origin points at the smart-lock in the SVG:
       lock ≈ (607/1200, 390/700) = 51% / 56%  of SVG; after slice-fit ≈ 51% 56% of viewport */
    transform-origin: 51% 56%;
    animation: cameraZoom 10s ease-in-out infinite;
    will-change: transform, opacity;
}

.door-svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes cameraZoom {
    0%   { transform: scale(1);   opacity: 0; }
    8%   { transform: scale(1);   opacity: 1; }
    80%  { transform: scale(4);   opacity: 1; }
    91%  { transform: scale(4);   opacity: 0; }
    92%  { transform: scale(1);   opacity: 0; }
    100% { transform: scale(1);   opacity: 0; }
}

/* Film grain – SVG feTurbulence noise tile, shifts each frame */
.film-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.038;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
    animation: grainShift 0.08s steps(1) infinite;
}

@keyframes grainShift {
    0%   { background-position:  0px   0px;  }
    20%  { background-position: -5px   3px;  }
    40%  { background-position:  4px  -3px;  }
    60%  { background-position: -3px   5px;  }
    80%  { background-position:  2px  -5px;  }
    100% { background-position: -4px   2px;  }
}

/* Smart lock LED — subtle pulse */
@keyframes ledPulse {
    0%, 100% { opacity: 0.9; }
    50%       { opacity: 0.35; }
}

#lock-led {
    animation: ledPulse 1.8s ease-in-out infinite;
}

/* Motion alert — synced to the 10s camera zoom cycle:
   appears at ~74% (7.4s) when fully zoomed in, fades at ~90% */
@keyframes motionAlert {
    0%, 72%       { opacity: 0; }
    76%, 87%      { opacity: 1; }
    91%, 100%     { opacity: 0; }
}

#motion-alert {
    animation: motionAlert 10s ease-in-out infinite;
}

/* Hero Tagline Override (legacy) */
.hero-sinta {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0.13em;
    background: linear-gradient(170deg, #ffffff 0%, rgba(190, 215, 255, 0.72) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 36px rgba(201, 168, 67, 0.22));
}

/* ═══════════════════════════════════════════════════════════════
   T R U S T   B A R
   ═══════════════════════════════════════════════════════════════ */

.trust-bar {
    background: #000d1a;
    border-bottom: 1px solid rgba(255,153,0,0.18);
    padding: 9px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 6px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #b8c8d8;
    padding: 0 16px;
    white-space: nowrap;
}

.trust-flag { font-size: 1rem; }

.trust-sep {
    color: rgba(255,255,255,0.12);
    font-size: 1.1rem;
    line-height: 1;
    user-select: none;
}

.trust-amazon svg { vertical-align: middle; }

/* ═══════════════════════════════════════════════════════════════
   H E R O   P R E M I U M   (2-column layout)
   ═══════════════════════════════════════════════════════════════ */

.hero-premium {
    position: relative;
    padding: 0;
    min-height: 580px;
    display: flex;
    align-items: stretch;
    text-align: left;
    overflow: hidden;
}

/* Background: cinematic video layer */
.hero-bg-premium {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-door {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    /* Let video breathe in the center; darken edges for text/card readability */
    background:
        linear-gradient(
            105deg,
            rgba(8,8,8,0.80) 0%,
            rgba(8,8,8,0.52) 30%,
            rgba(8,8,8,0.60) 55%,
            rgba(8,8,8,0.94) 100%
        ),
        linear-gradient(to bottom, rgba(8,8,8,0.30) 0%, transparent 20%, transparent 75%, rgba(8,8,8,0.60) 100%);
}

/* 2-column grid */
.hero-premium-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 40px 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* LEFT column */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.badge-hot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,100,0,0.12);
    border: 1px solid rgba(255,100,0,0.35);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ff8c42;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: fit-content;
}

.hero-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0.04em;
    color: #fff;
    margin-bottom: 22px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.headline-accent {
    display: block;
    background: linear-gradient(90deg, #C9A843, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: #b0c8e0;
    line-height: 1.65;
    max-width: 500px;
    margin-bottom: 34px;
}

.hero-premium .hero-actions {
    justify-content: flex-start;
    margin-bottom: 28px;
}

.hero-trust-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.hero-trust-mini span {
    font-size: 0.78rem;
    color: #6a8fa8;
    font-weight: 500;
}

/* RIGHT column: deals */
.hero-deals {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.deal-week-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ff8c42;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.deal-refresh-label {
    font-size: 0.72rem;
    color: #4a6a88;
    font-style: italic;
}

/* Individual deal card */
.deal-card {
    display: flex;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 168, 67, 0.12);
    border-radius: 14px;
    padding: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 67, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.deal-card:hover {
    border-color: rgba(201, 168, 67, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(201, 168, 67, 0.06);
    color: var(--text);
}

.deal-card:hover::before { opacity: 1; }

.de
/* ═══════════════════════════════════════════════════════════════
   S C R O L L   R E V E A L
   ═══════════════════════════════════════════════════════════════ */

[data-animate] {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   B O D Y   N O I S E   (textura premium sutil)
   ═══════════════════════════════════════════════════════════════ */

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

/* ═══════════════════════════════════════════════════════════════
   P R O D U C T   R A T I N G   R O W
   ═══════════════════════════════════════════════════════════════ */

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 16px;
    font-size: 0.8rem;
}

.product-rating .stars {
    color: #FBBF24;
    font-size: 0.85rem;
    line-height: 1;
}

.product-rating .rating-val {
    font-weight: 600;
    color: var(--text);
}

.product-rating .rating-count {
    color: var(--text-mid);
    font-size: 0.72rem;
}

.product-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.btn-product {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   G E O   B A N N E R   clean
   ═══════════════════════════════════════════════════════════════ */

.geo-banner {
    background: var(--bg2) !important;
    border-bottom: 1px solid var(--border) !important;
    box-shadow: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   F E A T U R E   B A R
   ═══════════════════════════════════════════════════════════════ */

.feature-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.feature-item span {
    color: var(--text-mid);
}

.feature-sep {
    width: 1px;
    height: 14px;
    background: var(--border-mid);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   N A V   —   T H I S   W E E K   H I G H L I G H T
   ═══════════════════════════════════════════════════════════════ */

.nav-link--hot {
    color: #ff8c42 !important;
    font-weight: 600;
    position: relative;
}

.nav-link--hot::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #ff8c42;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════
   T H I S   W E E K   S E C T I O N
   ═══════════════════════════════════════════════════════════════ */

.this-week-sec {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 72px 0;
}

.this-week-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.this-week-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

/* Individual card */
.tw-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-mid);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.tw-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,168,67,0.35);
    box-shadow: 0 12px 40px rgba(201,168,67,0.12), 0 4px 16px rgba(0,0,0,0.4);
}

.tw-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(8,8,8,0.72);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-mid);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.04em;
}

.tw-card-img-wrap {
    width: 100%;
    height: 280px;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tw-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform 0.4s var(--ease-out);
}

.tw-card:hover .tw-card-img {
    transform: scale(1.04);
}

.tw-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tw-card-pick {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff8c42;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tw-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.tw-card-desc {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 4px 0 8px;
}

.tw-card-rating {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 500;
}

.tw-card-rating span {
    color: var(--text-mid);
    font-weight: 400;
}

.tw-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.tw-card-price {
    font-size: 0.82rem;
    color: #555;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   R E S P O N S I V E
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
    .hero-premium-inner {
        padding: 70px 24px 80px;
    }
    .hero-headline { font-size: clamp(2rem, 7vw, 3rem); }
    .hero-sub      { max-width: 100%; }
    .hero-actions  { justify-content: flex-start; flex-wrap: wrap; }
    .this-week-grid { grid-template-columns: 1fr; }
    .nav           { display: none; }
}

@media (max-width: 600px) {
    .trust-sep    { display: none; }
    .trust-item   { padding: 0 10px; font-size: 0.72rem; }
    .feature-sep  { display: none; }
    .feature-item { padding: 0 12px; }
    .header       { padding: 0 20px; }
    .hero-actions a { min-width: 140px; justify-content: center; }
}
