/* ===== VET LUMI DESIGN SYSTEM ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --bg: #070b10;
    --card: rgba(18, 30, 38, .75);
    --cyan: #00F0FF;
    --orange: #FF6B00;
    --white: #f0f0f0;
    --grey: #8a9aad;
    --font: 'Space Grotesk', sans-serif
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh
}

html {
    scroll-behavior: smooth
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    height: auto
}

/* CIRCUITS */
.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh
}

.circuit-left,
.circuit-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 0;
    pointer-events: none
}

.circuit-left {
    left: 0
}

.circuit-right {
    right: 0
}

.circuit-line {
    stroke-dasharray: 8 12;
    animation: dash 4s linear infinite
}

.circuit-line-orange {
    stroke-dasharray: 6 14;
    animation: dash 5s linear infinite reverse
}

@keyframes dash {
    to {
        stroke-dashoffset: -100
    }
}

.circuit-dot {
    animation: pulse-dot 2s ease-in-out infinite alternate
}

@keyframes pulse-dot {
    0% {
        opacity: .3;
        r: 2
    }

    100% {
        opacity: 1;
        r: 4
    }
}

/* AMBIENT */
.ambient-glow-cyan {
    position: fixed;
    top: 20%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 240, 255, .08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px)
}

.ambient-glow-orange {
    position: fixed;
    top: 60%;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 107, 0, .06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px)
}

/* CONTENT */
.content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 16px 24px;
    background: rgba(10, 18, 24, .85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 240, 255, .1);
    position: sticky;
    top: 0;
    z-index: 100
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700
}

.navbar .logo .icon {
    color: var(--cyan);
    font-size: 28px
}

.navbar .logo span {
    color: var(--cyan)
}

.nav-links {
    display: none
}

.nav-links a {
    color: var(--grey);
    font-size: 13px;
    font-weight: 500;
    transition: color .3s
}

.nav-links a:hover {
    color: var(--cyan)
}

.nav-links a.active {
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px
}

@media(min-width:768px) {
    .nav-links {
        display: flex;
        gap: 28px;
        align-items: center
    }
}

/* BUTTONS */
.btn-cta {
    background: var(--orange);
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    font-family: var(--font);
    box-shadow: 0 0 20px rgba(255, 107, 0, .4);
    transition: transform .2s, box-shadow .3s
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 0, .6)
}

.btn-saiba {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--orange);
    background: transparent;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 0 10px rgba(255, 107, 0, .15)
}

.btn-saiba:hover {
    background: var(--orange);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 107, 0, .5)
}

.btn-saiba .arrow {
    font-size: 16px;
    transition: transform .3s
}

.btn-saiba:hover .arrow {
    transform: translateX(4px)
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--cyan);
    background: transparent;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 0 10px rgba(0, 240, 255, .15)
}

.btn-back:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 240, 255, .5)
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 0 40px;
    position: relative
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px
}

.hero-logo .icon {
    color: var(--cyan);
    font-size: 36px;
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, .8))
}

.hero-logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, .6)
}

.hero-headline {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px
}

.hero-headline .orange {
    color: var(--orange);
    text-shadow: 0 0 12px rgba(255, 107, 0, .7), 0 0 25px rgba(255, 107, 0, .4)
}

@media(min-width:768px) {
    .hero-headline {
        font-size: 42px
    }

    .hero-logo h1 {
        font-size: 40px
    }
}

.hero-image-container {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.hero-image-container>img {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 2
}

.hero-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, .15) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(30px)
}

.neon-animals {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 200px;
    height: 200px
}

@media(min-width:768px) {
    .neon-animals {
        left: -80px;
        width: 260px;
        height: 260px
    }
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 50px 0 30px;
    line-height: 1.4
}

@media(min-width:768px) {
    .section-title {
        font-size: 28px
    }
}

/* PRODUCT CARDS */
.products-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px
}

/* ===== SCROLL REVEAL CARDS ===== */
.product-card {
    --card-reveal-delay: 0s;
}

/* Estado inicial: invisível, deslocado para baixo */
.product-card.card-scroll-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
}

