@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════ */
:root {
    /* Paleta Principal */
    --primary:        hsl(28, 95%, 53%);
    --primary-light:  hsl(28, 95%, 65%);
    --primary-dark:   hsl(24, 95%, 42%);
    --secondary:      hsl(210, 90%, 55%);

    /* Superfícies */
    --bg-dark:   hsl(222, 47%, 7%);
    --bg-card:   hsl(222, 38%, 12%);
    --bg-glass:  rgba(255,255,255,0.055);
    --bg-light:  hsl(210, 20%, 97%);
    --bg-white:  #ffffff;

    /* Texto */
    --text-white:  hsl(210, 20%, 98%);
    --text-dark:   hsl(222, 40%, 12%);
    --text-muted:  hsl(215, 16%, 47%);
    --text-subtle: hsl(215, 20%, 64%);

    /* Bordas & sombras */
    --border-glass:   rgba(255,255,255,0.08);
    --border-light:   rgba(0,0,0,0.07);
    --shadow-sm:  0 2px 8px  rgba(0,0,0,0.06);
    --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
    --shadow-glow: 0 0 32px rgba(249,115,22,0.25);

    /* Tipografia */
    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    /* Transições */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease);

    /* Raios */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ══════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════════════════
   HEADER / NAVEGAÇÃO
══════════════════════════════════════════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(13, 18, 36, 0.88);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo span { color: var(--primary); }

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.btn-admin-link:hover { color: #fff; }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.35s var(--ease);
    border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

/* ── Botão Painel (admin) na nav ── */
.btn-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249,115,22,0.12);
    border: 1.5px solid rgba(249,115,22,0.4);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: var(--transition);
    white-space: nowrap;
    margin-left: 1rem;
    text-decoration: none;
}
.btn-admin-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

/* ══════════════════════════════════════════════════
   HERO FULLSCREEN
══════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,18,36,0.92) 0%,
        rgba(13,18,36,0.70) 50%,
        rgba(13,18,36,0.85) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    padding-top: 80px;
}

/* Label de topo */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.28);
    color: var(--primary);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1.75rem;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--text-white);
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--primary) 30%, hsl(38,95%,68%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botões do Hero */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(249,115,22,0.35);
    border: none;
    cursor: pointer;
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.07);
    color: var(--text-white);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
    cursor: pointer;
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-3px);
}

/* Cards flutuantes de categoria no hero */
.hero-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-cat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-white);
}
.hero-cat-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(249,115,22,0.4);
    transform: translateX(6px);
}

.hero-cat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.hero-cat-label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.hero-cat-sub {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.hero-cat-arrow {
    margin-left: auto;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    transition: var(--transition);
}
.hero-cat-card:hover .hero-cat-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(249,115,22,0.7), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ══════════════════════════════════════════════════
   SEÇÃO DE STATS
══════════════════════════════════════════════════ */
.stats-section {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem 2rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 56px;
    background: var(--border-light);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   SEÇÃO COMUM: HEADERS DE SEÇÃO
══════════════════════════════════════════════════ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ══════════════════════════════════════════════════
   SEÇÃO DE PRODUTOS
══════════════════════════════════════════════════ */
.products-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Filtros */
.voltage-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.volt-filter {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1.5px solid var(--border-light);
    background: transparent;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.volt-filter:hover, .volt-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.volt-filter-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    background: var(--bg-dark);
    color: var(--text-white);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1.5px solid transparent;
}
.volt-filter-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Grid de Produtos */
.products-new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-new-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.product-new-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249,115,22,0.2);
}

.product-new-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: hsl(222, 35%, 14%);
}
.product-new-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.product-new-card:hover .product-new-img img {
    transform: scale(1.07);
}

.product-img-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, hsl(222, 45%, 10%) 0%, hsl(222, 38%, 18%) 100%);
    color: var(--primary);
    font-size: 3.5rem;
}

/* Badge de tensão no card */
.product-new-badge {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    backdrop-filter: blur(8px);
}
.product-new-badge.baixa  { background: rgba(16,185,129,0.85); }
.product-new-badge.media  { background: rgba(245,158,11,0.85); }
.product-new-badge.alta   { background: rgba(239,68,68,0.85); }
.product-new-badge.multi  { background: rgba(139,92,246,0.85); }
.product-new-badge.na, .product-new-badge { background: rgba(107,114,128,0.85); }

