/* =========================================== */
/* HOME.CSS — HR PRÉ MOLDADOS                  */
/* Versão 3.1 — Refatorado com variáveis CSS   */
/* Todas as cores herdadas do main.css         */
/* =========================================== */
/* ÍNDICE (ordem do HTML):                     */
/*  1. HERO                                    */
/*  2. SEÇÃO PRODUTOS                          */
/*     2.1 Guia de acabamento                  */
/*     2.2 Filtros                             */
/*     2.3 Grid de produtos                    */
/*     2.4 Paginação                           */
/*     2.5 Modal de produto                    */
/*  3. DEPOIMENTOS                             */
/*     3.1 Cards                               */
/*     3.2 Carrossel de logos                  */
/*  4. LOCALIZAÇÃO                             */
/* =========================================== */

/* =========================================== */
/* HERO — SPLIT: ESCURO + FOTO                 */
/* =========================================== */

.hr-hero {
    position: relative;
    width: 100%;
    height: 700px;
    background: var(--header-bg);
    overflow: hidden;
}

/* Foto da obra — lado direito (forma geométrica com ponta) */
.hr-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    clip-path: polygon(180px 0%, 100% 0%, 100% 100%, 180px 100%, 60px 50%);
}

.hr-hero__image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carrossel de imagens */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Overlay escuro — apenas mobile (desktop usa clip-path na imagem) */
.hr-hero__dark {
    display: none;
}

/* Faixas diagonais laranjas — decoração na borda da foto */
.hr-hero__chevron {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

/* Faixa laranja sólida — traça a borda pontuda da foto */
.hr-hero__chevron::before {
    content: none;
}

.hr-hero__chevron::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    clip-path: polygon(
        calc(38% + 162px) 0%,
        calc(38% + 180px) 0%,
        calc(38% + 60px) 50%,
        calc(38% + 180px) 100%,
        calc(38% + 162px) 100%,
        calc(38% + 42px) 50%
    );
}

/* Conteúdo: texto + CTAs */
.hr-hero__content {
    position: absolute;
    left: max(40px, calc((100vw - 1260px) / 2 + 24px));
    top: 50%;
    transform: translateY(-44%);
    max-width: 490px;
    z-index: 5;
}


/* Título */
.hr-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 6px;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.hr-hero__title--orange {
    color: var(--primary);
    margin-bottom: 28px;
}

/* Subtítulo */
.hr-hero__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 430px;
}

/* Botões */
.hr-hero__cta-group {
    gap: 10px;
}

.hr-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1.6rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 2px solid transparent;
    line-height: 1;
}

.hr-hero__btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.hr-hero__btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--primary-rgb, 232, 129, 58), 0.45);
}

.hr-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(4px);
}

.hr-hero__btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb, 232, 129, 58), 0.08);
    transform: translateY(-2px);
}

/* Desktop: mostrar texto estático, ocultar carrossel e botões mobile */
.hr-hero__text-desktop  { display: block; }
.hr-hero__text-carousel { display: none; }
.hr-hero__cta-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hr-hero__cta-desktop > .hr-hero__btn:first-child {
    grid-column: 1 / -1;
    justify-content: center;
}

.hr-hero__cta-desktop > .hr-hero__btn {
    justify-content: center;
}
.hr-hero__cta-mobile    { display: none; }
.hr-hero__stats-inline  { display: none; }

/* Carrossel de frases (mobile) — estilos base */
.hr-hero__text-slides {
    position: relative;
    min-height: 90px;
}

.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.hero-text-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Rodapé do carrossel: dots à esquerda + contador à direita */
.hero-text-carousel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.hero-text-dots {
    display: flex;
    gap: 6px;
}

.hero-text-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.35s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.hero-text-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: var(--radius-md);
}

.hero-text-counter {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1.5px;
}

/* Separador diagonal (oculto no desktop) */
.hr-hero__divider {
    display: none;
}


/* =========================================== */
/* ESTATÍSTICAS — FAIXA ABAIXO DO HERO         */
/* =========================================== */

.hr-stats {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}

.hr-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 140px;
    padding: 10px 0;
    justify-content: center;
}

.hr-stats__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hr-stats__icon {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.hr-stats__number {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.hr-stats__label {
    font-size: 0.68rem;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    margin-top: 5px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 500;
}

/* Tema escuro — hero e área de botões mobile */
body.dark-theme .hr-hero,
body.dark-theme .hr-hero__cta-mobile {
    background: var(--header-bg);
}

/* Tema escuro — ajustes da faixa de stats */
body.dark-theme .hr-stats {
    background: var(--surface);
    border-color: var(--border-medium);
}

body.dark-theme .hr-stats__number {
    color: var(--text-primary);
}

body.dark-theme .hr-stats__label {
    color: var(--text-tertiary);
}


/* =========================================== */
/* HERO RESPONSIVO                             */
/* =========================================== */

/* Mobile + Tablet (≤1024px) */
@media (max-width: 1024px) {
    /* Hero vira flex coluna: texto → imagem → botões */
    .hr-hero {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    /* Separador diagonal laranja entre texto e imagem */
    .hr-hero__divider {
        display: block;
        order: 2;
        width: 100%;
        height: 44px;
        background: var(--primary);
        clip-path: polygon(0 44px, 100% 0, 100% 44px);
        flex-shrink: 0;
    }

    /* Imagem vira bloco separado abaixo do separador */
    .hr-hero__image {
        position: relative;
        width: 100%;
        height: 240px;
        top: auto;
        right: auto;
        clip-path: none;
        order: 3;
        flex-shrink: 0;
    }

    /* Overlay e chevron não são mais necessários */
    .hr-hero__dark    { display: none; }
    .hr-hero__chevron { display: none; }

    /* Área de texto no topo (escuro) */
    .hr-hero__content {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        padding: 84px 24px 14px;
        max-width: 100%;
        text-align: center;
        order: 1;
        flex-shrink: 0;
    }

    .hr-hero__title {
        font-size: 1.8rem;
    }

    .hr-hero__description {
        font-size: 14px;
        margin-left: auto;
        margin-right: auto;
        max-width: 320px;
        margin-bottom: 0;
    }

    /* Ocultar texto estático e botões desktop */
    .hr-hero__text-desktop { display: none; }
    .hr-hero__cta-desktop  { display: none !important; }

    /* Sem descrição no carrossel — reduz margem do título laranja */
    .hr-hero__text-carousel .hr-hero__title--orange {
        margin-bottom: 0;
    }

    /* Mostrar carrossel de frases */
    .hr-hero__text-carousel { display: block; }

    /* Botões mobile abaixo da imagem */
    .hr-hero__cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        order: 4;
        padding: 20px 24px 0;
        background: #3D444E;
        flex-shrink: 0;
    }

    .hr-hero__cta-mobile > .hr-hero__btn {
        width: 100%;
        justify-content: center;
    }

    .hr-hero__cta-mobile-row {
        display: flex;
        gap: 10px;
    }

    .hr-hero__cta-mobile-row .hr-hero__btn {
        flex: 1;
        justify-content: center;
        font-size: 11px;
        padding: 12px 8px;
        gap: 6px;
    }

    /* Stats em linha única — fundo branco */
    .hr-hero__stats-inline {
        display: flex;
        background: #fff;
        border-bottom: 1px solid var(--border-light);
        padding: 14px 8px;
    }

    .hr-hero__stat-inline {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        padding: 0 4px;
    }

    .hr-hero__stat-inline + .hr-hero__stat-inline {
        border-left: 1px solid var(--border-light);
    }

    .hr-hero__stat-inline-number {
        font-family: var(--font-display);
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--primary);
        line-height: 1;
    }

    .hr-hero__stat-inline-label {
        font-size: 0.52rem;
        color: var(--text-tertiary);
        letter-spacing: 0.3px;
        text-transform: uppercase;
        margin-top: 3px;
        line-height: 1.3;
    }

    .hr-stats {
        display: none;
    }

    .hr-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 0;
    }

    .hr-stats__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        background: #fff;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        padding: 20px 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .hr-stats__icon {
        font-size: 26px;
        margin-bottom: 2px;
    }

    .hr-stats__number {
        font-size: 1.55rem;
    }

    .hr-stats__label {
        font-size: 0.63rem;
        text-align: center;
    }
}