/* Quando entra na tela: dispara o reveal */
.product-card.card-scroll-reveal {
    animation: card-scroll-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) var(--card-reveal-delay) forwards;
}

@keyframes card-scroll-in {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: brightness(2) saturate(0);
    }

    40% {
        opacity: 0.7;
        filter: brightness(1.4) saturate(0.3);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: brightness(1) saturate(1);
    }
}

/* Scanline dentro do card ao revelar */
.product-card .card-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    top: -4px;
    z-index: 20;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 240, 255, 0.5) 15%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(0, 240, 255, 0.5) 85%,
            transparent 100%);
    box-shadow:
        0 0 10px rgba(0, 240, 255, 0.9),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 60px rgba(0, 240, 255, 0.25);
    opacity: 0;
    border-radius: 0;
}

.product-card.card-scanning .card-scanline {
    animation: card-scan 1.4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

@keyframes card-scan {
    0% {
        top: -4px;
        opacity: 1;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 32px rgba(0, 0, 0, .6), 0 0 20px -5px rgba(0, 240, 255, .1);
    transition: box-shadow .4s, border-color .4s, transform .3s;
    overflow: visible;
    position: relative;
    color: var(--white)
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 240, 255, .05) 0%, transparent 50%, rgba(255, 107, 0, .03) 100%);
    pointer-events: none
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 12px 40px rgba(0, 0, 0, .7), 0 0 35px 0 rgba(0, 240, 255, .25);
    border-color: rgba(0, 240, 255, .3)
}

.card-text {
    flex: 1;
    position: relative;
    z-index: 2
}

.card-text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px
}

.card-text .subtitle {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    font-style: italic
}

.card-text .desc {
    color: var(--grey);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px
}

.card-image {
    position: relative;
    align-self: flex-end;
    margin-right: -40px;
    margin-bottom: -10px;
    margin-top: -60px;
    width: 252px;
    height: 224px;
    z-index: 2;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
}

.card-image--small {
    width: 214px;
    height: 190px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

/* Card text full width on mobile */
.card-text {
    width: 100%;
    position: relative;
    z-index: 2;
}

@media(min-width:768px) {
    .product-card {
        flex-direction: row;
        align-items: center;
        overflow: hidden;
        position: relative;
    }

    .card-text {
        width: auto;
        flex: 1;
    }

    .card-image {
        position: relative;
        align-self: auto;
        margin: 0;
        right: auto;
        top: auto;
        transform: none;
        flex-shrink: 0;
        width: 308px;
        height: 231px;
        z-index: 2;
        opacity: 1;
        pointer-events: auto;
    }

    .card-text h3 {
        font-size: 42px;
    }
}

/* QUEM SOMOS */
.quem-somos {
    text-align: center;
    padding: 50px 0;
    max-width: 600px;
    margin: 0 auto
}

.quem-somos h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px
}

.quem-somos p {
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px
}

.quem-somos .values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: lowercase
}

.quem-somos .values span {
    color: var(--orange);
    text-shadow: 0 0 8px rgba(255, 107, 0, .5)
}

.quem-somos .values .dot {
    color: var(--grey)
}

/* FOOTER */
.footer {
    background: transparent;
    color: var(--white);
    padding: 50px 24px 20px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media(min-width:768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.footer-left h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-left p {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6;
}

.footer-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-service-item .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 107, 0, .1);
    border: 1px solid rgba(255, 107, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(255, 107, 0, .05);
}

.footer-service-item .icon-circle .material-symbols-outlined {
    color: var(--orange);
    font-size: 22px;
    text-shadow: 0 0 5px rgba(255, 107, 0, .3);
}

.footer-service-item span:last-child {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.footer-bottom {
    max-width: 900px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: center;
    font-size: 12px;
    color: var(--grey);
}

/* PRODUCT PAGE */
.product-hero {
    text-align: center;
    padding: 50px 0 30px
}

.product-hero .eyebrow {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 107, 0, .15);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px
}

.product-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2
}

@media(min-width:768px) {
    .product-hero h1 {
        font-size: 44px
    }
}

.product-hero p {
    color: var(--grey);
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 24px
}