/* Overlay hover no produto */
.product-new-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,18,36,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.product-new-card:hover .product-new-overlay { opacity: 1; }

.btn-product-view {
    padding: 0.7rem 1.6rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    transform: translateY(10px);
    transition: transform 0.35s var(--ease), background 0.3s;
}
.product-new-card:hover .btn-product-view { transform: translateY(0); }
.btn-product-view:hover { background: var(--primary-dark); }

/* Info do produto */
.product-new-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-new-cat {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.product-new-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.product-new-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-new-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}
.link-arrow:hover { color: var(--primary); gap: 0.7rem; }

.product-new-stars { color: #F59E0B; font-size: 0.7rem; letter-spacing: 1px; }

/* Mensagem sem produtos */
.no-products-msg {
    grid-column: 1/-1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
}
.no-products-msg i { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* CTA de ver mais */
.products-cta {
    text-align: center;
    margin-top: 3.5rem;
}
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    background: transparent;
}
.btn-see-all:hover {
    background: var(--text-dark);
    color: #fff;
    transform: translateY(-3px);
}
.btn-see-all .fa-arrow-right { transition: transform 0.3s; }
.btn-see-all:hover .fa-arrow-right { transform: translateX(4px); }

/* ══════════════════════════════════════════════════
   POR QUE ESCOLHER A WGP
══════════════════════════════════════════════════ */
.why-section {
    background: var(--bg-light);
    padding: 7rem 2rem;
    border-top: 1px solid var(--border-light);
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}

.why-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.why-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.why-feat {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.why-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(249,115,22,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(249,115,22,0.2);
    transition: var(--transition);
}
.why-feat:hover .why-feat-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.why-feat h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.why-feat p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Coluna visual */
.why-visual-wrap {
    position: relative;
    height: 480px;
}

.why-main-card {
    position: absolute;
    inset: 2rem;
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border-glass);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-main-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.why-main-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.why-main-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.why-main-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
}

.why-main-lbl {
    font-size: 0.9rem;
    color: var(--text-subtle);
    text-transform: uppercase;
    font-weight: 600;
}

.why-main-card > p {
    color: var(--text-subtle);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Badges flutuantes */
.why-badge-float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-white);
    border-radius: 50px;
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    border: 1px solid var(--border-light);
}
.why-badge-float i { color: var(--primary); }

.why-badge-1 { top: 0;       right: 0; }
.why-badge-2 { bottom: 0;    left: 0; }
.why-badge-3 { bottom: 2.5rem; right: 0; }

/* ══════════════════════════════════════════════════
   GALERIA
══════════════════════════════════════════════════ */
.gallery-section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-new-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1.25rem;
    margin-bottom: 0;
}

/* Primeiros 2 itens maiores */
.gallery-new-item:nth-child(1) { grid-row: span 2; }
.gallery-new-item:nth-child(5) { grid-column: span 2; }

.gallery-new-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-new-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.gallery-new-item:hover img { transform: scale(1.07); }

.gallery-fallback {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, hsl(222,45%,10%) 0%, hsl(222,38%,16%) 100%);
    color: var(--text-subtle);
}
.gallery-fallback i   { font-size: 2.5rem; color: var(--primary); opacity: 0.6; }
.gallery-fallback span { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.gallery-new-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,18,36,0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    opacity: 0;
    transition: opacity 0.35s;
}
.gallery-new-item:hover .gallery-new-overlay { opacity: 1; }

.gallery-new-overlay span {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
}
.gallery-new-overlay i { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* ══════════════════════════════════════════════════
   CTA BANNER FINAL
══════════════════════════════════════════════════ */
.cta-banner {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    margin: 0 2rem 5rem;
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.18) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px; height: 72px;
    background: rgba(249,115,22,0.15);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
    margin: 0 auto 1.75rem;
    border: 1px solid rgba(249,115,22,0.25);
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--text-white);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-banner p {
    color: var(--text-subtle);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-glass);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.footer-brand p { color: var(--text-subtle); font-size: 0.92rem; line-height: 1.7; }

.footer-links h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
}
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
    color: var(--text-subtle);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-subtle);
    font-size: 0.83rem;
}
.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.footer-bottom a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════
   FORM & ALERTAS (outras páginas)
