
/* Shell compartilhado — menu e rodapé (igual Catálogo) */
:root {
    --primary: #008C8C;
    --secondary: #00384F;
    --petrol: #004D6B;
    --accent: #D9E6EE;
    --accent-light: #E8F0F4;
    --text-dark: #48586A;
    --heading: #00384F;
    --bg-color: #EEF3F6;
    --card-bg: #FFFFFF;
    --border: #C5D4DC;
}

body.shell-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.top-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--petrol) 100%);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.top-bar a { color: #ffffff; text-decoration: none; }
.top-bar a:hover { color: var(--primary); }

.main-header {
    background-color: var(--card-bg);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 200;
}
.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    min-height: 72px;
    gap: 16px;
}
.logo { display: flex; align-items: center; text-decoration: none; padding: 12px 0; flex-shrink: 0; }
.logo img { height: 42px; width: auto; object-fit: contain; }
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}
.site-nav {
    display: flex;
    gap: clamp(12px, 2vw, 35px);
    align-items: center;
    flex-wrap: wrap;
}
.site-nav a {
    color: var(--heading);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 1.4vw, 15px);
    padding: 25px 0;
    position: relative;
    white-space: nowrap;
}
.site-nav a.active, .site-nav a:hover { color: var(--primary); }
.site-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    cursor: pointer;
    flex-shrink: 0;
}
.menu-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--heading);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn-header-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #00A3A3 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid var(--petrol);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-header-cta:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--petrol) 100%);
    color: #ffffff;
}