.product-main-image {
    max-width: 420px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.product-main-image img {
    width: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 30px rgba(0, 240, 255, .1)
}

.product-main-image .product-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, .12) 0%, transparent 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(40px)
}

/* ===== PRODUCT PAGE HERO SCAN ===== */
.prod-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    top: -4px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 240, 255, 0.5) 15%,
            rgba(255, 255, 255, 0.98) 50%,
            rgba(0, 240, 255, 0.5) 85%,
            transparent 100%);
    box-shadow:
        0 0 12px rgba(0, 240, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.5),
        0 0 80px rgba(0, 240, 255, 0.3);
    opacity: 0;
}

.product-main-image.prod-scanning .prod-scanline {
    animation: hero-scan 2s cubic-bezier(0.4, 0, 0.6, 1) 0.1s forwards;
}

.prod-img-hidden {
    opacity: 0 !important;
}

.prod-img-reveal {
    animation: hero-img-appear 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.advantages {
    padding: 40px 0
}

.advantages h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

@media(min-width:600px) {
    .advantages-grid {
        grid-template-columns: 1fr 1fr 1fr
    }
}

.advantage-card {
    padding: 24px;
    border-radius: 16px;
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 4px 20px rgba(0, 0, 0, .4);
    transition: border-color .3s, box-shadow .3s
}

.advantage-card:hover {
    border-color: rgba(0, 240, 255, .3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 4px 20px rgba(0, 0, 0, .4), 0 0 20px rgba(0, 240, 255, .15)
}

.advantage-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 8px
}

.advantage-card p {
    color: var(--grey);
    font-size: 13px;
    line-height: 1.5
}

.when-section {
    padding: 40px 0
}

.when-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

.when-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto
}

.when-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: var(--grey);
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.when-list li::before {
    content: '✦';
    color: var(--cyan);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px
}

.gallery-section {
    padding: 40px 0
}

.gallery-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: border-color .3s, transform .3s
}

.gallery-grid img:hover {
    border-color: rgba(0, 240, 255, .3);
    transform: scale(1.05)
}

.comparison-section {
    padding: 40px 0;
    width: 96vw;
    max-width: 1140px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.comparison-shell {
    position: relative;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(12, 24, 31, .92) 0%, rgba(8, 14, 20, .92) 100%);
    border: 1px solid rgba(0, 240, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 50px rgba(0, 0, 0, .45), 0 0 30px rgba(0, 240, 255, .08);
    overflow: hidden
}

.comparison-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, .06) 0%, transparent 42%, rgba(255, 107, 0, .06) 100%);
    pointer-events: none
}

.comparison-header {
    position: relative;
    z-index: 1;
    padding: 28px 24px 20px
}

.comparison-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 240, 255, .09);
    border: 1px solid rgba(0, 240, 255, .15);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.comparison-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 16px 0 10px
}

.comparison-header p {
    max-width: 640px;
    color: var(--grey);
    font-size: 14px;
    line-height: 1.6
}

.comparison-subhead {
    position: relative;
    z-index: 1;
    padding: 0 24px 14px
}

.comparison-subhead h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white)
}

.comparison-subhead p {
    margin: 0;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.55
}

.comparison-table-wrap {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    padding: 0 16px 18px
}

.comparison-table {
    width: max-content;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0
}

.comparison-table th,
.comparison-table td {
    min-width: 190px;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
    vertical-align: top
}

.comparison-table thead th {
    background: rgba(8, 14, 20, .92);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em
}

.comparison-table thead th:first-child {
    min-width: 160px;
    position: sticky;
    left: 0;
    z-index: 3
}

.comparison-table tbody th {
    min-width: 160px;
    position: sticky;
    left: 0;
    z-index: 2;
    background: rgba(7, 11, 16, .96);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 1px 0 0 rgba(255, 255, 255, .06)
}

.comparison-group-row th {
    position: static !important;
    left: auto !important;
    min-width: 100% !important;
    padding: 14px 16px !important;
    background: rgba(255, 107, 0, .08) !important;
    color: var(--orange) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: none !important;
    border-bottom: 1px solid rgba(255, 107, 0, .14)
}