══════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }
.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-dark);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.alert { padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-weight: 500; }
.alert-success { background: rgba(16,185,129,0.08); border: 1px solid #10b981; color: #059669; }
.alert-danger  { background: rgba(239,68,68,0.08);  border: 1px solid #ef4444; color: #dc2626; }

/* Contato (outras páginas) */
.contact-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; background: var(--bg-white);
    padding: 3rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 1280px; margin: 0 auto;
}
.contact-details { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-detail-item { display: flex; align-items: center; gap: 1.5rem; }
.contact-icon-wrapper {
    width: 50px; height: 50px;
    background: rgba(249,115,22,0.08);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.3rem;
    border: 1px solid rgba(249,115,22,0.15);
}
.contact-detail-text h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.contact-detail-text p  { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0; }

/* Side info do contato */
.contact-info-side { padding-right: 2rem; }
.contact-info-side h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.contact-info-side > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 2rem; }

/* Badges de tensão (listagens de produtos) */
.voltage-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.voltage-badge.baixa { background: #10B981; color: #fff; }
.voltage-badge.media { background: #F59E0B; color: #fff; }
.voltage-badge.alta  { background: #EF4444; color: #fff; }
.voltage-badge.multi { background: #8B5CF6; color: #fff; }
.voltage-badge.na, .voltage-badge { background: #6B7280; color: #fff; }

/* ══════════════════════════════════════════════════
   BOTÕES GERAIS (outras páginas)
══════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.95rem;
    transition: var(--transition); cursor: pointer; border: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--primary); color: #fff;
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
}
.btn-outline:hover {
    background: var(--text-dark); color: #fff;
    transform: translateY(-3px);
}

/* Detalhes de produto (card antigo) */
.btn-details {
    color: var(--text-dark); text-decoration: none;
    font-weight: 700; font-size: 0.9rem;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: var(--transition);
}
.btn-details:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════
   RESPONSIVIDADE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner    { grid-template-columns: 1fr; padding-top: 100px; }
    .hero-cards-col { flex-direction: row; flex-wrap: wrap; }
    .hero-cat-card { flex: 1; min-width: 200px; }

    .why-inner     { grid-template-columns: 1fr; }
    .why-visual-wrap { height: 360px; }

    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-cat-card { flex-direction: column; text-align: center; }
    .hero-cat-arrow { display: none; }

    .stats-container { flex-wrap: wrap; gap: 0; }
    .stat-item { flex: 0 0 50%; }
    .stat-divider { display: none; }

    .gallery-new-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .gallery-new-item:nth-child(1) { grid-row: span 1; }
    .gallery-new-item:nth-child(5) { grid-column: span 1; }

    .contact-container { grid-template-columns: 1fr; }

    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom  { flex-direction: column; gap: 1rem; text-align: center; }

    .cta-banner { margin: 0 1rem 4rem; padding: 3.5rem 1.5rem; }

    .nav-links { display: none; }
}

@media (max-width: 480px) {
    .hero { min-height: 100svh; }
    .hero-inner { padding: 100px 1.25rem 2rem; }
    .gallery-new-grid { grid-template-columns: 1fr; }
    .products-new-grid { grid-template-columns: 1fr; }
    .why-visual-wrap { height: 280px; }
    .why-badge-1, .why-badge-2, .why-badge-3 { display: none; }
}

/* ══════════════════════════════════════════════════
   PÁGINA DE DETALHE DO PRODUTO
══════════════════════════════════════════════════ */
.product-detail-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

/* Grid de produtos relacionados */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

/* Card de produto (relacionados) */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(249,115,22,0.2);
}

/* Wrapper da imagem do card */
.product-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: hsl(222, 35%, 14%);
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.06);
}

/* Badge de classe de tensão */
.voltage-badge {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.voltage-badge.baixa  { background: rgba(16,185,129,0.85); }
.voltage-badge.média  { background: rgba(245,158,11,0.85); }
.voltage-badge.alta   { background: rgba(239,68,68,0.85); }
.voltage-badge.múltipla { background: rgba(139,92,246,0.85); }
.voltage-badge.n\/a,
.voltage-badge        { background: rgba(107,114,128,0.75); }

/* Info do card */
.product-info {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    display: block;
}

.product-info h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.3;
    flex-grow: 1;
}

.product-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Botão "Ver Detalhes" nos cards */
.btn-details {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}
.btn-details i { transition: transform 0.3s; }
.btn-details:hover { color: var(--primary); }
.btn-details:hover i { transform: translateX(4px); }

/* Responsivo: detalhe do produto */
@media (max-width: 900px) {
    .product-detail-section { padding: 5rem 1.5rem 3rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
@media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    filter: drop-shadow(0 8px 24px rgba(37, 211, 102, 0.40));
    transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 14px 32px rgba(37, 211, 102, 0.55));
}

/* Tooltip */
.whatsapp-tooltip {
    background: hsl(137, 78%, 18%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
    pointer-events: none;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

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

/* Botão circular */
.whatsapp-btn-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    position: relative;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

/* Anel de pulso animado */
.whatsapp-btn-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid rgba(37, 211, 102, 0.45);
    animation: waPulse 2.2s ease-out infinite;
}

.whatsapp-btn-circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.20);
    animation: waPulse 2.2s ease-out infinite 0.7s;
}

@keyframes waPulse {
    0%   { transform: scale(1); opacity: 1; }
    60%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Badge de "Online" acima do botão */
.whatsapp-online-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #4ADE80;
    border-radius: 50%;
    border: 2.5px solid #fff;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .whatsapp-tooltip { display: none; }
    .whatsapp-btn-circle {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
}

/* ══════════════════════════════════════════════════
   CATÁLOGO MODERNO WGP (PADRÃO TÉCNICO B2B)
══════════════════════════════════════════════════ */
.catalog-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Sidebar de Filtros */
.catalog-sidebar {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 1.75rem;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.filter-section {
    margin-bottom: 1.75rem;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-cat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.filter-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
}

.filter-cat-link:hover {
    background: #f8fafc;
    color: var(--primary);
    transform: translateX(4px);
}

.filter-cat-link.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    border-left: 3px solid var(--primary);
}

.filter-badge-count {
    background: #f1f5f9;
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.filter-cat-link.active .filter-badge-count {
    background: var(--primary);
    color: #fff;
}

/* Chips de Classes */
.filter-class-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-chip:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

.filter-chip.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

/* Botão Limpar Filtros */
.btn-reset-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem;
    border-radius: 8px;
    border: 1px dashed #cbd5e1;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1.25rem;
}
.btn-reset-filters:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #ef4444;
}

/* Toolbar Superior */
.catalog-toolbar {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalog-search-form {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.catalog-search-input {
    width: 100%;
    height: 46px;
    padding: 0 3rem 0 2.75rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.2s ease;
}
.catalog-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.catalog-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.catalog-search-btn {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}
.catalog-search-btn:hover {
    background: var(--primary-dark);
}

.catalog-controls {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.catalog-count-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}
.catalog-count-label strong {
    color: var(--text-dark);
}

.view-mode-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.view-btn {
    border: none;
    background: transparent;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.view-btn.active {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-weight: 700;
}

/* MODO GRADE (GRID VIEW) */
.products-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-tech-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.product-tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.1);
    border-color: rgba(249, 115, 22, 0.3);
}

.product-tech-img-box {
    position: relative;
    height: 220px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.product-tech-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-tech-card:hover .product-tech-img-box img {
    transform: scale(1.06);
}

.product-badge-float {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    z-index: 2;
}
.product-badge-float.alta {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.product-badge-float.media {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.product-badge-float.baixa {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.product-badge-float.multipla, .product-badge-float.geral {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.product-datasheet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.product-tech-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-tech-cat {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.product-tech-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.product-tech-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex: 1;
}

.product-tech-footer {
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-tech-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-tech-detail:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* MODO LISTA TÉCNICA (LIST VIEW) */
.products-layout-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-list-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.25s ease;
}

.product-list-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateX(4px);
}

.product-list-img {
    height: 110px;
    background: #f8fafc;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.03);
}
.product-list-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-list-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-list-tags {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.product-list-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.25rem 0;
}

.product-list-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 600px;
}

.product-list-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: stretch;
    min-width: 180px;
}

.btn-list-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-list-action.primary {
    background: var(--primary);
    color: #fff;
}
.btn-list-action.primary:hover {
    background: var(--primary-dark);
}
.btn-list-action.pdf {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.btn-list-action.pdf:hover {
    background: #ef4444;
    color: #ffffff;
}

/* Responsividade do Catálogo */
@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    .product-list-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .product-list-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

