/* ====================================
   Word Instalações - ELECTRIC POWER THEME
   Ultra-Dynamic Dark Design System
   ==================================== */

/* --- CSS Variables --- */
:root {
    --electric-cyan: #d4a44a;
    --electric-blue: #b8860b;
    --electric-deep: #8b6914;
    --electric-violet: #a9a9a9;
    --electric-magenta: #8a8a8a;
    --electric-yellow: #facc15;
    --neon-glow: 0 0 20px rgba(212, 164, 74, 0.4), 0 0 40px rgba(212, 164, 74, 0.2);
    --neon-glow-strong: 0 0 10px rgba(212, 164, 74, 0.6), 0 0 30px rgba(212, 164, 74, 0.3), 0 0 60px rgba(212, 164, 74, 0.15);

    --bg-abyss: #030303;
    --bg-deep: #0a0a08;
    --bg-surface: #121210;
    --bg-card: #151513;
    --bg-card-hover: #1c1c18;
    --bg-elevated: #252520;

    --text-white: #f5f0e0;
    --text-light: #c0b8a0;
    --text-muted: #7a7260;

    --border-dim: rgba(212, 164, 74, 0.06);
    --border-glow: rgba(212, 164, 74, 0.15);

    --font-primary: 'Inter', system-ui, sans-serif;
    --font-heading: 'Cinzel', 'Outfit', serif;
}

/* --- Base --- */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-primary);
    background: var(--bg-abyss);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

::selection {
    background: var(--electric-cyan);
    color: var(--bg-abyss);
}

a { text-decoration: none; color: inherit; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-abyss); }
::-webkit-scrollbar-thumb { background: var(--electric-cyan); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--electric-blue); }

/* --- Font Aliases --- */
.font-heading { font-family: var(--font-heading); }

/* ====================================
   ELECTRIC CANVAS / PARTICLE SYSTEM
   ==================================== */
#electricCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ====================================
   NAVBAR
   ==================================== */
.navbar-electric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar-electric.scrolled {
    background: rgba(3, 3, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glow);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(212, 164, 74, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-bolt {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--electric-cyan), var(--electric-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--bg-abyss);
    box-shadow: var(--neon-glow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.brand-bolt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: shimmer 3s ease-in-out infinite;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--electric-cyan);
    margin-top: -3px;
    display: block;
    letter-spacing: 0.02em;
}

.brand-logo-img {
    display: block;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 0 22px rgba(212, 164, 74, 0.14);
}

.footer-brand-logo {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--electric-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--electric-cyan);
    transition: all 0.3s;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--electric-cyan);
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 50%;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-electric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-abyss);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 164, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 164, 74, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    animation: grid-pulse 8s ease-in-out infinite;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 164, 74, 0.12), transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(169, 145, 107, 0.08), transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06), transparent 70%);
    top: 30%;
    right: 20%;
    animation-delay: -7s;
}

/* Hero Content */
.hero-badge-electric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 164, 74, 0.06);
    border: 1px solid rgba(212, 164, 74, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--electric-cyan);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.hero-badge-electric::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 164, 74, 0.1), transparent);
    animation: scan-line 3s linear infinite;
}

.hero-title-electric {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 1.5rem 0;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line span {
    display: inline-block;
    transform: translateY(110%);
    animation: title-reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title-line:nth-child(2) span { animation-delay: 0.15s; }
.hero-title-line:nth-child(3) span { animation-delay: 0.3s; }

.text-electric {
    background: linear-gradient(135deg, var(--electric-cyan), var(--electric-blue), var(--electric-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease-in-out infinite;
}

.text-glow {
    text-shadow: 0 0 30px rgba(212, 164, 74, 0.3), 0 0 60px rgba(212, 164, 74, 0.1);
}

/* Electric Line Decoration */
.electric-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-cyan), var(--electric-blue));
    border-radius: 3px;
    box-shadow: var(--neon-glow);
    position: relative;
    overflow: hidden;
}

.electric-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: line-flash 2s ease-in-out infinite;
}

/* Hero Stats */
.stat-electric {
    text-align: center;
    position: relative;
}

.stat-electric-number {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    position: relative;
}

.stat-electric-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    opacity: 0.5;
}

.stat-electric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* Hero Visual - Lightning Bolt */
.hero-lightning-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lightning-core {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 164, 74, 0.08), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: core-pulse 3s ease-in-out infinite;
}

.lightning-core::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(212, 164, 74, 0.1);
    animation: ring-rotate 20s linear infinite;
}

.lightning-core::after {
    content: '';
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 164, 74, 0.06);
    animation: ring-rotate 30s linear infinite reverse;
}