.comparison-table td {
    color: var(--grey);
    font-size: 14px;
    line-height: 1.5;
    background: rgba(255, 255, 255, .015)
}

.comparison-table--transducers th,
.comparison-table--transducers td {
    min-width: 110px;
    padding: 13px 11px;
    font-size: 12px;
    line-height: 1.45
}

.comparison-table--transducers thead th:first-child,
.comparison-table--transducers tbody th {
    min-width: 132px
}

.comparison-table--transducers thead th {
    line-height: 1.35
}

.comparison-table--transducers td:nth-child(2),
.comparison-table--transducers th:nth-child(2) {
    min-width: 150px
}

.comparison-table--transducers td:nth-child(3),
.comparison-table--transducers td:nth-child(4),
.comparison-table--transducers td:nth-child(9),
.comparison-table--transducers td:nth-child(10),
.comparison-table--transducers td:nth-child(11),
.comparison-table--transducers td:nth-child(12),
.comparison-table--transducers td:nth-child(13),
.comparison-table--transducers td:nth-child(14),
.comparison-table--transducers td:nth-child(15),
.comparison-table--transducers th:nth-child(3),
.comparison-table--transducers th:nth-child(4),
.comparison-table--transducers th:nth-child(9),
.comparison-table--transducers th:nth-child(10),
.comparison-table--transducers th:nth-child(11),
.comparison-table--transducers th:nth-child(12),
.comparison-table--transducers th:nth-child(13),
.comparison-table--transducers th:nth-child(14),
.comparison-table--transducers th:nth-child(15) {
    min-width: 104px
}

.comparison-table--transducers td:nth-child(5),
.comparison-table--transducers td:nth-child(6),
.comparison-table--transducers td:nth-child(7),
.comparison-table--transducers td:nth-child(8),
.comparison-table--transducers th:nth-child(5),
.comparison-table--transducers th:nth-child(6),
.comparison-table--transducers th:nth-child(7),
.comparison-table--transducers th:nth-child(8) {
    min-width: 176px
}

.comparison-table--transducers td:nth-child(n+16),
.comparison-table--transducers th:nth-child(n+16) {
    min-width: 78px;
    text-align: center
}

.comparison-table--transducers td:nth-child(n+16) .spec-badge {
    margin: 0 auto
}

.comparison-table--compat-pivot th,
.comparison-table--compat-pivot td {
    min-width: 84px;
    padding: 13px 10px;
    font-size: 12px;
    text-align: center
}

.comparison-table--compat-pivot thead th {
    line-height: 1.35
}

.comparison-table--compat-pivot thead th:first-child,
.comparison-table--compat-pivot tbody th {
    min-width: 118px;
    text-align: left
}

.comparison-table--compat-pivot thead tr:first-child th:not(:first-child) {
    color: var(--orange);
    font-size: 11px;
    letter-spacing: .08em
}

.comparison-table--compat-pivot td .spec-badge {
    margin: 0 auto
}

.comparison-spec-block {
    position: relative;
    z-index: 1;
    padding: 0 0 10px
}

.comparison-spec-block h4 {
    margin: 0;
    padding: 0 24px 12px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.comparison-table--transducer-specs th,
.comparison-table--transducer-specs td {
    min-width: 140px;
    padding: 14px 12px;
    font-size: 12px;
    line-height: 1.45
}

.comparison-table--transducer-specs thead th {
    text-transform: uppercase;
    line-height: 1.35
}

.comparison-table--transducer-specs thead th:first-child,
.comparison-table--transducer-specs tbody th {
    min-width: 190px
}

.comparison-group-row:hover th {
    background: rgba(255, 107, 0, .08) !important
}

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, .03)
}

.comparison-table tbody tr:hover th {
    background: rgba(12, 19, 24, .98)
}

.comparison-product-name,
.comparison-product-tag {
    display: block
}

.comparison-product-name {
    font-size: 14px;
    color: var(--white)
}

.comparison-product-tag {
    margin-top: 6px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0
}

.comparison-cta-row td {
    background: rgba(255, 107, 0, .03)
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 0, .5);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    transition: all .3s
}