/* Tablet no layout mobile (600px – 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
    .hr-hero__image {
        height: 420px;
    }

    .hr-hero__divider {
        height: 60px;
        clip-path: polygon(0 60px, 100% 0, 100% 60px);
    }

    .hr-hero__content {
        padding: 100px 64px 20px;
    }

    .hr-hero__title {
        font-size: 2.6rem;
    }



    .hr-hero__cta-mobile {
        padding-left: 64px;
        padding-right: 64px;
        align-items: center;
        gap: 14px;
    }

    .hr-hero__cta-mobile > .hr-hero__btn {
        max-width: 520px;
        width: 100%;
        font-size: 1rem;
        padding: 16px 24px;
    }

    .hr-hero__cta-mobile-row {
        max-width: 520px;
        width: 100%;
        gap: 14px;
    }

    .hr-hero__cta-mobile-row .hr-hero__btn {
        font-size: 0.85rem;
        padding: 14px 16px;
    }

    .hr-hero__stats-inline {
        padding: 18px 64px;
    }

    .hr-hero__stat-inline-number {
        font-size: 1.35rem;
    }

    .hr-hero__stat-inline-label {
        font-size: 0.65rem;
    }
}

/* Mobile pequeno (≤480px) */
@media (max-width: 480px) {
    .hr-hero__title {
        font-size: 1.75rem;
    }
}

/* =========================================== */
/* 2. CARDS DE CATEGORIA                       */
/* =========================================== */

#categories {
    padding: 80px 0;
    background: var(--bg-light);
}

/* --- Linhas Signature / Performance --- */
.product-lines {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.product-line__divider { display: none; }

.product-line {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 40px 36px;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 140px;
}


.product-line--signature {
    background: var(--primary);
}

.product-line--performance {
    background: #3D444E;
}

.product-line__icon {
    display: none;
}

.product-line__name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.product-line__desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin: 0;
    max-width: 380px;
    position: relative;
    z-index: 1;
}

/* --- Cards --- */
.category-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

/* Card inteiro é um único link — maior área de toque no mobile */
.category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.13), 0 8px 20px rgba(0,0,0,0.08);
}

.category-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg-light);
    overflow: hidden;
}

.category-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 80%;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card__img img {
    transform: scale(1.04);
}

.category-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 24px 24px;
    gap: 8px;
    border-top: 1px solid var(--border-light);
}

.category-card__badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 5px 11px;
    margin-bottom: 2px;
}

.category-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0;
}

.category-card__desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.category-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.category-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    margin-top: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease, gap 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover .category-card__cta {
    background: var(--primary-dark);
    gap: 12px;
    box-shadow: 0 4px 14px rgba(255, 81, 0, 0.35);
}

.line-chip {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: var(--radius-md);
}

.line-chip--signature {
    background: rgba(255, 81, 0, 0.08);
    color: var(--primary);
    border: 1px solid rgba(255, 81, 0, 0.3);
}

.line-chip--performance {
    background: rgba(30, 30, 30, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(30, 30, 30, 0.18);
}

.modal-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0 0 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 81, 0, 0.18);
}

/* --- Responsivo --- */

/* Ajustes gerais até 1024px (padding de seção, product-lines mantém 2 colunas) */
@media (max-width: 1024px) {
    #categories {
        padding: 60px 0;
    }

    .product-lines {
        gap: 12px;
    }

    .product-line {
        padding: 24px 28px;
        min-height: 120px;
    }
}

/* Tablet/mobile: grade em coluna única — card mantém o mesmo layout
   vertical do desktop em qualquer largura, só muda o espaçamento */
@media (max-width: 900px) {
    .category-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Painel mais baixo no mobile — a foto não precisa da mesma
       altura relativa que tem ao lado de outros 2 cards no desktop.
       3:2 é o limite antes do corte começar a cortar o bloco em si. */
    .category-card__img {
        aspect-ratio: 3 / 2;
    }
}

/* Mobile (≤600px): product-lines vira 1 coluna */
@media (max-width: 600px) {
    .product-lines {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-line {
        min-height: 80px;
    }
}

/* Mobile pequeno: ajuste fino de espaçamento e tipografia */
@media (max-width: 480px) {
    .product-line {
        padding: 20px 22px;
    }

    .product-line__name {
        font-size: 1.6rem;
    }

    .category-cards {
        gap: 14px;
    }

    .category-card__body {
        padding: 16px 18px 18px;
    }

    .category-card__title {
        font-size: 1.2rem;
    }

    .category-card__desc {
        font-size: 0.85rem;
    }

    .category-card__cta {
        padding: 11px 16px;
        font-size: 0.88rem;
    }
}

/* =========================================== */
/* 3. SEÇÃO PRODUTOS (páginas internas)        */
/* =========================================== */

/* --- 3.1 Guia de acabamento --- */
.finish-guide {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 40px;
    max-width: 800px;
    flex-wrap: wrap;
}

.finish-guide-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease;
    background: var(--surface);
    border: 1px solid var(--border-light);
}