/* Rodapé largura total (igual catálogo) */
.site-footer {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text-dark);
    padding: 48px 20px 36px;
    margin: 60px 0 0;
    border-top: 2px solid var(--petrol);
    clear: both;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 32px;
    align-items: start;
}
.footer-brand img.footer-logo { max-width: 280px; width: 100%; height: auto; margin-bottom: 18px; display: block; }
.footer-brand h4, .footer-col h4 { color: var(--heading); font-size: 18px; font-weight: 600; margin: 0 0 14px; }
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.6; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 15px; }
.footer-col a { color: var(--text-dark); text-decoration: none; font-weight: 500; }
.footer-col a:hover { color: var(--primary); }
.footer-iso img { max-width: 110px; width: 100%; height: auto; display: block; margin-top: 18px; }
.footer-contact-item { margin-bottom: 10px; font-size: 14px; line-height: 1.5; }
.footer-contact-item strong { display: block; color: var(--heading); font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.footer-contact-line { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.contact-icon { width: 16px; height: 16px; flex-shrink: 0; }
.contact-icon-whatsapp { fill: #1EBE57; }
.contact-icon-phone { fill: var(--petrol, #00384F); }
.footer-copy {
    max-width: 1280px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
    }
    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--card-bg);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0, 56, 79, 0.12);
        padding: 8px 0 12px;
        z-index: 210;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a {
        padding: 14px 24px;
        font-size: 15px;
        border-bottom: 1px solid var(--accent);
    }
    .site-nav a.active::after { display: none; }
    .site-nav a.active { background: var(--accent-light); }
    .header-container { position: relative; flex-wrap: wrap; }
    .header-right { gap: 12px; }
    .btn-header-cta { font-size: 13px; padding: 8px 16px; }
}

@media (max-width: 850px) {
    .header-container { min-height: auto; padding: 10px 0; }
    .top-bar { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px 14px; font-size: 12px; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-brand img.footer-logo, .footer-iso img { margin-left: auto; margin-right: auto; }
}


/* Conteúdo da página */
:root {
            --fc-petrol: #00384F;
            --fc-teal: #008C8C;
            --fc-teal-deep: #006F6F;
            --fc-mist: #EEF3F6;
            --fc-ink: #2A3A48;
            --fc-muted: #5A6B7A;
            --fc-dirty: #3A3228;
            --fc-amber: #C4A35A;
            --fc-amber-dim: rgba(196, 163, 90, 0.18);
            --fc-clean: #E8F6F6;
            --fc-white: #FFFFFF;
            --fc-border: #C5D4DC;
            --fc-display: "Saira Condensed", "Arial Narrow", sans-serif;
            --fc-body: "Source Sans 3", "Segoe UI", sans-serif;
        }

        .fc-page {
            font-family: var(--fc-body);
            color: var(--fc-ink);
            background: var(--fc-mist);
            overflow-x: clip;
        }
        .fc-page h1, .fc-page h2, .fc-page h3,
        .fc-page .fc-brand, .fc-page .fc-spec-val,
        .fc-page .fc-gate-label {
            font-family: var(--fc-display);
            letter-spacing: 0.02em;
            font-weight: 700;
        }

        /* —— Hero —— */
        .fc-hero {
            position: relative;
            min-height: min(78vh, 680px);
            display: grid;
            align-items: center;
            color: var(--fc-white);
            overflow: hidden;
            isolation: isolate;
        }
        .fc-hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
            transform: scale(1.1);
            animation: fc-hero-drift 22s ease-in-out alternate both;
            will-change: transform;
        }
        .fc-hero-shade {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(105deg, rgba(0, 36, 52, 0.88) 0%, rgba(0, 56, 79, 0.72) 40%, rgba(0, 77, 107, 0.35) 68%, rgba(0, 77, 107, 0.12) 100%);
            pointer-events: none;
        }
        .fc-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            z-index: 2;
            height: 88px;
            background: linear-gradient(to top, var(--fc-mist), transparent);
            pointer-events: none;
        }
        .fc-hero-inner {
            position: relative;
            z-index: 3;
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: clamp(40px, 6vh, 72px) 24px clamp(48px, 7vh, 80px);
        }
        .fc-brand {
            display: inline-block;
            font-size: clamp(1.35rem, 3.2vw, 2rem);
            text-transform: uppercase;
            color: #9FD9D9;
            margin: 0 0 12px;
            opacity: 0;
            animation: fc-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
        }
        .fc-hero h1 {
            margin: 0 0 16px;
            font-size: clamp(2.35rem, 6.2vw, 4.4rem);
            line-height: 0.95;
            max-width: 14ch;
            text-transform: uppercase;
            opacity: 0;
            animation: fc-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
        }
        .fc-hero-lead {
            margin: 0 0 28px;
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            line-height: 1.45;
            max-width: 36ch;
            color: rgba(255, 255, 255, 0.88);
            opacity: 0;
            animation: fc-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
        }
        .fc-hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            opacity: 0;
            animation: fc-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.46s both;
        }
        .fc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 26px;
            font-family: var(--fc-display);
            font-weight: 700;
            font-size: 1.05rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-decoration: none;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .fc-btn:hover { transform: translateY(-3px); }
        .fc-btn-primary {
            background: var(--fc-teal);
            color: var(--fc-white);
            box-shadow: 0 10px 24px rgba(0, 140, 140, 0.28);
        }
        .fc-btn-primary::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.28) 45%, transparent 70%);
            transform: translateX(-120%);
            transition: transform 0.55s ease;
        }
        .fc-btn-primary:hover::after { transform: translateX(120%); }
        .fc-btn-primary:hover { background: var(--fc-teal-deep); color: #fff; }
        .fc-btn-ghost {
            background: transparent;
            color: var(--fc-white);
            border-color: rgba(255, 255, 255, 0.55);
        }
        .fc-btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        .fc-btn-outline {
            background: transparent;
            color: var(--fc-petrol);
            border-color: var(--fc-petrol);
        }
        .fc-btn-outline:hover {
            background: var(--fc-petrol);
            color: #fff;
        }

        /* —— Gate (dirty | clean) —— */
        .fc-gate {
            max-width: 1280px;
            margin: -24px auto 0;
            padding: 0 20px 64px;
            position: relative;
            z-index: 2;
        }
        .fc-gate-head {
            text-align: center;
            margin: 0 auto 28px;
            max-width: 40rem;
        }
        .fc-gate-head h2 {
            margin: 0;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: var(--fc-petrol);
            text-transform: uppercase;
            line-height: 1.05;
        }
        .fc-gate-board {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 0;
            border: 1px solid var(--fc-border);
            background: var(--fc-white);
            box-shadow: 0 18px 40px rgba(0, 56, 79, 0.08);
            min-height: 340px;
            overflow: hidden;
        }
        .fc-pane {
            padding: clamp(24px, 4vw, 40px);
            position: relative;
            opacity: 0;
            transition:
                opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .fc-pane-dirty {
            background:
                linear-gradient(160deg, #2C261F 0%, #3D342A 55%, #2A3A38 100%);
            color: #F2E8D5;
            transform: translateX(-36px);
        }
        .fc-pane-dirty::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 20% 30%, var(--fc-amber-dim), transparent 55%),
                repeating-linear-gradient(
                    -12deg,
                    transparent,
                    transparent 11px,
                    rgba(0, 0, 0, 0.06) 11px,
                    rgba(0, 0, 0, 0.06) 12px
                );
            pointer-events: none;
            opacity: 0.55;
            transition: opacity 0.8s ease;
        }
        .fc-pane-clean {
            background:
                linear-gradient(165deg, var(--fc-clean) 0%, #FFFFFF 45%, #D9EFEF 100%);
            color: var(--fc-petrol);
            transform: translateX(36px);
            clip-path: inset(0 0 0 100%);
        }
        .fc-gate-board.is-on .fc-pane {
            opacity: 1;
            transform: translateX(0);
        }
        .fc-gate-board.is-on .fc-pane-clean {
            clip-path: inset(0 0 0 0);
            transition:
                opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
                clip-path 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
        }
        .fc-gate-board.is-on .fc-pane-dirty::before { opacity: 1; }
        .fc-pane > * { position: relative; z-index: 1; }
        .fc-gate-label {
            display: inline-block;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 14px;
            opacity: 0.85;
        }
        .fc-pane-dirty .fc-gate-label { color: var(--fc-amber); }
        .fc-pane-clean .fc-gate-label { color: var(--fc-teal); }
        .fc-pane h3 {
            margin: 0 0 12px;
            font-size: clamp(1.45rem, 2.4vw, 1.9rem);
            line-height: 1.1;
            text-transform: uppercase;
        }
        .fc-pane p {
            margin: 0 0 18px;
            line-height: 1.5;
            font-size: 1rem;
        }
        .fc-pane-dirty p { color: rgba(242, 232, 213, 0.88); }
        .fc-chip-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }
        .fc-chip-list li {
            padding: 10px 12px;
            font-size: 0.95rem;
            line-height: 1.35;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.45s ease, transform 0.45s ease;
        }
        .fc-gate-board.is-on .fc-chip-list li {
            opacity: 1;
            transform: translateY(0);
        }
        .fc-gate-board.is-on .fc-pane-dirty .fc-chip-list li:nth-child(1) { transition-delay: 0.28s; }
        .fc-gate-board.is-on .fc-pane-dirty .fc-chip-list li:nth-child(2) { transition-delay: 0.38s; }
        .fc-gate-board.is-on .fc-pane-dirty .fc-chip-list li:nth-child(3) { transition-delay: 0.48s; }
        .fc-gate-board.is-on .fc-pane-clean .fc-chip-list li:nth-child(1) { transition-delay: 0.42s; }
        .fc-gate-board.is-on .fc-pane-clean .fc-chip-list li:nth-child(2) { transition-delay: 0.52s; }
        .fc-gate-board.is-on .fc-pane-clean .fc-chip-list li:nth-child(3) { transition-delay: 0.62s; }
        .fc-pane-dirty .fc-chip-list li {
            background: rgba(0, 0, 0, 0.28);
            border-left: 3px solid var(--fc-amber);
        }
        .fc-pane-clean .fc-chip-list li {
            background: rgba(0, 140, 140, 0.08);
            border-left: 3px solid var(--fc-teal);
            color: var(--fc-ink);
        }
        .fc-seam {
            width: 52px;
            background: var(--fc-petrol);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: #9FD9D9;
            position: relative;
            z-index: 2;
            transform: scaleY(0.72);
            opacity: 0.55;
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s, opacity 0.5s ease 0.1s;
        }
        .fc-gate-board.is-on .fc-seam {
            transform: scaleY(1);
            opacity: 1;
        }
        .fc-seam span {
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            font-family: var(--fc-display);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .fc-seam-arrow {
            width: 18px;
            height: 18px;
            border-right: 2px solid #9FD9D9;
            border-bottom: 2px solid #9FD9D9;
            transform: rotate(-45deg);
            animation: fc-pulse 1.8s ease-in-out infinite;
        }

        /* —— Specs —— */
        .fc-specs {
            max-width: 1280px;
            margin: 0 auto;
            padding: 8px 20px 72px;
        }
        .fc-specs-intro {
            margin-bottom: 22px;
        }
        .fc-specs-intro h2 {
            margin: 0;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            color: var(--fc-petrol);
            text-transform: uppercase;
            line-height: 1.05;
            max-width: 22ch;
        }
        .fc-spec-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--fc-white);
            border: 1px solid var(--fc-border);
        }
        .fc-spec-table th,
        .fc-spec-table td {
            padding: 16px 18px;
            text-align: left;
            border-bottom: 1px solid var(--fc-border);
            vertical-align: top;
        }
        .fc-spec-table tbody tr {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .fc-spec-table.is-on tbody tr {
            opacity: 1;
            transform: translateY(0);
        }
        .fc-spec-table.is-on tbody tr:nth-child(1) { transition-delay: 0.05s; }
        .fc-spec-table.is-on tbody tr:nth-child(2) { transition-delay: 0.14s; }
        .fc-spec-table.is-on tbody tr:nth-child(3) { transition-delay: 0.23s; }
        .fc-spec-table.is-on tbody tr:nth-child(4) { transition-delay: 0.32s; }
        .fc-spec-table th {
            width: 38%;
            font-family: var(--fc-display);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--fc-petrol);
            background: rgba(0, 140, 140, 0.06);
        }
        .fc-spec-table tr:last-child th,
        .fc-spec-table tr:last-child td { border-bottom: 0; }
        .fc-spec-val {
            display: block;
            font-size: 1.35rem;
            color: var(--fc-teal);
            margin-bottom: 2px;
        }
        .fc-spec-table.is-on .fc-spec-val {
            animation: fc-spec-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        .fc-spec-table.is-on tbody tr:nth-child(1) .fc-spec-val { animation-delay: 0.12s; }
        .fc-spec-table.is-on tbody tr:nth-child(2) .fc-spec-val { animation-delay: 0.22s; }
        .fc-spec-table.is-on tbody tr:nth-child(3) .fc-spec-val { animation-delay: 0.32s; }
        .fc-spec-table.is-on tbody tr:nth-child(4) .fc-spec-val { animation-delay: 0.42s; }
        .fc-spec-note {
            font-size: 0.92rem;
            color: var(--fc-muted);
        }
        .fc-tech-link {
            margin-top: 18px;
            display: inline-flex;
        }

        /* —— Products —— */
        .fc-products {
            background: linear-gradient(180deg, #D9E6EE 0%, var(--fc-mist) 100%);
            padding: 64px 20px 72px;
            border-top: 1px solid var(--fc-border);
        }
        .fc-products-inner {
            max-width: 1280px;
            margin: 0 auto;
        }
        .fc-products-inner > h2 {
            margin: 0 0 28px;
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            color: var(--fc-petrol);
            text-transform: uppercase;
            line-height: 1.05;
        }
        .fc-product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }
        .fc-product {
            background: var(--fc-white);
            border: 1px solid var(--fc-border);
            display: grid;
            grid-template-rows: auto 1fr;
            min-height: 100%;
            opacity: 0;
            transform: translateY(28px);
            transition:
                opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.25s ease;
        }
        .fc-product-grid.is-on .fc-product {
            opacity: 1;
            transform: translateY(0);
        }
        .fc-product-grid.is-on .fc-product:nth-child(1) { transition-delay: 0.05s; }
        .fc-product-grid.is-on .fc-product:nth-child(2) { transition-delay: 0.16s; }
        .fc-product-grid.is-on .fc-product:nth-child(3) { transition-delay: 0.27s; }
        .fc-product:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 34px rgba(0, 56, 79, 0.12);
        }
        .fc-product-grid.is-on .fc-product:hover {
            transform: translateY(-6px);
        }
        .fc-product-media {
            aspect-ratio: 4 / 5;
            background: #F4F8FA;
            overflow: hidden;
            border-bottom: 1px solid var(--fc-border);
            padding: 0;
        }
        .fc-product-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            margin: 0;
            padding: 0;
            transition: transform 0.45s ease;
        }
        .fc-product:hover .fc-product-media img { transform: scale(1.04); }
        .fc-product-copy {
            padding: 32px 28px 34px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            box-sizing: border-box;
        }
        .fc-product-copy h3 {
            margin: 0;
            font-size: 1.35rem;
            color: var(--fc-petrol);
            text-transform: uppercase;
            line-height: 1.15;
            padding: 0;
        }
        .fc-product-copy p {
            margin: 0;
            color: var(--fc-muted);
            line-height: 1.55;
            font-size: 1rem;
            padding: 0;
        }
        .fc-product-meta {
            list-style: none;
            margin: 4px 0 0;
            padding: 0;
            display: grid;
            gap: 12px;
            font-size: 0.95rem;
            line-height: 1.5;
            color: var(--fc-ink);
        }
        .fc-product-meta li {
            padding: 0 0 0 18px;
            margin: 0;
            position: relative;
        }
        .fc-product-meta li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 6px;
            height: 6px;
            background: var(--fc-teal);
        }

        /* —— Final CTA —— */
        .fc-close {
            max-width: 1280px;
            margin: 0 auto;
            padding: 24px 20px 80px;
        }
        .fc-close-panel {
            background: linear-gradient(125deg, var(--fc-petrol) 0%, #004D6B 55%, #006070 100%);
            color: var(--fc-white);
            padding: clamp(32px, 5vw, 48px);
            display: grid;
            gap: 18px;
        }
        .fc-close-panel h2 {
            margin: 0;
            font-size: clamp(1.7rem, 3vw, 2.35rem);
            text-transform: uppercase;
            line-height: 1.05;
            max-width: 22ch;
        }
        .fc-close-panel > p {
            margin: 0;
            max-width: 46ch;
            color: rgba(255, 255, 255, 0.86);
            line-height: 1.45;
        }
        .fc-close-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 6px;
        }
        .fc-close-actions .fc-btn-ghost {
            border-color: rgba(255, 255, 255, 0.45);
        }

        .fc-back {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }
        .fc-back a {
            color: var(--fc-petrol);
            font-weight: 600;
            text-decoration: none;
        }
        .fc-back a:hover { color: var(--fc-teal); }

        @keyframes fc-rise {
            from { opacity: 0; transform: translateY(22px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fc-hero-drift {
            from { transform: scale(1.1) translate3d(0, 0, 0); }
            to { transform: scale(1.14) translate3d(-0.6%, -0.4%, 0); }
        }
        @keyframes fc-pulse {
            0%, 100% { opacity: 0.45; transform: rotate(-45deg) translateX(0); }
            50% { opacity: 1; transform: rotate(-45deg) translateX(4px); }
        }
        @keyframes fc-spec-pop {
            from { opacity: 0; transform: translateY(8px) scale(0.96); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @media (prefers-reduced-motion: reduce) {
            .fc-brand, .fc-hero h1, .fc-hero-lead, .fc-hero-cta,
            .fc-hero-media, .fc-seam-arrow, .fc-product, .fc-product-media img,
            .fc-spec-table.is-on .fc-spec-val {
                animation: none !important;
            }
            .fc-pane, .fc-pane-clean, .fc-seam, .fc-chip-list li,
            .fc-spec-table tbody tr, .fc-product, .fc-btn, .fc-btn-primary::after {
                transition: none !important;
            }
            .fc-pane, .fc-pane-dirty, .fc-pane-clean, .fc-seam,
            .fc-chip-list li, .fc-spec-table tbody tr, .fc-product {
                opacity: 1 !important;
                transform: none !important;
                clip-path: none !important;
            }
            .fc-hero-media { transform: none !important; }
        }

        @media (max-width: 980px) {
            .fc-product-grid { grid-template-columns: 1fr; max-width: 420px; }
            .fc-hero {
                min-height: min(70vh, 620px);
                align-items: end;
            }
            .fc-hero-media {
                background-position: center 58%;
                background-size: cover;
            }
            .fc-hero-shade {
                background: linear-gradient(180deg, rgba(0, 36, 52, 0.55) 0%, rgba(0, 56, 79, 0.88) 48%, rgba(0, 36, 52, 0.96) 100%);
            }
        }

        @media (max-width: 760px) {
            .fc-gate-board {
                grid-template-columns: 1fr;
            }
            .fc-pane-dirty { transform: translateY(24px); }
            .fc-pane-clean {
                transform: translateY(24px);
                clip-path: inset(100% 0 0 0);
            }
            .fc-gate-board.is-on .fc-pane-dirty,
            .fc-gate-board.is-on .fc-pane-clean {
                transform: translateY(0);
            }
            .fc-gate-board.is-on .fc-pane-clean {
                clip-path: inset(0 0 0 0);
            }
            .fc-seam {
                width: 100%;
                flex-direction: row;
                padding: 12px 16px;
                gap: 14px;
                transform: scaleX(0.86);
            }
            .fc-gate-board.is-on .fc-seam { transform: scaleX(1); }
            .fc-seam span {
                writing-mode: horizontal-tb;
                transform: none;
                letter-spacing: 0.14em;
            }
            .fc-seam-arrow {
                transform: rotate(45deg);
                animation: fc-pulse-down 1.8s ease-in-out infinite;
            }
            @keyframes fc-pulse-down {
                0%, 100% { opacity: 0.45; transform: rotate(45deg) translateY(0); }
                50% { opacity: 1; transform: rotate(45deg) translateY(4px); }
            }
            .fc-spec-table, .fc-spec-table tbody, .fc-spec-table tr, .fc-spec-table th, .fc-spec-table td {
                display: block;
                width: 100%;
            }
            .fc-spec-table th {
                border-bottom: 0;
                padding-bottom: 4px;
            }
            .fc-spec-table td {
                padding-top: 0;
                margin-bottom: 4px;
            }
        }
    
/* ECOFILTRO top-bar mobile: telefones/email na horizontal */
@media (max-width: 850px) {
  .top-bar {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 14px !important;
    font-size: 12px;
    padding: 8px 12px;
  }
  .top-bar span { white-space: nowrap; }
}
        .fc-product-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
        .fc-product-media-scene img {
            object-fit: cover;
            object-position: center 40%;
        }
        .fc-story-product {
            max-width: 960px;
            margin: 0 auto 8px;
            grid-template-columns: 1fr !important;
        }
        .fc-story-product .fc-product {
            display: grid;
            grid-template-columns: minmax(240px, 360px) 1fr;
            grid-template-rows: auto;
            align-items: stretch;
        }
        .fc-story-product .fc-product-media {
            aspect-ratio: 1 / 1;
            border-bottom: 0;
            border-right: 1px solid var(--fc-border);
            min-height: 100%;
        }
        .fc-story-product .fc-product-copy {
            justify-content: center;
        }
        @media (max-width: 760px) {
            .fc-story-product .fc-product {
                grid-template-columns: 1fr;
            }
            .fc-story-product .fc-product-media {
                aspect-ratio: 4 / 3;
                border-right: 0;
                border-bottom: 1px solid var(--fc-border);
            }
        }
        .fc-specs + .fc-gate { padding-top: 24px; }
        .fc-product-media-cutout {
            background: linear-gradient(180deg, #F4F8FA 0%, #E8F0F4 100%);
        }
        .fc-product-media-cutout img {
            object-fit: contain;
            padding: 18px 14px;
            box-sizing: border-box;
            transform: none !important;
        }
        .fc-product:hover .fc-product-media-cutout img {
            transform: none !important;
        }
        .fc-product-media-rubbi {
            background: linear-gradient(180deg, #F4F8FA 0%, #E8F0F4 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 28px 20px 22px;
        }
        .fc-product-media-rubbi img {
            width: auto !important;
            height: auto !important;
            max-width: 100%;
            object-fit: contain;
            padding: 0;
            margin: 0;
            transform: none !important;
        }
        .fc-product:hover .fc-product-media-rubbi img {
            transform: none !important;
        }
        /* Mesma escala: 5" ≈ metade da altura do 10" */
        .fc-product-media-rubbi.scale-5 img {
            max-height: 48%;
            max-width: 42%;
        }
        .fc-product-media-rubbi.scale-10 img {
            max-height: 94%;
            max-width: 78%;
        }
        .fc-hero-product {
            position: absolute;
            z-index: 2;
            right: clamp(12px, 5vw, 64px);
            top: 50%;
            transform: translateY(-52%) rotate(-4deg);
            height: min(72%, 560px);
            width: auto;
            max-width: min(36vw, 400px);
            object-fit: contain;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            filter: drop-shadow(0 28px 40px rgba(0, 20, 32, 0.55));
            pointer-events: none;
            animation: fc-rise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
        }
        .fc-hero.has-product .fc-hero-shade {
            background: linear-gradient(105deg, rgba(0, 36, 52, 0.92) 0%, rgba(0, 56, 79, 0.78) 38%, rgba(0, 77, 107, 0.28) 62%, rgba(0, 77, 107, 0.08) 100%);
        }
        .fc-hero.has-product .fc-hero-inner {
            max-width: 56%;
        }
        @media (max-width: 980px) {
            .fc-product-grid.cols-2 { grid-template-columns: 1fr; max-width: 420px; }
            .fc-hero-product {
                right: 10px;
                top: auto;
                bottom: 14%;
                transform: rotate(-3deg);
                height: min(46%, 300px);
                max-width: 44vw;
                opacity: 0.98;
            }
            .fc-hero.has-product .fc-hero-inner {
                max-width: 100%;
                padding-bottom: clamp(140px, 28vh, 220px);
            }
        }