.comparison-link:hover {
    background: var(--orange);
    color: #000;
    box-shadow: 0 0 18px rgba(255, 107, 0, .35)
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em
}

.spec-badge--yes {
    background: rgba(0, 240, 255, .12);
    border: 1px solid rgba(0, 240, 255, .3);
    color: var(--cyan)
}

.spec-badge--no {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #d6dde6
}

.spec-badge--nd {
    background: rgba(255, 107, 0, .08);
    border: 1px solid rgba(255, 107, 0, .22);
    color: #ffc58f
}

.comparison-note {
    position: relative;
    z-index: 1;
    padding: 0 24px 24px;
    color: var(--grey);
    font-size: 13px;
    line-height: 1.6
}

.spec-help-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: help;
    border-bottom: 1px dashed rgba(0, 240, 255, .28);
    transition: border-color .2s, color .2s
}

.spec-help-trigger:hover,
.spec-help-trigger:focus-visible {
    color: var(--cyan);
    border-bottom-color: rgba(0, 240, 255, .6);
    outline: none
}

.spec-help-trigger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0, 240, 255, .28);
    background: rgba(0, 240, 255, .08);
    color: var(--cyan);
    font-size: 11px;
    font-weight: 700;
    line-height: 1
}

.comparison-tooltip {
    position: fixed;
    z-index: 9999;
    max-width: min(320px, calc(100vw - 24px));
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 240, 255, .18);
    background: rgba(6, 12, 18, .96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45), 0 0 24px rgba(0, 240, 255, .08);
    color: #dce6f2;
    font-size: 12px;
    line-height: 1.55;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease
}

.comparison-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media(min-width:768px) {
    .comparison-header {
        padding: 32px 28px 22px
    }

    .comparison-subhead {
        padding: 0 28px 16px
    }

    .comparison-spec-block h4 {
        padding: 0 28px 14px
    }

    .comparison-header h2 {
        font-size: 30px
    }

    .comparison-table-wrap {
        padding: 0 20px 22px
    }

    .comparison-note {
        padding: 0 28px 28px
    }
}

.other-products {
    padding: 40px 0 20px
}

.other-products h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

/* ===== HERO XRAY SCAN (apenas na imagem do produto principal) ===== */

/* Scanline dentro do hero-image-container */
#hero-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    top: -4px;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 240, 255, 0.5) 15%,
            rgba(255, 255, 255, 0.98) 50%,
            rgba(0, 240, 255, 0.5) 85%,
            transparent 100%);
    box-shadow:
        0 0 12px rgba(0, 240, 255, 0.9),
        0 0 40px rgba(255, 255, 255, 0.5),
        0 0 80px rgba(0, 240, 255, 0.3);
    opacity: 0;
}

/* Flash branco que explode sobre a imagem */
#hero-flash {
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0);
    opacity: 0;
}

/* Quando o container tem a classe scanning, dispara as animacoes */
.hero-image-container.hero-scanning #hero-scanline {
    animation: hero-scan 2s cubic-bezier(0.4, 0, 0.6, 1) 0.1s forwards;
}

.hero-image-container.hero-scanning #hero-flash {
    animation: hero-flash-pop 0.6s ease-out 1.9s forwards;
}

@keyframes hero-scan {
    0% {
        top: -4px;
        opacity: 1;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes hero-flash-pop {
    0% {
        background: rgba(255, 255, 255, 0);
        opacity: 1;
    }

    25% {
        background: rgba(255, 255, 255, 0.88);
    }

    100% {
        background: rgba(255, 255, 255, 0);
        opacity: 0;
    }
}

/* Imagem começa invisível */
.hero-img-hidden {
    opacity: 0 !important;
}

/* Imagem aparece com fade suave após o flash */
.hero-img-reveal {
    animation: hero-img-appear 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-img-appear {
    0% {
        opacity: 0;
        filter: brightness(2.5) saturate(0);
        transform: scale(1.03);
    }

    60% {
        filter: brightness(1.2) saturate(0.5);
    }

    100% {
        opacity: 1;
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 26px;
    }
}