.finish-guide-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.guide-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.guide-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.guide-content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-secondary);
}

.premium-guide {
    border-left: 4px solid var(--signature);
}

.premium-guide .guide-content h4 {
    color: var(--signature-dark);
}

.plus-guide {
    border-left: 4px solid var(--performance);
}

.plus-guide .guide-content h4 {
    color: var(--performance-dark);
}

/* --- 2.2 Filtros --- */
.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--surface);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.finish-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: -20px 0 30px;
}

.finish-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.finish-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.finish-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.finish-filter-btn.premium-filter.active {
    background: var(--signature);
    border-color: var(--signature-dark);
    color: #fff;
}

.finish-filter-btn.plus-filter.active {
    background: var(--performance);
    border-color: var(--performance-dark);
    color: #fff;
}

body.dark-theme .filter-btn {
    border-color: var(--border-medium);
    color: var(--text-secondary);
}

body.dark-theme .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

body.dark-theme .finish-filter-btn {
    border-color: var(--border-medium);
    color: var(--text-secondary);
}

body.dark-theme .finish-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.finish-icon {
    font-size: 1.1rem;
}

/* --- 2.3 Grid de produtos --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.product-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: var(--secondary);
}

.product-badge.popular {
    background: var(--secondary);
}

.product-badge.premium {
    background: linear-gradient(135deg, var(--signature-dark), var(--signature));
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px var(--signature-glow);
}

.product-badge.plus {
    background: linear-gradient(135deg, var(--performance-dark), var(--performance));
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px var(--performance-glow);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.quick-view-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ── Cores por linha: Performance usa cinza, Signature mantém laranja ── */
.product-card[data-finish="performance"] .product-category {
    color: var(--performance);
}
.product-card[data-finish="performance"]:hover {
    border-color: var(--performance);
}
.product-card[data-finish="performance"] .quick-view-btn {
    background: var(--performance);
}
.product-card[data-finish="performance"] .quick-view-btn:hover {
    background: var(--performance-dark);
}
.product-card[data-finish="performance"] .ver-mais-btn {
    background: var(--performance);
    border-color: var(--performance);
    box-shadow: 0 4px 14px var(--performance-shadow);
}
.product-card[data-finish="performance"] .ver-mais-btn:hover {
    background: var(--performance-dark);
    border-color: var(--performance-dark);
    box-shadow: 0 6px 18px var(--performance-shadow);
}
.product-card[data-finish="performance"] .spec-item i {
    color: var(--performance);
}
.product-card[data-finish="performance"] .card-carousel-btn:hover {
    background: var(--performance);
}
.product-card[data-finish="performance"] .card-dot.active {
    background: var(--performance);
}

.product-info {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: var(--text-xs);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: var(--text-xl);
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    font-weight: 700;
}

.product-desc {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.5;
    margin-bottom: var(--space-md);
    flex: 1;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.spec-item i {
    color: var(--primary);
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.spec-item span {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

.finish-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.premium-badge {
    background: var(--signature-alpha-08);
    color: var(--signature-dark);
    border: 1px dashed var(--signature-alpha-40);
}

.plus-badge {
    background: var(--performance-alpha-08);
    color: var(--performance-dark);
    border: 1px dashed var(--performance-alpha-40);
}

/* --- 2.4 Paginação — barra unificada --- */
.pagination-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    padding: var(--space-md) 0;
}

.pagination-row-top {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 600px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.pagination-btn-sm {
    flex: none;
    min-width: 48px !important;
    width: 48px;
    height: 52px;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

#firstPage {
    border-right: 1px solid var(--border-light) !important;
}

#lastPage {
    border-left: 1px solid var(--border-light) !important;
}

.pagination-btn:not(.pagination-btn-sm) {
    flex: none;
    min-width: 0 !important;
    width: auto;
    height: 52px;
    border: none !important;
    border-radius: 0 !important;
    background: transparent;
    font-size: var(--text-sm);
    font-weight: 600;
    padding: 0 var(--space-sm) !important;
    gap: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.pagination-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 0 var(--space-sm);
    min-width: 0;
    height: 52px;
    background: transparent;
    border: none;
    border-radius: 0;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}

.page-indicator {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-sm);
    white-space: nowrap;
}

.page-indicator span {
    color: var(--primary);
    font-weight: 700;
}

.items-count {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-btn:not(:disabled):hover {
    background: var(--bg-light);
    color: var(--primary);
}

.catalog-download {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg);
}

/* --- 2.5 Modal de produto --- */
.product-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--space-md);
    overflow: hidden;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal .modal-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    cursor: default;
    z-index: 0;
}

.product-modal .modal-content {
    background: var(--surface);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

.product-modal .modal-close-x {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.2s ease;
}

.product-modal .modal-close-x:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: rotate(90deg);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Lightbox (tela cheia ao clicar na imagem do modal) --- */
.img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.img-lightbox.active {
    opacity: 1;
}

.img-lightbox > img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    cursor: default;
    user-select: none;
}

.img-lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.img-lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

/* Cursor de lupa na área da imagem principal do modal */
.product-modal .modal-main-image {
    cursor: zoom-in;
}

/* Badge "Ampliar" no canto da imagem */
.modal-expand-hint {
    position: absolute;
    bottom: 40px;
    right: 10px;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    z-index: 5;
    letter-spacing: 0.02em;
}

.product-modal .modal-images-section:hover .modal-expand-hint {
    opacity: 1;
}

/* Setas do lightbox */
.img-lightbox-prev,
.img-lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1;
}

.img-lightbox-prev { left: 20px; }
.img-lightbox-next { right: 20px; }

.img-lightbox-prev:hover,
.img-lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Container que agrupa imagem + contador no lightbox */
.img-lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 90vw;
    max-height: 90vh;
}

.img-lightbox-inner img {
    max-width: 100%;
    max-height: calc(90vh - 40px);
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    cursor: default;
    user-select: none;
}

/* Contador do lightbox */
.img-lightbox-counter {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 4px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    pointer-events: none;
    flex-shrink: 0;
}

.product-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.product-modal .modal-images-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-modal .modal-main-image {
    position: relative;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
}

.product-modal .modal-image-item {
    display: none;
    width: 100%;
    height: 100%;
}

.product-modal .modal-image-item.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.product-modal .modal-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.product-modal .modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-white);
    color: var(--text-primary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
    opacity: 0.7;
    box-shadow: var(--shadow-md);
}