.lightning-icon {
    font-size: 6rem;
    color: var(--electric-cyan);
    text-shadow: var(--neon-glow-strong);
    animation: bolt-flicker 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* Floating Service Cards */
.float-card {
    position: absolute;
    background: rgba(15, 15, 34, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: float-card 7s ease-in-out infinite;
    transition: all 0.3s;
    cursor: default;
}

.float-card:hover {
    border-color: var(--electric-cyan);
    box-shadow: var(--neon-glow), 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.float-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.float-card-1 { top: 10%; right: 8%; animation-delay: 0s; }
.float-card-1 .float-card-icon { background: rgba(212, 164, 74, 0.1); color: var(--electric-cyan); }

.float-card-2 { top: 50%; left: 0%; animation-delay: -2.5s; }
.float-card-2 .float-card-icon { background: rgba(169, 145, 107, 0.1); color: var(--electric-violet); }

.float-card-3 { bottom: 10%; right: 12%; animation-delay: -5s; }
.float-card-3 .float-card-icon { background: rgba(250, 204, 21, 0.1); color: var(--electric-yellow); }

/* ====================================
   BUTTONS
   ==================================== */
.btn-electric {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-electric-primary {
    background: linear-gradient(135deg, var(--electric-cyan), var(--electric-blue));
    color: var(--bg-abyss);
    box-shadow: 0 4px 20px rgba(212, 164, 74, 0.3);
}

.btn-electric-primary:hover {
    box-shadow: 0 8px 30px rgba(212, 164, 74, 0.5);
}

.btn-electric-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-electric-primary:hover::after {
    transform: translateX(100%);
}

.btn-electric-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-electric-outline:hover {
    border-color: var(--electric-cyan);
    color: var(--electric-cyan);
    background: rgba(212, 164, 74, 0.05);
    box-shadow: 0 4px 20px rgba(212, 164, 74, 0.1);
}

/* ====================================
   SECTION HEADERS
   ==================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(212, 164, 74, 0.06);
    border: 1px solid rgba(212, 164, 74, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--electric-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title-lg {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

/* ====================================
   SERVICE CARDS
   ==================================== */
.card-electric {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.card-electric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.card-electric:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 164, 74, 0.05);
}

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

.card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s;
}

.card-electric:hover .card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(212, 164, 74, 0.2);
}

.icon-cyan { background: rgba(212, 164, 74, 0.08); color: var(--electric-cyan); }
.icon-blue { background: rgba(184, 134, 11, 0.08); color: var(--electric-blue); }
.icon-violet { background: rgba(169, 145, 107, 0.08); color: var(--electric-violet); }
.icon-yellow { background: rgba(250, 204, 21, 0.08); color: var(--electric-yellow); }
.icon-magenta { background: rgba(160, 140, 110, 0.08); color: var(--electric-magenta); }

.card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Category Badges */
.badge-electric { display: inline-flex; padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.badge-eletrica { background: rgba(212, 164, 74, 0.1); color: var(--electric-cyan); border: 1px solid rgba(212, 164, 74, 0.15); }
.badge-hidraulica { background: rgba(169, 145, 107, 0.1); color: var(--electric-violet); border: 1px solid rgba(169, 145, 107, 0.15); }
.badge-ambos { background: rgba(160, 140, 110, 0.1); color: var(--electric-magenta); border: 1px solid rgba(160, 140, 110, 0.15); }
.badge-manutencao { background: rgba(250, 204, 21, 0.1); color: var(--electric-yellow); border: 1px solid rgba(250, 204, 21, 0.15); }

/* ====================================
   PORTFOLIO CARDS
   ==================================== */
.portfolio-card-electric {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-electric:hover {
    border-color: var(--border-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 164, 74, 0.05);
}

.portfolio-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.portfolio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-electric:hover .portfolio-img-wrap img {
    transform: scale(1.08);
}

.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

/* ====================================
   FEATURES / DIFERENTIALS
   ==================================== */
.feature-electric {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
}

.feature-electric:hover {
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-electric:hover .feature-icon-wrap {
    transform: scale(1.15) rotate(8deg);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonial-electric {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-electric:hover {
    border-color: var(--border-glow);
}

.testimonial-stars { color: var(--electric-yellow); font-size: 0.9rem; }
.testimonial-stars .dimmed { color: var(--text-muted); }

/* ====================================
   CTA
   ==================================== */
.cta-electric {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 164, 74, 0.06), rgba(169, 145, 107, 0.04));
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
}

.cta-electric::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 164, 74, 0.04), transparent 40%);
    animation: cta-glow-rotate 15s linear infinite;
}

/* ====================================
   PAGE HEADERS
   ==================================== */
.page-header-electric {
    padding: 8rem 0 3rem;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border-dim);
    position: relative;
    overflow: hidden;
}

