/* =========================================== */
/* 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 — VERSÃO ORIGINAL + ELEMENTO ESCURO    */
/* Opção 1: Radial Gradient Suave              */
/* =========================================== */

/* ---- BASE ---- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg-color);
    padding-top: 115px;
    position: relative;
    overflow-x: clip;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-light  );
    z-index: 0;
}

/* Barra laranja vertical — esquerda */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 5px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--primary) 30%,
        var(--primary) 70%,
        transparent 100%);
    z-index: 3;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(255, 81, 0, 0.3);
}

/* Elemento escuro decorativo no canto direito */
.hero-dark-accent {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(61, 68, 78, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ---- SHAPES GEOMÉTRICAS ---- */
.shape-bg-1,
.shape-bg-2,
.shape-bg-3,
.shape-bg-5 {
    display: none;
}

/* ---- CONTAINER ---- */
.hero .container {
    position: relative;
    z-index: 4;
    width: 100%;
}

/* ---- INNER GRID ---- */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
    min-height: calc(90vh - 115px);
    padding: var(--space-xl) 0;
}

/* ---- CONTEÚDO ESQUERDO ---- */
.hero-content {
    max-width: 580px;
    position: relative;
    z-index: 4;
}

/* Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(61, 68, 78, 0.22);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    margin-bottom: var(--space-lg);
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(61, 68, 78, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: pulse-dot 2s ease infinite;
}

/* Título */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-title-line:first-child {
    color: var(--text-primary);
    font-weight: 700;
}

.hero-title-line:last-child {
    color: var(--primary);
    font-weight: 800;
    margin-top: 0.25rem;
}

/* Subtítulo */
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.65;
    max-width: 540px;
    font-weight: 400;
}

/* Botões */
.hero-btns {
    display: flex;
    gap: var(--space-md);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btns .btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-alpha-30);
    transition: all var(--transition-base);
}

.hero-btns .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-alpha-40);
}

.hero-btns .btn-secondary {
    background: transparent;
    border: 2px solid rgba(61, 68, 78, 0.25);
    color: var(--text-secondary);
    font-weight: 600;
    transition: all var(--transition-base);
}

.hero-btns .btn-secondary:hover {
    background: var(--secondary);
    color: var(--text-white);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(61, 68, 78, 0.12);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ---- VISUAL DIREITO ---- */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 420px;
    z-index: 4;
}

/* Glow sutil sob a imagem */
.hero-visual-bg {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(61, 68, 78, 0.06) 0%,
        transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    pointer-events: none;
}

/* Imagem principal */
.hero-block-img {
    position: relative;
    z-index: 2;
    max-width: 460px;
    width: 100%;
    filter: drop-shadow(0 24px 32px rgba(61, 68, 78, 0.18))
            drop-shadow(0 6px 12px rgba(61, 68, 78, 0.12));
    animation: float-block 6s ease-in-out infinite;
}

/* Badge */
.hero-badge {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    padding: 12px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 16px var(--primary-alpha-30);
    text-align: center;
    transition: transform var(--transition-base);
}

.hero-badge:hover {
    transform: translateX(-5px);
}

/* Linha decorativa inferior */
.hero-line {
    position: absolute;
    bottom: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary),
        transparent);
    border-radius: 2px;
    opacity: 0.4;
}

/* Animações */
@keyframes pulse-dot {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float-block {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* =========================================== */
/* TEMA ESCURO                                 */
/* =========================================== */
body.dark-theme .hero {
    background: var(--bg-color);
}

body.dark-theme .hero::before {
    background: var(--bg-color);
}

body.dark-theme .hero-tag {
    border-color: var(--border-white-medium);
    color: var(--text-white-dim);
}

body.dark-theme .hero-title-line:first-child {
    color: var(--text-white);
}

body.dark-theme .hero-subtitle {
    color: var(--text-white-muted);
}

body.dark-theme .hero-btns .btn-secondary {
    border-color: var(--border-white-medium);
    color: var(--text-white-muted);
}

body.dark-theme .hero-btns .btn-secondary:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
}

body.dark-theme .hero-stats {
    border-top-color: var(--border-white-medium);
}

body.dark-theme .stat-label {
    color: var(--text-white-dim);
}

body.dark-theme .hero-visual-bg {
    background: radial-gradient(circle,
        rgba(242, 242, 242, 0.08) 0%,
        transparent 70%);
}

body.dark-theme .hero-block-img {
    filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.4))
            drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* =========================================== */