.product-modal .modal-main-image:hover .modal-nav-btn {
    opacity: 1;
}

.product-modal .modal-nav-btn:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

body.dark-theme .product-modal .modal-nav-btn {
    background: var(--surface-elevated);
    color: var(--text-primary);
    opacity: 0.9;
    box-shadow: var(--shadow-xl);
}

body.dark-theme .product-modal .modal-nav-btn:hover {
    background: var(--primary);
    color: var(--text-white);
    opacity: 1;
}

.product-modal .modal-prev {
    left: 10px;
}

.product-modal .modal-next {
    right: 10px;
}

.product-modal .modal-image-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    padding: 4px 10px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.7rem;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.product-modal .modal-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-light);
    margin-top: 4px;
}

.product-modal .modal-thumbnails::-webkit-scrollbar {
    height: 5px;
}

.product-modal .modal-thumbnails::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.product-modal .modal-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.product-modal .modal-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    flex-shrink: 0;
    opacity: 0.6;
}

.product-modal .modal-thumbnail.active {
    border-color: var(--primary);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.product-modal .modal-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-modal .modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-modal .modal-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    overflow-y: auto;
    min-height: 0;
    padding-right: 8px;
}

.product-modal .modal-category {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.product-modal .modal-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 4px;
    line-height: 1.2;
    font-weight: 700;
}

.product-modal .modal-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-modal .modal-specs {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.product-modal .modal-specs h3,
.product-modal .modal-features h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-modal .modal-specs h3 i,
.product-modal .modal-features h3 i {
    color: var(--primary);
    font-size: 0.95rem;
}

.product-modal .modal-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.product-modal .modal-spec-row:last-child {
    border-bottom: none;
}

.product-modal .modal-spec-row strong {
    color: var(--text-primary);
    font-weight: 600;
}

.product-modal .modal-spec-row span {
    color: var(--text-secondary);
}

.product-modal .modal-features {
    background: var(--surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
}

.product-modal .modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.product-modal .modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-modal .modal-features li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.product-modal .modal-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: 12px;
    flex-wrap: wrap;
}

.product-modal .modal-actions .btn {
    min-width: 200px;
    padding: 10px 16px;
    font-size: 0.9rem;
}

/* ── Cores por linha dentro do modal ── */
.product-modal[data-finish="performance"] .modal-category {
    color: var(--performance);
}
.product-modal[data-finish="performance"] .modal-thumbnail.active {
    border-color: var(--performance);
}
.product-modal[data-finish="performance"] .modal-actions .btn-primary {
    background: var(--performance);
    box-shadow: 0 4px 14px var(--performance-shadow);
}
.product-modal[data-finish="performance"] .modal-actions .btn-primary:hover {
    background: var(--performance-dark);
}
.product-modal[data-finish="performance"] .modal-specs h3 i,
.product-modal[data-finish="performance"] .modal-features h3 i,
.product-modal[data-finish="performance"] .modal-features li i {
    color: var(--performance);
}


/* =========================================== */
/* 3. DEPOIMENTOS                              */
/* =========================================== */

/* --- 3.1 Cards --- */
.testimonials {
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.testimonials-grid.is-carousel {
    display: block;
    overflow: hidden;
    margin-bottom: var(--space-xl);
    position: relative;
}

.testimonials-grid.is-carousel .testimonials-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-grid.is-carousel .testimonial-card {
    flex: 0 0 100%;
    min-width: 0;
    transform: none !important;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--border-white-medium);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
}

.testimonial-card {
    background: var(--border-white-light);
    border: 1px solid var(--border-white-strong);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    backdrop-filter: blur(4px);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: var(--border-white-medium);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--color-rating);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-white-muted);
    line-height: 1.7;
    font-size: var(--text-base);
    font-style: italic;
    flex: 1;
    padding-left: var(--space-md);
    border-left: 3px solid var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-white-strong);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 2px;
}

.author-role {
    font-size: var(--text-sm);
    color: var(--text-white-dim);
    margin: 0;
}

/* --- 3.2 Carrossel de logos --- */
.clients-section {
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-white-strong);
}

.clients-title {
    text-align: center;
    font-size: var(--text-2xl);
    color: var(--text-white-muted);
    margin-bottom: var(--space-2xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: var(--space-sm);
}

.clients-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-md);
}

.clients-carousel {
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: var(--space-sm) 0 var(--space-lg);
    user-select: none;
    -webkit-user-select: none;
}

.clients-carousel::before,
.clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.clients-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    will-change: transform;
    align-items: stretch;
}

.client-card {
    flex-shrink: 0;
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface-elevated);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    cursor: default;
}

.client-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.client-card-logo {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px 14px;
    background: var(--surface-elevated);
}

.client-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.client-card:hover .client-card-logo img {
    transform: scale(1.08);
}

.client-card-name {
    width: 100%;
    padding: 9px 14px;
    background: var(--secondary);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.client-card:hover .client-card-name {
    background: var(--secondary-dark);
}


/* =========================================== */
/* 4. LOCALIZAÇÃO                              */
/* =========================================== */
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.location-info h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

.location-info>p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.location-detail {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.location-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-alpha-10);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    border: 2px solid var(--border-primary-light);
}

.location-text h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
    color: var(--text-primary);
}

.location-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--text-sm);
}