.page-header-electric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-cyan), transparent);
    opacity: 0.3;
}

/* ====================================
   FORMS
   ==================================== */
.input-electric {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.input-electric::placeholder { color: var(--text-muted); }

.input-electric:focus {
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 3px rgba(212, 164, 74, 0.1), 0 0 20px rgba(212, 164, 74, 0.05);
}

.label-electric {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 6px;
}

/* ====================================
   LOGIN
   ==================================== */
.login-card-electric {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.login-card-electric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric-cyan), var(--electric-blue), var(--electric-violet));
}

/* ====================================
   DASHBOARD
   ==================================== */
.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.dash-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dash-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
}

.dash-card-cyan::before { background: var(--electric-cyan); }
.dash-card-blue::before { background: var(--electric-blue); }
.dash-card-violet::before { background: var(--electric-violet); }

/* Table */
.table-electric { width: 100%; font-size: 0.9rem; }
.table-electric thead th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-dim);
    text-align: left;
}
.table-electric tbody td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    color: var(--text-light);
    vertical-align: middle;
}
.table-electric tbody tr:hover { background: rgba(212, 164, 74, 0.02); }

/* ====================================
   UPLOAD AREA
   ==================================== */
.upload-electric {
    border: 2px dashed var(--border-dim);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-electric:hover,
.upload-electric.drag-over {
    border-color: var(--electric-cyan);
    background: rgba(212, 164, 74, 0.02);
}

/* ====================================
   GALLERY
   ==================================== */
.gallery-main-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
}

.gallery-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--electric-cyan);
    opacity: 1;
    box-shadow: 0 0 10px rgba(212, 164, 74, 0.2);
}

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

/* Detail sidebar */
.detail-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 100px;
}

/* ====================================
   FOOTER
   ==================================== */
.footer-electric {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-dim);
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.3s;
}

.footer-link:hover { color: var(--electric-cyan); }

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 120;
    width: 3.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-size: 1.7rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.42);
}

/* ====================================
   FILTER BAR
   ==================================== */
.filter-electric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--border-dim);
    color: var(--text-muted);
    background: var(--bg-card);
}

.filter-electric:hover {
    border-color: var(--border-glow);
    color: var(--electric-cyan);
    background: rgba(212, 164, 74, 0.04);
}

.filter-electric.active {
    background: linear-gradient(135deg, var(--electric-cyan), var(--electric-blue));
    color: var(--bg-abyss);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 164, 74, 0.3);
    font-weight: 700;
}

/* ====================================
   MESSAGES
   ==================================== */
.msg-electric {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    max-width: 500px;
    width: calc(100% - 2rem);
}

.msg-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid;
    backdrop-filter: blur(12px);
    margin-bottom: 0.5rem;
}

.msg-success { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); color: #34d399; }
.msg-error { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); color: #f87171; }
.msg-warning { background: rgba(250, 204, 21, 0.1); border-color: rgba(250, 204, 21, 0.2); color: #facc15; }
.msg-info { background: rgba(212, 164, 74, 0.1); border-color: rgba(212, 164, 74, 0.2); color: var(--electric-cyan); }

/* ====================================
   MODAL
   ==================================== */
.modal-electric {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 3, 8, 0.7);
    backdrop-filter: blur(8px);
    padding: 1rem;
}

.modal-electric.open { display: flex; }

.modal-content-electric {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--neon-glow);
}

/* ====================================
   SCROLL ANIMATIONS
   ==================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ====================================
   CURSOR FOLLOWER
   ==================================== */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 164, 74, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ====================================
   KEYFRAMES
   ==================================== */
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes scan-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes title-reveal {
    to { transform: translateY(0); }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

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

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bolt-flicker {
    0%, 100% { opacity: 1; text-shadow: var(--neon-glow-strong); }
    10% { opacity: 0.8; }
    12% { opacity: 1; }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(212,164,74,0.8), 0 0 40px rgba(212,164,74,0.4), 0 0 80px rgba(212,164,74,0.2); }
    52% { opacity: 0.6; }
    54% { opacity: 1; }
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes line-flash {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes cta-glow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1023px) {
    .float-card { display: none; }
    .lightning-core { width: 200px; height: 200px; }
    .lightning-icon { font-size: 4rem; }
}

@media (max-width: 767px) {
    .hero-lightning-container { display: none; }
    .cursor-glow { display: none; }
    #electricCanvas { opacity: 0.35; }
    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    #electricCanvas,
    .cursor-glow {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