/* 2. SEÇÃO PRODUTOS                           */
/* =========================================== */

/* --- 2.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(--premium-border);
}

.premium-guide .guide-content h4 {
    color: var(--premium-dark);
}

.plus-guide {
    border-left: 4px solid var(--plus-border);
}

.plus-guide .guide-content h4 {
    color: var(--plus-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(--premium-border);
    border-color: var(--premium-dark);
    color: var(--text-primary);
}

.finish-filter-btn.plus-filter.active {
    background: var(--plus-border);
    border-color: var(--plus-dark);
    color: var(--text-white);
}

.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(--premium-border), var(--premium-accent));
    color: var(--text-primary);
    font-weight: 800;
    border: 1px solid var(--premium-dark);
    box-shadow: 0 2px 8px var(--premium-shadow);
}

.product-badge.plus {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--text-white);
    font-weight: 800;
    border: 1px solid var(--secondary-dark);
    box-shadow: 0 2px 8px var(--plus-shadow);
}

.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);
}

.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(--premium-shadow);
    color: var(--premium-dark);
    border: 1px dashed var(--premium-border);
}

.plus-badge {
    background: var(--plus-shadow);
    color: var(--plus-dark);
    border: 1px dashed var(--plus-border);
}

/* --- 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-y: auto;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.product-modal .modal-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    cursor: pointer;
    z-index: 0;
}

.product-modal .modal-content {
    background: var(--surface);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    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);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-modal .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
    max-height: 85vh;
    overflow-y: auto;
}

.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-full);
    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 0;
    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;
    max-height: 75vh;
    padding-right: 8px;
}

.product-modal .modal-category {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.product-modal .modal-title {
    font-size: 1.3rem;
    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.4;
    font-size: 0.9rem;
    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: 1rem;
    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.9rem;
}

.product-modal .modal-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.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.85rem;
    line-height: 1.3;
}

.product-modal .modal-features li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.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;
}


/* =========================================== */
/* 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: 3px;
}

.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: 14px;
    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(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
}

.open-maps-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}


/* =========================================== */
/* 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 {
        min-height: 200px;
    }
    .hero-visual-bg {
        width: 180px;
        height: 180px;
    }
    .hero-block-img {
        max-width: 180px;
    }
    .hero-badge {
        padding: 4px 8px;
        font-size: 0.5rem;
    }
    .product-image {
        height: 110px;
    }
    .product-title {
        font-size: 0.75rem;
    }
    .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 {
        min-height: 240px;
    }
    .hero-visual-bg {
        width: 220px;
        height: 220px;
    }
    .hero-block-img {
        max-width: 220px;
    }
    .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-image {
        height: 130px;
    }
    .product-badge {
        font-size: 0.6rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
    .product-info {
        padding: 10px;
    }
    .product-category {
        font-size: 0.62rem;
        margin-bottom: 4px;
    }
    .product-title {
        font-size: 0.82rem;
        margin-bottom: 6px;
        line-height: 1.25;
    }
    .product-desc {
        font-size: 0.72rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    .product-card .btn {
        width: 100%;
        justify-content: center;
        padding: 10px 6px;
        font-size: 0.78rem;
        min-height: 40px;
    }
    .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: 2px;
    }
    .spec-item i {
        font-size: 0.7rem;
    }
    .spec-item span {
        font-size: 0.65rem;
    }
    #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 {
        min-height: 280px;
    }
    .hero-visual-bg {
        width: 260px;
        height: 260px;
    }
    .hero-block-img {
        max-width: 260px;
    }
    .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.75rem;
        padding: 6px 10px;
    }
    .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: 170px;
    }
    .product-info {
        padding: var(--space-md);
    }
    .product-specs {
        display: grid !important;
        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);
    }
    .product-modal .modal-body {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    .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-actions {
        flex-direction: column;
    }
    .product-modal .modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* =========================================== */
/* 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: 380px;
    }
    .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: 320px;
    }
    .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;
        flex-direction: row;
        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: 340px;
    }
    .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: 400px;
    }
    .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;
        flex-direction: row;
        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: 580px;
    }
    .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;
    }
}