.location-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.map-tabs {
    display: flex;
    background: var(--surface-elevated);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.map-tab {
    flex: 1;
    padding: var(--space-md);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.map-tab:hover {
    background: var(--bg-light);
}

.map-tab.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    background: var(--bg-light);
}

.location-map-container {
    background: var(--bg-light);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.location-map-wrapper:hover .location-map-container {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.location-map {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    filter: grayscale(0.3);
    transition: all var(--transition-base);
}

.location-map.active {
    display: block;
}

.location-map-wrapper:hover .location-map.active {
    filter: grayscale(0);
}

.open-maps-btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    margin-top: var(--space-sm);
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.open-maps-btn:hover {
    background: #e04800;
    border-color: #e04800;
    color: #fff;
}


/* =========================================== */
/* RESPONSIVIDADE - UNIFICADA                  */
/* =========================================== */
/* 
   ORDEM DOS BREAKPOINTS (Mobile First):
   1. ≤360px  - Mobile mínimo
   2. ≤480px  - Mobile pequeno  
   3. ≤768px  - Mobile grande
   4. 768-992px - Tablet portrait
   5. ≤992px  - Tablet landscape
   6. ≥1400px - Telas grandes
   7. ≥2000px - Telas extra grandes
*/

/* =========================================== */
/* 1. MOBILE MÍNIMO (≤360px)                   */
/* =========================================== */
@media (max-width: 360px) {
    .hero {
        padding-top: 85px;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-title-line:first-child {
        font-size: 1.4rem;
    }
    .hero-title-line:last-child {
        font-size: 1.35rem;
    }
    .hero-subtitle {
        font-size: 0.8rem;
    }
    .stat-number {
        font-size: 1.35rem;
    }
    .stat-item {
        padding: var(--space-sm) 4px;
    }
    .hero-visual {
        display: none;
    }
    .hero-block-img {
        max-width: 180px;
    }
    .hero-badge {
        padding: 4px 8px;
        font-size: 0.5rem;
    }
    .product-title {
        font-size: 0.85rem;
    }
    .client-card {
        width: 95px;
    }
    .client-card-logo {
        height: 58px;
        padding: 6px 8px;
    }
    .client-card-name {
        font-size: 8px;
        padding: 5px 6px;
        letter-spacing: 0.4px;
    }
}

/* =========================================== */
/* 2. MOBILE PEQUENO (≤480px)                  */
/* =========================================== */
@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }
    .hero-title {
        font-size: 1.7rem;
    }
    .hero-title-line:first-child {
        font-size: 1.6rem;
    }
    .hero-title-line:last-child {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 0.875rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .hero-visual {
        display: none;
    }
    .hero-badge {
        padding: 6px 10px;
        font-size: 0.55rem;
    }
    .finish-guide {
        flex-direction: column;
        gap: 10px;
    }
    .finish-guide-item {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .product-card:hover {
        transform: none;
    }
    .product-card {
        border-radius: var(--radius-md);
    }
    .product-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
    .product-info {
        padding: 10px;
    }
    .product-category {
        font-size: 0.72rem;
        margin-bottom: 4px;
    }
    .product-title {
        font-size: 0.92rem;
        margin-bottom: 6px;
        line-height: 1.25;
    }
    .product-desc {
        font-size: 0.82rem;
        line-height: 1.45;
        margin-bottom: 8px;
    }
    .product-card .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 6px;
        font-size: 0.85rem;
        min-height: 42px;
    }
    .product-specs {
        grid-template-columns: 1fr 1fr !important;
        grid-template-areas: "tamanho resistencia" "classe classe" !important;
        gap: 6px !important;
        padding: 8px 0 !important;
        margin-bottom: 10px !important;
    }
    .spec-item {
        gap: 3px;
    }
    .spec-item i {
        font-size: 0.8rem;
    }
    .spec-item span {
        font-size: 0.75rem;
    }
    #prevPage .btn-text,
    #nextPage .btn-text {
        display: none;
    }
    #prevPage,
    #nextPage {
        width: 48px;
        padding: 0 !important;
    }
    .items-count {
        display: none;
    }
    .pagination-row-top {
        max-width: 100%;
    }
    .catalog-download .btn {
        width: auto;
        min-width: 0;
        max-width: 240px;
        padding: 9px 18px;
        font-size: var(--text-xs);
        justify-content: center;
    }
    .clients-carousel::before,
    .clients-carousel::after {
        width: 24px;
    }
    .client-card {
        width: 110px;
    }
    .client-card-logo {
        height: 68px;
        padding: 8px 10px;
    }
    .client-card-name {
        font-size: 9px;
        padding: 6px;
        letter-spacing: 0.6px;
    }
    body {
        padding-bottom: 0;
    }
}

/* =========================================== */
/* 3. MOBILE GRANDE (≤768px)                   */
/* =========================================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
        text-align: center;
    }
    .hero-content {
        padding: 0 var(--space-sm);
    }
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 1rem;
    }
    .hero-title-line:first-child {
        font-size: clamp(1.6rem, 5.5vw, 2.1rem);
    }
    .hero-title-line:last-child {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-top: 0.15rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.75rem;
        padding: 0 var(--space-sm);
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: 2rem;
    }
    .hero-btns .btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 13px 24px;
    }
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        width: 100%;
        background: var(--border-white-light);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-white-medium);
        overflow: hidden;
        padding: 0;
    }
    .stat-item {
        padding: var(--space-md) var(--space-xs);
        border-right: 1px solid var(--border-white-medium);
        text-align: center;
    }
    .stat-item:last-child {
        border-right: none;
    }
    .stat-number {
        font-size: 1.75rem;
    }
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    .hero-visual {
        display: none;
    }
    .hero-badge {
        top: 10px;
        right: 5px;
        padding: 8px 12px;
        font-size: 0.6rem;
        border-radius: var(--radius-md);
    }
    .hero-line {
        bottom: 20px;
    }
    .finish-guide {
        gap: 15px;
    }
    .finish-guide-item {
        min-width: 200px;
        padding: 12px 15px;
    }
    .guide-icon {
        font-size: 2rem;
    }
    .guide-content h4 {
        font-size: 1rem;
    }
    .guide-content p {
        font-size: 0.8rem;
    }
    .finish-badge {
        font-size: 0.82rem;
        padding: 7px 12px;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        gap: var(--space-md);
    }
    .product-card {
        min-height: auto;
    }
    .product-image {
        height: 260px;
    }
    .product-info {
        padding: var(--space-md);
    }
    .product-specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "tamanho resistencia"
            "classe  classe";
        gap: 10px;
        padding: 10px 0;
    }
    .spec-item:nth-child(1) {
        grid-area: tamanho;
    }
    .spec-item:nth-child(2) {
        grid-area: resistencia;
    }
    .spec-item:nth-child(3) {
        grid-area: classe;
        justify-self: center;
        padding-top: 8px;
        border-top: 1px solid var(--border-light);
        width: 100%;
    }
    .catalog-download .btn {
        width: auto;
        min-width: 0;
        max-width: 300px;
        padding: 10px 20px;
        font-size: var(--text-sm);
        justify-content: center;
    }
    .testimonial-card {
        padding: var(--space-lg);
    }
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    .clients-section {
        margin-top: var(--space-2xl);
    }
    .clients-title {
        font-size: var(--text-lg);
    }
    .clients-carousel {
        padding: var(--space-lg) 0;
    }
    .clients-carousel::before,
    .clients-carousel::after {
        width: 40px;
    }
    .clients-track {
        gap: 12px;
    }
    .client-card {
        width: 130px;
    }
    .client-card-logo {
        height: 80px;
        padding: 10px 12px 8px;
    }
    .client-card-name {
        font-size: 9px;
        padding: 7px 8px;
        letter-spacing: 0.8px;
    }
    .location-container {
        display: flex;
        flex-direction: column;
    }
    .location-map-wrapper {
        order: -1;
    }
    .location-info {
        order: 1;
    }
    .location-info h2 {
        font-size: var(--text-2xl);
    }
    .location-map-container {
        height: 320px;
    }
    .location-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    .location-buttons .btn {
        width: auto;
        min-width: 220px;
        max-width: 320px;
        justify-content: center;
    }
    .product-modal .modal-content {
        max-width: 100%;
        margin: var(--space-sm);
        border-radius: var(--radius-md);
        overflow-y: auto;
        display: block;
    }
    .product-modal .modal-close-x {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 2001;
    }
    .product-modal .modal-body {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
        flex: none;
        overflow: visible;
        min-height: auto;
    }
    .product-modal .modal-main-image {
        height: 240px;
    }
    .product-modal .modal-nav-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
    }
    .product-modal .modal-prev {
        left: 5px;
    }
    .product-modal .modal-next {
        right: 5px;
    }
    .product-modal .modal-nav-btn i {
        font-size: 0.8rem;
    }
    .product-modal .modal-image-counter {
        bottom: 8px;
        font-size: 0.65rem;
    }
    .product-modal .modal-thumbnail {
        width: 56px;
        height: 56px;
    }
    .product-modal .modal-info-section {
        max-height: none;
        overflow-y: visible;
    }
    .product-modal .modal-category {
        font-size: 0.9rem;
    }
    .product-modal .modal-title {
        font-size: 1.6rem;
    }
    .product-modal .modal-description {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    .product-modal .modal-specs h3,
    .product-modal .modal-features h3 {
        font-size: 1.1rem;
    }
    .product-modal .modal-spec-row {
        font-size: 1rem;
        padding: 8px 0;
    }
    .product-modal .modal-features li {
        font-size: 1rem;
        line-height: 1.5;
    }
    .product-modal .modal-actions {
        flex-direction: column;
    }
    .product-modal .modal-actions .btn {
        width: 100%;
        min-width: auto;
    }

    /* Lightbox — setas mobile */
    .img-lightbox-prev,
    .img-lightbox-next {
        background: var(--primary);
        border-color: var(--primary);
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .img-lightbox-prev { left: 10px; }
    .img-lightbox-next { right: 10px; }

    /* Carousel de cards — botões e overlay */
    .card-carousel-btn {
        opacity: 0.8;
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }
    .card-carousel-prev { left: 6px; }
    .card-carousel-next { right: 6px; }
    .product-overlay {
        display: none;
    }
}

/* Altura da imagem dos cards em celulares */
@media (max-width: 480px) {
    .product-card .product-image { height: 360px; }
}
@media (max-width: 360px) {
    .product-card .product-image { height: 300px; }
}

/* =========================================== */
/* 4. TABLET PORTRAIT (768px - 992px)          */
/* =========================================== */
@media (min-width: 768px) and (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.8rem;
    }
    .hero-title-line:first-child,
    .hero-title-line:last-child {
        font-size: 2.4rem;
    }
    .hero-title-line:last-child {
        margin-top: 0.4rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }
    .hero-btns .btn {
        width: auto;
        min-width: 200px;
    }
    .hero-stats {
        gap: 3rem;
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .hero-visual {
        min-height: 420px;
    }
    .hero-block-img {
        max-width: 480px !important;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .testimonials-grid:not(.is-carousel) {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-filters {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }
    .finish-filters {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .filter-btn,
    .finish-filter-btn {
        flex: 0 0 auto;
    }
}

/* =========================================== */
/* 5. TABLET LANDSCAPE (≤992px)                */
/* =========================================== */
@media (max-width: 992px) {
    .hero {
        padding-top: 115px;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
        min-height: auto;
    }
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-subtitle {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    .stat-item {
        text-align: center;
    }
    .hero::after {
        top: auto;
        bottom: 0;
        left: 10%;
        right: 10%;
        width: auto;
        height: 3px;
        background: linear-gradient(to right, transparent, var(--primary), transparent);
    }
    .hero-visual {
        min-height: 380px;
        order: -1;
    }
    .hero-block-img {
        max-width: 520px;
    }
    .hero-badge {
        top: 20px;
        right: 10px;
        border-radius: var(--radius-lg);
        font-size: 0.65rem;
        padding: 10px 16px;
    }
    .product-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: var(--space-lg);
    }
    .filter-btn {
        white-space: normal;
        text-align: center;
        padding: 10px 8px;
        font-size: 0.8rem;
        line-height: 1.2;
    }
    .finish-filters {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 0 0 24px;
    }
    .finish-filter-btn {
        justify-content: center;
        padding: 9px 6px;
        font-size: 0.8rem;
    }
    .location-container {
        grid-template-columns: 1fr;
    }
    .location-map-container {
        height: 300px;
    }
    .clients-carousel::before,
    .clients-carousel::after {
        width: 80px;
    }
    .client-card {
        width: 160px;
    }
    .client-card-logo {
        height: 95px;
        padding: 14px 16px 10px;
    }
    .client-card-name {
        font-size: 10px;
        padding: 8px 10px;
    }
    .clients-title {
        font-size: var(--text-xl);
    }
}

/* =========================================== */
/* 5.6 NOTEBOOKS E TELAS MÉDIAS (992px - 1400px) */
/* =========================================== */
@media (min-width: 992px) and (max-width: 1399px) {
    .container {
        max-width: 100%;
        padding: 0 var(--space-lg);
    }
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: var(--space-2xl);
    }
    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: var(--space-xl);
    }
    .hero-content {
        max-width: 100%;
        padding-right: var(--space-lg);
    }
    .hero-tag {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: var(--space-md);
    }
    .hero-title {
        font-size: clamp(2.2rem, 3.5vw, 2.8rem);
        margin-bottom: 1.2rem;
        line-height: 1.1;
    }
    .hero-title-line:first-child {
        font-size: clamp(2rem, 3.2vw, 2.6rem);
    }
    .hero-title-line:last-child {
        font-size: clamp(2.2rem, 3.5vw, 2.8rem);
        margin-top: 0.2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 90%;
        margin-bottom: 1.8rem;
        line-height: 1.6;
    }
    .hero-btns {
        margin-bottom: 2rem;
        gap: var(--space-sm);
    }
    .hero-btns .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    .hero-stats {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        padding-top: var(--space-md);
        border-top: 1px solid var(--border-white-strong);
    }
    .stat-item {
        flex: 0 0 auto;
        text-align: left;
    }
    .stat-number {
        font-size: 2.2rem;
        white-space: nowrap;
    }
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }
    .hero-visual {
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-visual-bg {
        width: 320px;
        height: 320px;
    }
    .hero-block-img {
        max-width: 640px;
    }
    .hero-badge {
        top: 15px;
        right: 5px;
        padding: 8px 12px;
        font-size: 0.6rem;
    }
    .hero-line {
        bottom: 20px;
    }
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    .product-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .product-image {
        height: 200px;
        flex-shrink: 0;
    }
    .product-info {
        padding: var(--space-md);
    }
    .product-title {
        font-size: 1rem;
    }
    .product-desc {
        font-size: 0.85rem;
    }
    .product-specs {
        gap: 10px;
        padding: 8px 0;
    }
    .spec-item i {
        font-size: 0.8rem;
    }
    .spec-item span {
        font-size: 0.75rem;
    }
    .finish-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    .product-card .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        margin-top: auto;
        width: 100%;
    }
    .finish-guide {
        max-width: 900px;
        gap: 24px;
        margin-bottom: 32px;
    }
    .finish-guide-item {
        padding: 14px 20px;
    }
    .guide-icon {
        font-size: 2rem;
    }
    .guide-content h4 {
        font-size: 1rem;
    }
    .guide-content p {
        font-size: 0.8rem;
    }
    .product-filters {
        max-width: 800px;
        gap: 12px;
    }
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    .finish-filters {
        gap: 12px;
    }
    .finish-filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .pagination-row-top {
        max-width: 550px;
    }
    .pagination-btn-sm {
        width: 44px;
        height: 48px;
    }
    .pagination-btn:not(.pagination-btn-sm) {
        height: 48px;
        font-size: 0.85rem;
    }
    .pagination-info {
        height: 48px;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    .testimonial-card {
        padding: var(--space-md);
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
    .client-card {
        width: 180px;
    }
    .client-card-logo {
        height: 100px;
        padding: 16px 18px 12px;
    }
    .client-card-name {
        font-size: 10px;
        padding: 8px 12px;
    }
    .clients-carousel::before,
    .clients-carousel::after {
        width: 100px;
    }
    .location-container {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-xl);
    }
    .location-map-container {
        height: 380px;
    }
    .location-info h2 {
        font-size: var(--text-2xl);
    }
    .location-info > p {
        font-size: 0.9rem;
    }
    .location-icon {
        width: 44px;
        height: 44px;
    }
    .location-text h4 {
        font-size: var(--text-base);
    }
    .location-text p {
        font-size: 0.85rem;
    }
    .map-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* =========================================== */
/* 6. TELAS GRANDES (≥1400px)                  */
/* =========================================== */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 var(--space-lg);
    }
    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: var(--space-2xl);
    }
    .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: var(--space-2xl);
    }
    .hero-content {
        max-width: 100%;
        padding-right: var(--space-lg);
    }
    .hero-tag {
        font-size: 0.75rem;
        padding: 8px 20px;
        margin-bottom: var(--space-lg);
    }
    .hero-title {
        font-size: clamp(3rem, 4vw, 3.8rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    .hero-title-line:first-child {
        font-size: clamp(2.8rem, 3.8vw, 3.5rem);
    }
    .hero-title-line:last-child {
        font-size: clamp(3rem, 4.2vw, 3.8rem);
        margin-top: 0.25rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 90%;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    .hero-btns {
        margin-bottom: 2.5rem;
        gap: var(--space-md);
    }
    .hero-btns .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    .hero-stats {
        gap: 2.5rem;
        padding-top: var(--space-md);
    }
    .stat-number {
        font-size: 2.8rem;
    }
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .hero-visual {
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-visual-bg {
        width: 380px;
        height: 380px;
    }
    .hero-block-img {
        max-width: 840px;
    }
    .hero-badge {
        top: 20px;
        right: 10px;
        padding: 10px 16px;
        font-size: 0.65rem;
    }
    .hero-line {
        bottom: 30px;
    }
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    .product-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .product-image {
        height: 200px;
        flex-shrink: 0;
    }
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .product-info {
        padding: var(--space-md);
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    .product-title {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .product-desc {
        font-size: 0.8rem;
        margin-bottom: var(--space-sm);
        line-height: 1.5;
    }
    .product-specs {
        margin-bottom: var(--space-md);
        padding: 8px 0;
        gap: 8px;
    }
    .spec-item i {
        font-size: 0.75rem;
    }
    .spec-item span {
        font-size: 0.7rem;
    }
    .finish-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    .product-card .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        margin-top: auto;
        width: 100%;
    }
    .finish-guide {
        max-width: 900px;
        gap: 24px;
        margin-bottom: 32px;
    }
    .finish-guide-item {
        padding: 14px 20px;
    }
    .guide-icon {
        font-size: 2rem;
    }
    .guide-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .guide-content p {
        font-size: 0.8rem;
    }
    .product-filters {
        max-width: 800px;
        gap: 12px;
        margin-bottom: var(--space-xl);
    }
    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    .finish-filters {
        gap: 12px;
        margin-bottom: 24px;
    }
    .finish-filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    .pagination-row-top {
        max-width: 550px;
    }
    .pagination-btn-sm {
        width: 44px;
        height: 48px;
    }
    .pagination-btn:not(.pagination-btn-sm) {
        height: 48px;
        font-size: 0.85rem;
    }
    .pagination-info {
        height: 48px;
        padding: 0 var(--space-sm);
    }
    .page-indicator {
        font-size: 0.85rem;
    }
    .items-count {
        font-size: 0.7rem;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    .testimonial-card {
        padding: var(--space-lg);
    }
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        padding-left: var(--space-sm);
    }
    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    .author-name {
        font-size: 0.9rem;
    }
    .author-role {
        font-size: 0.75rem;
    }
    .clients-title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-xl);
    }
    .client-card {
        width: 180px;
    }
    .client-card-logo {
        height: 100px;
        padding: 16px 18px 12px;
    }
    .client-card-name {
        font-size: 10px;
        padding: 8px 12px;
    }
    .clients-carousel::before,
    .clients-carousel::after {
        width: 100px;
    }
    .location-container {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-xl);
    }
    .location-info h2 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-md);
    }
    .location-info > p {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }
    .location-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .location-text h4 {
        font-size: var(--text-base);
        margin-bottom: 4px;
    }
    .location-text p {
        font-size: 0.85rem;
    }
    .location-map-container {
        height: 400px;
    }
    .map-tab {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    .location-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* =========================================== */
/* 7. TELAS EXTRA GRANDES (≥2000px)            */
/* =========================================== */
@media (min-width: 2000px) {
    .container {
        max-width: 1800px;
        padding: 0 var(--space-xl);
    }
    .hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: var(--space-3xl);
    }
    .hero-inner {
        gap: var(--space-3xl);
    }
    .hero-content {
        max-width: 850px;
        padding-right: var(--space-xl);
    }
    .hero-tag {
        font-size: 0.9rem;
        padding: 10px 28px;
        margin-bottom: var(--space-xl);
    }
    .hero-title {
        font-size: clamp(4rem, 5vw, 5.2rem);
        margin-bottom: 2rem;
        line-height: 1.08;
    }
    .hero-title-line:first-child {
        font-size: clamp(3.8rem, 4.8vw, 5rem);
    }
    .hero-title-line:last-child {
        font-size: clamp(4rem, 5.2vw, 5.4rem);
        margin-top: 0.25rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 85%;
        margin-bottom: 2.8rem;
        line-height: 1.6;
    }
    .hero-btns {
        margin-bottom: 3.5rem;
        gap: var(--space-lg);
    }
    .hero-btns .btn {
        padding: 16px 42px;
        font-size: 1.1rem;
        min-height: auto;
    }
    .hero-stats {
        display: flex;
        gap: 5rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-top: var(--space-lg);
        border-top: 1px solid var(--border-white-strong);
    }
    .stat-item {
        flex: 0 0 auto;
        text-align: left;
    }
    .stat-number {
        font-size: 3.8rem;
        white-space: nowrap;
    }
    .stat-label {
        font-size: 1rem;
        letter-spacing: 1.5px;
        white-space: nowrap;
    }
    .hero-visual {
        min-height: auto;
    }
    .hero-visual-bg {
        width: 550px;
        height: 550px;
    }
    .hero-block-img {
        max-width: 940px;
    }
    .hero-badge {
        top: 30px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.8rem;
    }
    .hero-line {
        bottom: 40px;
    }
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
    .product-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .product-image {
        height: 260px;
        flex-shrink: 0;
    }
    .product-info {
        padding: var(--space-lg);
    }
    .product-category {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .product-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    .product-desc {
        font-size: 0.9rem;
        margin-bottom: var(--space-md);
        line-height: 1.5;
    }
    .product-specs {
        gap: 12px;
        margin-bottom: var(--space-md);
        padding: 10px 0;
    }
    .spec-item i {
        font-size: 0.9rem;
    }
    .spec-item span {
        font-size: 0.8rem;
    }
    .finish-badge {
        font-size: 0.8rem;
        padding: 7px 14px;
        margin-bottom: 16px;
    }
    .product-card .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin-top: auto;
        width: 100%;
    }
    .finish-guide {
        max-width: 1300px;
        gap: 48px;
        margin-bottom: 56px;
    }
    .finish-guide-item {
        padding: 22px 32px;
    }
    .guide-icon {
        font-size: 2.5rem;
    }
    .guide-content h4 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    .guide-content p {
        font-size: 0.9rem;
    }
    .product-filters {
        max-width: 1100px;
        gap: 18px;
        margin-bottom: var(--space-2xl);
    }
    .filter-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    .finish-filters {
        gap: 18px;
        margin-bottom: 40px;
    }
    .finish-filter-btn {
        padding: 12px 26px;
        font-size: 0.9rem;
    }
    .pagination-row-top {
        max-width: 750px;
    }
    .pagination-btn-sm {
        width: 56px;
        height: 60px;
        font-size: 1.2rem;
    }
    .pagination-btn:not(.pagination-btn-sm) {
        height: 60px;
        font-size: 0.95rem;
        padding: 0 var(--space-lg) !important;
    }
    .pagination-info {
        height: 60px;
        padding: 0 var(--space-md);
    }
    .page-indicator {
        font-size: 0.95rem;
    }
    .items-count {
        font-size: 0.8rem;
    }
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2xl);
    }
    .testimonial-card {
        padding: var(--space-2xl);
    }
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        padding-left: var(--space-md);
    }
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .author-name {
        font-size: 1.05rem;
    }
    .author-role {
        font-size: 0.9rem;
    }
    .clients-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-2xl);
    }
    .client-card {
        width: 230px;
    }
    .client-card-logo {
        height: 130px;
        padding: 24px 26px 18px;
    }
    .client-card-name {
        font-size: 12px;
        padding: 12px 16px;
        letter-spacing: 1.2px;
    }
    .clients-carousel::before,
    .clients-carousel::after {
        width: 180px;
    }
    .location-container {
        grid-template-columns: 1fr 1.5fr;
        gap: var(--space-3xl);
    }
    .location-map-container {
        height: 550px;
    }
    .location-info h2 {
        font-size: var(--text-4xl);
        margin-bottom: var(--space-xl);
    }
    .location-info > p {
        font-size: 1.1rem;
        line-height: 1.75;
        margin-bottom: var(--space-2xl);
    }
    .location-icon {
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }
    .location-text h4 {
        font-size: var(--text-xl);
        margin-bottom: 8px;
    }
    .location-text p {
        font-size: 1rem;
    }
    .location-buttons .btn {
        padding: 14px 32px;
        font-size: 1rem;
        min-height: auto;
    }
    .map-tab {
        padding: var(--space-lg) var(--space-2xl);
        font-size: 1rem;
    }
    .whatsapp-float {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        bottom: 110px;
        right: 35px;
    }
    .theme-toggle {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        bottom: 35px;
        right: 35px;
    }
}

/* =========================================================================
   CARD IMAGE CAROUSEL
   ========================================================================= */

.card-img-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-img-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.35s ease, transform var(--transition-base);
    pointer-events: none;
}

.card-img-carousel img.active {
    opacity: 1;
    pointer-events: auto;
}

/* Anula o hover-scale genérico e aplica só na imagem ativa */
.product-card:hover .product-image .card-img-carousel img {
    transform: none;
}

.product-card:hover .product-image .card-img-carousel img.active {
    transform: scale(1.05);
}

.card-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.product-card:hover .card-carousel-btn {
    opacity: 1;
}

.card-carousel-btn:hover {
    background: var(--primary);
}

.card-carousel-prev { left:  8px; }
.card-carousel-next { right: 8px; }

.card-carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
}

.card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.card-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Touch: setas sempre visíveis */
@media (hover: none) {
    .card-carousel-btn {
        opacity: 0.75;
    }
}

