/* Bundle publico da home para reduzir CSS e melhorar PageSpeed. */

/* === css/base/global.css === */
/* global.css */

html {
    color-scheme: light;
    background: #ffffff;
    overflow-x: hidden;
    /* Reserva o tamanho da barra de contato (40) + navbar (120) já no CSS
       — o dynamic-positioning.js atualiza esse valor ao rolar/redimensionar.
       Ter um fallback global garante que o carrossel hero nunca apareça
       atrás da navbar antes do JS rodar. */
    --navbar-total-height: 160px;
}

/* Fallback específico para mobile (banner 36 + navbar 90) */
@media (max-width: 768px) {
    html {
        --navbar-total-height: 126px;
    }
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    color: #171717;
    background: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Box-sizing global */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Imagens e vídeos responsivos */
img,
video {
    max-width: 100%;
    height: auto;
}

/* Swiper */
.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background-color: #BB0606 !important;
    opacity: 1;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background-color: #BB0606 !important;
}

.swiper-pagination {
    bottom: 15px !important;
}

:root {
    --swiper-theme-color: #BB0606;
}

/* Herança de fonte */
h1, h2, h3, h4, h5, h6, p, span, button, a, input, select, textarea {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ── Melhorias mobile globais ─────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Seções com max-width não escapam da tela */
    section,
    .container,
    .categoryPage,
    .categoryContainer,
    .filterAndCardsContainer,
    .highlight-section {
        max-width: 100% !important;
        overflow-x: hidden;
    }

    /* Grids: 1 coluna no mobile por padrão quando muito apertado */
    .highlight-container-home {
        grid-template-columns: 1fr !important;
    }

    /* Textos não escadem */
    h1 { font-size: clamp(1.4rem, 5vw, 2.2rem); }
    h2 { font-size: clamp(1.2rem, 4.5vw, 1.8rem); }
    h3 { font-size: clamp(1rem, 4vw, 1.4rem); }

    /* Touch target mínimo para links e botões críticos */
    .nav-link,
    .footer-link,
    .pagination a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
    }

    /* Tables */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    /* Padding lateral mínimo para telas muito pequenas */
    .categoryContainer,
    .highlight-section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Cards em coluna única */
    .product-card-container,
    .highlightContainerFive {
        grid-template-columns: 1fr !important;
    }

    /* Fonte mínima legível */
    body {
        font-size: 14px;
    }
}


/* === css/components/Navbar.css === */
/* Navbar.css */

:root {
    --nav-dropdown-gutter: clamp(12px, 2vw, 36px);
}

/* ── Barra de contato ────────────────────────────────────────────────── */
.welcome-banner {
    background-color: #BB0606;
    color: #fff;
    height: 40px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.welcome-banner.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.contact-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.contact-item:hover { color: #fff; }

.contact-item i {
    font-size: 12px;
    opacity: 0.85;
    flex-shrink: 0;
}

.contact-item .fab.fa-whatsapp { font-size: 14px; }

.contact-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    user-select: none;
}

/* ── Navbar ──────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
    top: 40px;
    z-index: 2000;
    display: flex;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    height: 120px;  /* +33% de 90px */
    transition: height 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.navbar.shrink {
    height: 70px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.11);
}

/* ── Container interno ───────────────────────────────────────────────── */
.container-inner {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

/* ── Logo ────────────────────────────────────────────────────────────── */
.logo-icons {
    display: none;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.navbar-logo:hover { opacity: 0.85; }

.logo-img {
    height: 84px;      /* 120px - 36px margem = 84px (18px cada lado) */
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease, max-width 0.3s ease;
}

.navbar.shrink .logo-img {
    height: 50px;
    max-width: 200px;
}

/* ── Menu Desktop ────────────────────────────────────────────────────── */
.container-menu {
    display: flex;
    align-items: center;          /* todos centralizados no eixo Y */
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 24px;
    position: relative;
}

.navbar-menu {
    display: flex;
    gap: clamp(24px, 2.4vw, 44px);
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;          /* todos os links no mesmo eixo Y */
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Links — todos com mesma altura, mesma altura de linha, mesmo padding */
.nav-link,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;                  /* altura uniforme para todos */
    font-size: clamp(17px, 1.05vw, 20px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;          /* mantém "Otimização em Obra", sem uppercase */
    color: #505057;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    line-height: 1;
    vertical-align: middle;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.button-link:hover {
    color: #BB0606;
    transform: translateY(-1px);
}

.nav-link::after,
.button-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 2px;
    background: #BB0606;
    border-radius: 1px;
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.button-link:hover::after {
    width: 100%;
}

.navbar.shrink .nav-link,
.navbar.shrink .button-link {
    height: 34px;
    font-size: clamp(16px, 0.95vw, 18px);
}

/* ── Lupa na navbar (limpa, sem fundo, sem campo ao lado) ────────────── */
.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;             /* mesma altura dos nav-links */
    flex-shrink: 0;
    transition: opacity 0.2s;
    margin: 0;
    line-height: 1;
}
.search-toggle-btn:hover { opacity: 0.65; }
.search-toggle-btn img { width: 22px; height: 22px; display: block; }

/* ── Painel de busca (abre abaixo da navbar ao clicar na lupa) ───────── */
.search-dropdown {
    position: fixed;
    top: var(--navbar-total-height, 160px);  /* exatamente abaixo da navbar */
    right: var(--nav-dropdown-gutter);
    left: auto;
    width: min(860px, calc(100vw - 72px));
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
    border: 1px solid #ebebeb;
    border-top: 3px solid #BB0606;
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    overflow: hidden;
}

.search-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.search-dropdown-inner {
    display: flex;
    flex-direction: column;
}

/* Campo de busca grande dentro do painel */
.search-dropdown-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.search-dropdown-fieldicon {
    color: #BB0606;
    font-size: 16px;
    flex-shrink: 0;
}

.search-dropdown-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #222;
    font-family: inherit;
    padding: 4px 0;
    min-width: 0;
}

.search-dropdown-input::placeholder { color: #bbb; }

.search-dropdown-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    color: #aaa;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s;
    border-radius: 6px;
}
.search-dropdown-clear:hover { color: #BB0606; background: #fff; }

/* Body: resultados + sidebar lado a lado */
.search-dropdown-body {
    display: flex;
    background: #fff;
}

.search-dropdown-results {
    flex: 1;
    padding: 18px 22px;
    min-width: 0;
    border-right: 1px solid #f0f0f0;
}

.search-dropdown-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}

.search-dropdown-divider {
    border: none;
    border-top: 1px solid #ebebeb;
    margin: 0 0 12px;
}

.search-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 80px;
    max-height: min(64vh, 620px);
    overflow-y: auto;
}

.search-dropdown-products {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.search-dropdown-hint {
    font-size: 13px;
    color: #aaa;
    padding: 8px 0;
}

.search-dropdown-empty {
    font-size: 13px;
    color: #999;
    padding: 10px 0;
}

/* Cada resultado */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    cursor: pointer;
}
.search-result-item:hover { background: #fef2f2; }

.search-result-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
    flex-shrink: 0;
}

.search-result-info { min-width: 0; }

.search-result-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.search-result-sub {
    font-size: 11px;
    color: #888;
    display: block;
}

.search-result-item:hover .search-result-name { color: #BB0606; }

.search-dropdown-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 2px;
}

.search-page-btn {
    min-width: 30px;
    height: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #444;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.search-page-btn:hover,
.search-page-btn.active {
    border-color: #BB0606;
    background: #BB0606;
    color: #fff;
}

.search-page-ellipsis {
    color: #999;
    font-size: 12px;
    padding: 0 2px;
}

/* Sidebar */
.search-dropdown-sidebar {
    width: 200px;
    flex-shrink: 0;
    padding: 18px 18px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-sidebar-link {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #BB0606;
    text-decoration: none;
    padding: 8px 6px;
    border-radius: 6px;
    transition: background 0.15s ease, padding 0.15s ease;
}

.search-sidebar-button {
    width: 100%;
    border: 0;
    background: transparent;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.search-sidebar-link:hover {
    background: #fef2f2;
    padding-left: 12px;
}

/* ── Ícones Mobile ───────────────────────────────────────────────────── */
.mobile-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.menu-button,
.search-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.menu-button:hover,
.search-icon-button:hover { background: #f5f5f5; }

.menu-icon {
    color: #BB0606;
    font-size: 22px;
}

/* ── Busca Mobile ────────────────────────────────────────────────────── */
.search-form-mobile {
    display: none;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    position: fixed;
    left: 0;
    top: 126px; /* contact(36) + navbar(90) */
    z-index: 1002;
    flex-direction: column;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.search-form-mobile.active { display: flex; }

.search-input-wrapper-mobile {
    display: flex;
    width: 100%;
    max-width: 480px;
    background: #f5f5f5;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.search-input-wrapper-mobile:focus-within {
    border-color: #BB0606;
    background: #fff;
}

.search-input-mobile {
    flex: 1;
    padding: 11px 44px 11px 18px;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    color: #333;
}

.search-input-mobile::placeholder { color: #aaa; }

.search-button-mobile {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
}

.search-button-mobile img { width: 20px; height: 20px; }

/* ── Product panel ───────────────────────────────────────────────────── */
.product-panel-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #ebebeb;
    border-radius: 0 0 12px 12px;
    position: fixed;
    top: 160px;
    width: 100%;
    max-width: 1920px;
    z-index: 995;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: top 0.3s ease;
}

/* ── Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 929px) {
    .welcome-banner {
        height: 36px;
    }

    .contact-bar-inner {
        gap: 12px;
        padding: 0 14px;
    }

    .contact-item:first-child,
    .contact-divider:first-of-type {
        display: none;
    }

    .contact-item { font-size: 11px; gap: 5px; }

    .navbar {
        top: 36px;
        height: 90px;
    }

    .navbar.shrink { height: 56px; }

    .logo-img {
        height: 58px;
        max-width: 190px;
    }

    .navbar.shrink .logo-img {
        height: 38px;
        max-width: 150px;
    }

    .container-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .search-form-mobile {
        top: 126px; /* contact(36) + navbar(90) */
    }

    /* Dropdown ocupa quase a tela toda no mobile */
    .search-dropdown {
        right: 8px;
        left: 8px;
        width: auto;
    }

    .search-dropdown-body {
        flex-direction: column;
    }

    .search-dropdown-results {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 14px 16px;
    }

    .search-dropdown-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
        padding: 12px 16px 14px;
    }

    .search-sidebar-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .search-dropdown-field {
        padding: 14px 16px;
    }

    .search-dropdown-input { font-size: 15px; }

    .product-panel-content {
        top: 126px;
    }
}

/* ── Breakpoint menu ─────────────────────────────────────────────────── */
@media (max-width: 929px) {
    .container-menu { display: none; }

    .logo-icons {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 930px) {
    .logo-icons,
    .mobile-icons { display: none; }
    .container-menu { display: flex; }
}


/* === css/components/Footer.css === */
/* Footer.css */

/* ── Rodapé principal — fundo cinza claro ── */
.footer {
  background-color: #f4f4f6;        /* cinza claro neutro */
  color: #5a5a5a;                    /* texto cinza escuro para contraste em fundo claro */
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid #e5e5e5;
}

/* ── Barra de ações (topo do footer) ── */
.action-bar {
  position: relative;
  background: #ffffff;
  border-top: 2px solid #BB0606;
  z-index: 10;
  padding: 10px 0;
}

.action-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.action-button {
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: #BB0606;
}

.action-button:hover {
  background-color: #BB0606;
  border-color: #BB0606;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(187, 6, 6, 0.25);
}

.action-icon {
  font-size: 14px;
  width: 15px;
  height: 15px;
  color: inherit;
  transition: color 0.25s ease;
}

/* ── Container principal ── */
.footer-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 2rem 52px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 48px;
  box-sizing: border-box;
}

/* ── Colunas ── */
.column {
  display: flex;
  flex-direction: column;
}

.column h3 {
  color: #1a1a1a;                          /* preto: alto contraste em fundo claro */
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e0e0e0;
}

.column h4 {
  display: flex;
  align-items: center;
  color: #6b6b6b;                           /* cinza médio para texto secundário */
  cursor: pointer;
  transition: color 0.2s ease;
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.4;
}

.column h4:hover {
  color: #BB0606;                           /* hover na cor da marca */
}

/* ── Links ── */
.footer-link,
.social-link {
  color: #6b6b6b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-link:hover,
.social-link:hover {
  color: #BB0606;
  text-decoration: none;
}

.footer-link svg,
.social-link svg {
  margin-right: 8px;
  width: 15px;
  height: 15px;
  opacity: 0.7;
}

/* ── Ícones sociais ── */
.social-icon {
  margin-right: 8px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #6b6b6b;
  transition: color 0.2s ease;
}

.social-link:hover .social-icon {
  color: #BB0606;
}

/* ── Mapa ── */
.footer-container .column iframe {
  border-radius: 10px;
  border: 0;
  width: 100%;
  height: 190px;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* ── Rodapé inferior ── */
.footer-bottom {
  background-color: #BB0606;
  color: #ffffff;
  text-align: center;
  padding: 14px 1rem;
  width: 100%;
  box-sizing: border-box;
}

.bottom-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.bottom-content p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.2px;
  opacity: 0.92;
}

.footer-logo {
  width: 28px;
  height: 28px;
  opacity: 0.95;
}

/* ── Helper interno ── */
.content-inner {
  display: flex;
  flex-direction: column;
}

/* ── Responsividade ── */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 44px 1.5rem 40px;
  }

  .footer-container .column:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 1.5rem 32px;
  }

  .footer-container .column:nth-child(3) {
    grid-column: 1;
  }

  .column h3 {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .column h4,
  .footer-link,
  .social-link {
    font-size: 0.875rem;
  }

  .footer-container .column iframe {
    height: 170px;
  }

  .footer-bottom {
    padding: 12px 1rem;
  }

  .action-content {
    padding: 0 1rem;
  }
}

/* ── Prevenir scroll horizontal ── */
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* === css/components/site_widgets.css === */
.floating-whatsapp {
    position: fixed;
    left: 18px;
    bottom: 20px;
    z-index: 940;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 9px 14px 9px 9px;
    border-radius: 999px;
    background: #ffffff;
    color: #102018;
    text-decoration: none;
    border: 1px solid rgba(18, 140, 126, 0.2);
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    border-color: rgba(18, 140, 126, 0.42);
    box-shadow: 0 22px 44px rgba(17, 24, 39, 0.2);
}

.floating-whatsapp__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.floating-whatsapp__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    white-space: nowrap;
}

.floating-whatsapp__text strong {
    font-size: 0.92rem;
    color: #111827;
}

.floating-whatsapp__text small {
    margin-top: 3px;
    font-size: 0.74rem;
    color: #4b5563;
}

.cookie-consent {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 950;
    width: min(560px, calc(100vw - 36px));
    display: none;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 24, 39, 0.1);
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.2);
    backdrop-filter: blur(14px);
}

.cookie-consent.is-visible {
    display: grid;
}

.cookie-consent__body {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
}

.cookie-consent__icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    color: #bb0606;
    font-size: 1rem;
}

.cookie-consent__copy h2 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #111827;
}

.cookie-consent__copy p {
    margin: 0;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.45;
}

.cookie-consent__prefs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.cookie-consent__prefs label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.84rem;
    font-weight: 700;
}

.cookie-consent__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-btn {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.86rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--ghost {
    background: #fff;
    border-color: #e5e7eb;
    color: #374151;
}

.cookie-btn--primary {
    background: #bb0606;
    color: #fff;
}

@media (max-width: 720px) {
    .floating-whatsapp {
        left: 12px;
        bottom: 14px;
        min-height: 50px;
        padding: 7px 11px 7px 7px;
    }

    .floating-whatsapp__icon {
        width: 36px;
        height: 36px;
        font-size: 1.15rem;
    }

    .floating-whatsapp__text strong {
        font-size: 0.84rem;
    }

    .floating-whatsapp__text small {
        font-size: 0.68rem;
    }

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 78px;
        width: auto;
        padding: 14px;
    }

    .cookie-consent__body {
        grid-template-columns: 1fr;
    }

    .cookie-consent__icon {
        display: none;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1 1 auto;
    }
}


/* === css/pages/quote_modal.css === */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overscroll-behavior: contain;
}

.quote-modal.is-open {
    display: flex;
}

.quote-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.62);
    backdrop-filter: blur(4px);
}

.quote-modal__panel {
    position: relative;
    width: min(780px, 100%);
    max-height: min(92vh, 880px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.quote-modal__header {
    padding: 22px 24px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #f1f1f1;
}

.quote-modal__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #BB0606;
    margin-bottom: 5px;
}

.quote-modal__header h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.18;
    color: #111827;
}

.quote-modal__header p {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 0.92rem;
    line-height: 1.35;
}

.quote-modal__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    color: #6b7280;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background 0.2s ease, color 0.2s ease;
}

.quote-modal__close:hover {
    background: #fee2e2;
    color: #BB0606;
}

.quote-form {
    padding: 20px 24px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.quote-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.quote-type {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 4px;
    border-radius: 12px;
    background: #f3f4f6;
    margin-bottom: 18px;
}

.quote-type__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 9px;
    color: #4b5563;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.quote-type__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quote-type__option.is-active {
    background: #fff;
    color: #BB0606;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.quote-field--wide {
    grid-column: 1 / -1;
}

.quote-field span,
.quote-contact legend {
    color: #374151;
    font-size: 0.82rem;
    font-weight: 800;
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font: inherit;
    font-size: 0.93rem;
    line-height: 1.35;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-field input {
    height: 44px;
    padding: 0 12px;
}

.quote-field textarea {
    min-height: 96px;
    resize: vertical;
    padding: 11px 12px;
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-color: #BB0606;
    box-shadow: 0 0 0 3px rgba(187, 6, 6, 0.1);
}

.quote-field.is-invalid input,
.quote-field.is-invalid textarea {
    border-color: #BB0606;
    background: #fff7f7;
}

.quote-field.is-hidden {
    display: none;
}

.quote-contact {
    border: 0;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quote-contact legend {
    width: 100%;
    margin-bottom: 2px;
}

.quote-contact label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.quote-contact input {
    accent-color: #BB0606;
}

.quote-turnstile {
    margin-top: 18px;
    min-height: 1px;
}

.quote-form__message {
    margin: 14px 0 0;
    min-height: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #BB0606;
}

.quote-form__message.is-success {
    color: #047857;
}

.quote-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #f1f1f1;
}

.quote-btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 11px;
    border: 0;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quote-btn--ghost {
    background: #f3f4f6;
    color: #374151;
}

.quote-btn--primary {
    background: #BB0606;
    color: #fff;
    box-shadow: 0 10px 24px rgba(187, 6, 6, 0.18);
}

.quote-btn:not(:disabled):hover {
    transform: translateY(-1px);
}

.quote-btn:disabled {
    opacity: 0.68;
    cursor: wait;
}

html.quote-modal-lock,
body.quote-modal-lock {
    overflow: hidden;
    overscroll-behavior: none;
}

.technicalOption.opt-form {
    font-family: inherit;
    width: 100%;
}

@media (max-width: 720px) {
    .quote-modal {
        align-items: flex-end;
        padding: 0;
    }

    .quote-modal__panel {
        width: 100%;
        max-height: 94vh;
        border-radius: 18px 18px 0 0;
    }

    .quote-modal__header {
        padding: 18px 18px 15px;
    }

    .quote-modal__header h2 {
        font-size: 1.28rem;
    }

    .quote-form {
        padding: 16px 18px 20px;
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quote-form__actions {
        flex-direction: column-reverse;
    }

    .quote-btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .quote-type__option {
        font-size: 0.82rem;
    }

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

    .quote-contact label {
        width: 100%;
        box-sizing: border-box;
    }
}


/* === css/components/ProductPanelMob.css === */
/* ProductPanelMob.css — drawer mobile com navegação 2 níveis */

/* ── Overlay ── */
.panelContainerMob {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: flex-start;
  /* z-index ALTO o suficiente para ficar acima de: barra de contato (1001),
     navbar (1000), search-dropdown (1050), product-panel desktop (1500),
     search-overlay (999). Painel mobile deve cobrir tudo. */
  z-index: 99999;
  pointer-events: none;
  transition: background-color 0.3s ease;
}

/* Quando o painel está aberto, trava o scroll do body para que nada por
   baixo se mova (classe adicionada pelo JS). */
body.mobile-menu-open {
  overflow: hidden !important;
  touch-action: none;
}
.panelContainerMob.show {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.45);
}

/* ── Drawer ── */
.productPanelMob {
  background-color: #fff;
  width: 88%;
  max-width: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  pointer-events: auto;
  box-shadow: 6px 0 30px rgba(0, 0, 0, 0.12);
}
.panelContainerMob.show .productPanelMob { transform: translateX(0); }
.panelContainerMob:not(.show) .productPanelMob { transform: translateX(-100%); }

/* ── Header ── */
.drawerHeaderMob {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.logoMob { height: 40px; width: auto; object-fit: contain; }
.closeBtnMob {
  width: 38px; height: 38px;
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
  color: #666;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.closeBtnMob:hover { background: #fef2f2; color: #BB0606; }

/* ── Área scrollável ── */
.mainViewMob {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

/* ── Sistema de "views" (lista raiz / detalhe) ── */
.viewMob {
  display: none;
}
.viewMob.is-active {
  display: block;
}

/* ── Títulos de seção (Produtos / Suporte) ── */
.sectionTitleMob {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #999;
  margin: 22px 20px 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

/* ─────────────────────────────────────────────────────────
   VIEW 1 — Lista de subcategorias (3 botões grandes)
   ───────────────────────────────────────────────────────── */

.subListMob {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.subItemMob {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 12px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  font-family: inherit;
}
.subItemMob:hover,
.subItemMob:active {
  background: #fef2f2;
  border-color: rgba(187, 6, 6, 0.2);
}

.subItemIconMob {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fef2f2;
  color: #BB0606;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.subItemTextMob {
  flex: 1;
  font-size: 0.96rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}

.subItemChevronMob {
  color: #c8c8c8;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.subItemMob:hover .subItemChevronMob {
  color: #BB0606;
  transform: translateX(2px);
}

/* ─────────────────────────────────────────────────────────
   VIEW 2 — Detalhe (lista de categorias dentro da subcategoria)
   ───────────────────────────────────────────────────────── */

.backBtnMob {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 16px 4px;
  padding: 6px 8px 6px 4px;
  background: transparent;
  border: none;
  color: #BB0606;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.backBtnMob:hover { background: #fef2f2; }
.backBtnMob i { font-size: 0.75rem; }

.detailTitleMob {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
  margin: 4px 20px 14px;
  letter-spacing: -0.2px;
}

.categoriesContainerMob {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.emptyHintMob {
  color: #999;
  font-size: 0.85rem;
  padding: 16px 12px;
  text-align: center;
  margin: 0;
}

/* ── Item de categoria ── */
.productLinkMob {
  display: block;
  text-decoration: none;
  color: inherit;
}

.productItemMob {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.18s ease;
}
.productItemMob:hover,
.productItemMob:active { background: #fef2f2; }

.productImageMob {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f5;
  flex-shrink: 0;
  border: 1px solid #ececec;
  transition: transform 0.2s ease;
}
.productItemMob:hover .productImageMob { transform: scale(1.04); }

.productNameMob {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productChevronMob {
  color: #c8c8c8;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   Suporte (na view raiz, abaixo das subcategorias)
   ───────────────────────────────────────────────────────── */

.suporteContainerMob {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.suporteItemMob {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.18s ease;
}
.suporteItemMob:hover,
.suporteItemMob:active { background: #f7f7f7; }

.suporteIconMob {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fef2f2;
  color: #BB0606;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.suporteIconMob--wpp { background: #ecfdf5; color: #16a34a; }

.suporteTextMob {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
}

.suporteChevronMob {
  color: #c8c8c8;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── Estados ── */
.errorContainerMob {
  padding: 24px 20px;
  text-align: center;
  color: #BB0606;
  font-size: 0.9rem;
}
.retryButtonMob {
  margin-top: 10px;
  padding: 9px 18px;
  background: #BB0606;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
}
.retryButtonMob:hover { background: #9a0505; }

.loadingOverlay {
  padding: 40px 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

/* Scrollbar discreta */
.mainViewMob::-webkit-scrollbar { width: 4px; }
.mainViewMob::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }

/* ── Compatibilidade com classes legadas (não usadas mas mantidas) ── */
.logoAnimationContainerMob, .subcategoryViewMob, .productsContainerMob,
.headerMob, .sectionTitleMobCateg, .chevronIconMob, .chevronLeftMob,
.categorySectionMob, .categoryHeaderMob, .categoryNameMob,
.tabsMob, .tabMob, .tabPanelMob, .seminovosSectionMob, .seminovosListMob { /* sem estilo */ }


/* === css/components/ProductPanel.css === */
/* ProductPanel.css */

/* ── Container — abre EXATAMENTE abaixo da navbar ────────────────────
   top usa --navbar-total-height atualizado por dynamic-positioning.js.
   ─────────────────────────────────────────────────────────────────── */
.panelContainer {
  --panel-side-gap: var(--nav-dropdown-gutter, clamp(12px, 2vw, 36px));
  position: fixed;
  top: var(--navbar-total-height, 160px);
  /* Centralizado e capado no mesmo max do conteúdo (1400px) — sem isso
     o fundo branco do container vazava até as bordas da tela em monitores
     largos, deixando "espaço em branco" ao lado do conteúdo. */
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: calc(100vw - (var(--panel-side-gap) * 2));
  max-width: 1400px;
  box-sizing: border-box;
  background: #ffffff;
  border-top: 3px solid #BB0606;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  z-index: 1900;
  display: none;
  flex-direction: column;
  max-height: calc(100vh - var(--navbar-total-height, 160px) - var(--panel-side-gap));
  overflow: hidden;
}

.panelContainer.show {
  display: flex;
}

/* Conteúdo interno centrado */
.panelContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  overflow: hidden;
}

/* ── Header (título + fechar) ── */
.panelHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  flex-shrink: 0;
}

.panelHeaderTitle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panelHeaderTitle i {
  color: #BB0606;
  font-size: 16px;
}

.panelHeaderTitle h2 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.2px;
}

/* ── Botão fechar ── */
.closeSection {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.closeSection:hover {
  background: #fef2f2;
  color: #BB0606;
  border-color: #BB0606;
}

/* ── Body scrollável ── */
.panelBody {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.panelBody::-webkit-scrollbar { width: 6px; }
.panelBody::-webkit-scrollbar-thumb {
  background: #e5e5e5;
  border-radius: 4px;
}
.panelBody::-webkit-scrollbar-thumb:hover { background: #c8c8c8; }

/* ── Grid de subcategorias ── */
.categoriesContainer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 28px;
  padding: 22px 28px 28px;
  align-content: flex-start;
}

.subcategorySection {
  padding: 0;
  margin: 0;
}

.subcategoryTitle {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #BB0606;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #BB0606;
  display: block;
}

/* ── Item de categoria ── */
.productItemLink {
  text-decoration: none;
  color: inherit;
  display: block;
}

.productItem {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  margin-bottom: 2px;
}

.productItem:hover {
  background: #fef2f2;
  transform: translateX(4px);
}

.productImage {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f5f5f5;
  transition: transform 0.2s ease;
}

.productItem:hover .productImage {
  transform: scale(1.04);
}

.productItem span {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.productItem:hover span { color: #BB0606; }

/* ── Loading ── */
.loadingContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 24px;
}

.loadingIcon { width: 36px; height: 36px; }

/* ── Erro ── */
.errorContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 24px;
  color: #BB0606;
  gap: 10px;
  font-size: 14px;
}

.errorContainer i { font-size: 32px; opacity: 0.7; }

.retryButton {
  padding: 10px 24px;
  background: #BB0606;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  transition: background 0.2s ease;
  margin-top: 6px;
}

.retryButton:hover { background: #9a0505; }

/* ── Responsividade ── */
@media (max-width: 1024px) {
  .categoriesContainer {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 20px;
  }
}

@media (max-width: 768px) {
  .panelHeader { padding: 14px 16px; }
  .panelHeaderTitle h2 { font-size: 15px; }
  .panelHeaderTitle i { font-size: 14px; }
  .categoriesContainer {
    padding: 16px;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 4px 14px;
  }
  .subcategoryTitle { font-size: 10px; }
  .productItem span { font-size: 12px; }
  .productImage { width: 36px; height: 36px; border-radius: 6px; }
}

@media (max-width: 480px) {
  .categoriesContainer {
    grid-template-columns: 1fr;
  }
  .closeSection span { display: none; }
  .closeSection { padding: 8px 10px; }
}


/* === css/pages/Home.css === */
/* Spacer fixo que reserva o espaço da navbar (banner+navbar).
   O JS sincroniza a altura conforme a navbar encolhe ao rolar.
   Independe de CSS var ou ordem de carregamento. */
.navbar-spacer {
  width: 100%;
  height: 160px;            /* desktop: 40 banner + 120 navbar */
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .navbar-spacer { height: 126px; }   /* mobile: 36 banner + 90 navbar */
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  overflow: hidden;
  min-height: 100vh;
  box-sizing: border-box;
  padding-bottom: 120px;
  /* padding-top NÃO é mais usado — o .navbar-spacer cuida do offset */
}
@media (max-width: 768px) {
  .home { gap: 64px; padding-bottom: 80px; }
}

/* Classe para ocultar elementos visivelmente, mas mantê-los no HTML para SEO */
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Carrossel */
.carousel-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
}

.home-seo-intro {
  width: min(1120px, calc(100% - 40px));
  margin: -36px auto 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(187, 6, 6, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(187, 6, 6, 0.06), rgba(255, 255, 255, 0.96) 42%),
    #fff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
  text-align: center;
  box-sizing: border-box;
}

.home-seo-intro__title {
  max-width: 820px;
  margin: 0 auto 14px;
  color: #111;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.4px;
}

.home-seo-intro p {
  max-width: 860px;
  margin: 0 auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.72;
}

.home-seo-intro p + p {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .home-seo-intro {
    width: calc(100% - 28px);
    margin-top: -24px;
    border-radius: 22px;
  }
}

/* Seção de produtos */
.product-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  z-index: 2;
}

/* Seção de destaques */
.highlight-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  gap: 32px;
}

/* Título antigo (mantido por compatibilidade) */
.title-home {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
  position: relative;
  padding-bottom: 0.6rem;
}
.title-home::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #BB0606;
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ── Novo cabeçalho de seção (eyebrow + título + subtítulo) ── */
.section-heading {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #BB0606;
  background: rgba(187, 6, 6, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0 0 0.85rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .section-eyebrow { font-size: 0.65rem; letter-spacing: 1.4px; }
  .section-subtitle { font-size: 0.9rem; }
}

/* Contêiner para os HighlightCards */
.highlight-container-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* Responsividade */
@media (max-width: 1024px) {
  .highlight-container-home {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .title-home {
    font-size: 1.2rem;
  }
  /* padding-top do .home agora é controlado pela CSS var no bloco principal */
}

@media (max-width: 600px) {
  .highlight-container-home {
    grid-template-columns: 1fr;
  }
}

/* Estilos para o overlay de loading */
.home-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Fundo branco semi-transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Garante que fique acima de tudo */
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #BB0606; /* Cor do spinner */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.seo-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* === css/pages/QuemSomos.css === */
/* QuemSomos.css — bloco "Sobre a Reda" modernizado */

.quem-somos-section {
  width: 100%;
  background: linear-gradient(135deg, #BB0606 0%, #8b0404 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Padrão sutil (linhas diagonais) no fundo */
.quem-somos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15) 0, transparent 50%);
  pointer-events: none;
}

.quem-somos-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}

/* ── Texto (lado esquerdo) ── */
.quem-somos-texto { color: #fff; }

.quem-somos-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.quem-somos-titulo {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  letter-spacing: -0.5px;
}
.quem-somos-titulo em {
  font-style: normal;
  background: linear-gradient(120deg, #fff, #ffd9d9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quem-somos-paragrafo {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 2rem;
  max-width: 95%;
}

/* ── Estatísticas (inline, sem cards) ── */
.quem-somos-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.quem-somos-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.quem-somos-stats strong {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}
.quem-somos-stats span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
}

/* ── CTA ── */
.quem-somos-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #BB0606;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.quem-somos-cta:hover {
  transform: translateY(-2px);
  gap: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* ── Imagem (lado direito) ── */
.quem-somos-imagem {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.quem-somos-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quem-somos-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(187,6,6,0.35) 100%);
  pointer-events: none;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .quem-somos-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.25rem;
  }
  .quem-somos-imagem { height: 320px; border-radius: 14px; }
  .quem-somos-stats { gap: 1.75rem; }
  .quem-somos-stats strong { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .quem-somos-stats {
    gap: 1.25rem;
    justify-content: space-between;
  }
  .quem-somos-stats strong { font-size: 1.3rem; }
  .quem-somos-stats span { font-size: 0.7rem; }
  .quem-somos-paragrafo { font-size: 0.95rem; }
}


/* === css/components/BannerCarousel.css === */
/* BannerCarousel.css */

/* ── Container ── */
.container {
    width: 100%;
    background-color: #f4f4f6;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* ── Wrapper ── */
.bannerWrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 580px;
    margin: 0 auto;
    overflow: hidden;
    background: #111;
}

/* ── Vídeo ── */
.video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* ── Overlay de texto ── */
.textOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 52%;
    height: 100%;
    padding: 0 3rem 0 4rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

/* Gradiente branco para garantir legibilidade sobre o vídeo */
.textOverlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.97) 0%,
        rgba(255, 255, 255, 0.88) 55%,
        rgba(255, 255, 255, 0.0) 100%
    );
    z-index: -1;
    pointer-events: none;
}

/* ── Eyebrow ── */
.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #BB0606;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

/* ── Título ── */
.title {
    font-size: 2.6rem;
    color: #111;
    margin: 0 0 1rem;
    line-height: 1.15;
    font-weight: 800;
    font-family: 'Roboto', Arial, sans-serif;
}

.title em {
    color: #BB0606;
    font-style: normal;
}

/* ── Subtítulo ── */
.subtitle {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1.4rem;
    line-height: 1.55;
    max-width: 90%;
}

/* ── Tags / Selos ── */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.75rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(187, 6, 6, 0.07);
    color: #BB0606;
    border: 1px solid rgba(187, 6, 6, 0.2);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.hero-tag i {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* ── CTAs ── */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    font-family: 'Roboto', Arial, sans-serif;
}

.btn-hero-primary {
    background-color: #BB0606;
    color: #fff;
    border: 2px solid #BB0606;
}

.btn-hero-primary:hover {
    background-color: #9a0505;
    border-color: #9a0505;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(187, 6, 6, 0.35);
}

.btn-hero-outline {
    background-color: transparent;
    color: #BB0606;
    border: 2px solid #BB0606;
}

.btn-hero-outline:hover {
    background-color: #BB0606;
    color: #fff;
    transform: translateY(-2px);
}

/* Alias para compatibilidade com código antigo */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.75rem;
    background-color: #BB0606;
    border: 2px solid #BB0606;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #9a0505;
    border-color: #9a0505;
    transform: translateY(-2px);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
    .textOverlay {
        width: 60%;
        padding: 0 2rem 0 3rem;
    }

    .title { font-size: 2.1rem; }
}

/* ── Mobile: vídeo em proporção natural + texto sobreposto 20% no final ── */
@media (max-width: 768px) {
    .container { background: transparent; padding: 0; }   /* remove background cinza que vazava nas bordas */

    .bannerWrapper {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        background: transparent;       /* SEM branco — eliminava bordas */
        overflow: visible;
        position: relative;
        margin: 0;
        padding: 0;
        max-width: none;
    }

    /* Vídeo: 100% width, altura natural — SEM letterboxes
       Sem object-fit, sem max-height, sem background. */
    .video {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        border: 0;
        background: transparent;
    }

    /* Texto sobe BASTANTE — cobre ~40% do vídeo para a descrição inteira
       (eyebrow + título + texto + tags + CTAs) já aparecer na primeira dobra
       da viewport mobile, sem precisar rolar. */
    .textOverlay {
        position: relative;
        z-index: 2;
        width: 100%;
        height: auto;
        margin-top: -55vw;             /* sobe bem mais — descrição inteira no topo */
        padding: 2.5rem 1.25rem 2rem;
        background: #fff;
        border-top-left-radius: 26px;
        border-top-right-radius: 26px;
        box-shadow: 0 -14px 32px rgba(0, 0, 0, 0.12);
        gap: 0;
    }

    /* Remove o gradient — não é mais necessário pois texto está em fundo branco */
    .textOverlay::before { display: none; }

    .hero-eyebrow { font-size: 0.65rem; margin-bottom: 0.6rem; }

    .title {
        font-size: 1.55rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .hero-tags {
        gap: 6px;
        margin-bottom: 1.1rem;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 4px 9px;
    }

    .hero-actions { gap: 8px; }

    .btn-hero {
        padding: 0.65rem 1.25rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    /* mantém height: auto — vídeo cresce/encolhe na proporção natural */
    .title { font-size: 1.35rem; }
    .hero-tags { gap: 4px; }
    .hero-tag { padding: 3px 7px; font-size: 0.6rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-hero { width: 100%; justify-content: center; }
}


/* === css/components/ValuePropositions.css === */
/* ValuePropositions.css — 4 pilares, sem cards, com linha conectora */

.value-prop-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
}

/* Linha decorativa fina, percorre o centro vertical dos itens */
.value-prop-rail {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    #ececec 12%,
    #BB0606 50%,
    #ececec 88%,
    transparent 100%);
  transform: translateY(-22px);
  pointer-events: none;
  z-index: 0;
}

.value-prop-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.value-prop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

/* ── Ícone em círculo "ghost" — sem fundo de card, só anel ── */
.value-prop-iconwrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #BB0606;
  color: #BB0606;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 14px rgba(187, 6, 6, 0.12);
}

.value-prop-item:hover .value-prop-iconwrap {
  background: #BB0606;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(187, 6, 6, 0.28);
}

/* ── Destaque verde no card de sustentabilidade ── */
.value-prop-item--eco .value-prop-iconwrap {
  border-color: #16a34a;
  color: #16a34a;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.18);
  background:
    radial-gradient(circle at 50% 50%, #fff 60%, #ecfdf5 100%);
}
.value-prop-item--eco:hover .value-prop-iconwrap {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.28);
}

/* Selo "Eco" sobre o ícone */
.value-prop-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #16a34a;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 2px solid #fff;
  line-height: 1;
}

/* ── Título e descrição ── */
.value-prop-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.4rem;
  letter-spacing: -0.2px;
}

.value-prop-item--eco .value-prop-title {
  color: #166534;
}

.value-prop-desc {
  font-size: 0.88rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* ── Responsividade ── */
@media (max-width: 900px) {
  .value-prop-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .value-prop-rail { display: none; }
}

@media (max-width: 480px) {
  .value-prop-section { padding: 2rem 1.25rem; }
  .value-prop-list { grid-template-columns: 1fr; gap: 1.75rem; }
  .value-prop-iconwrap { width: 56px; height: 56px; font-size: 1.3rem; }
  .value-prop-title { font-size: 1rem; }
  .value-prop-desc { font-size: 0.85rem; }
}


/* === css/components/ProductCarousel.css === */
/* ProductCarousel.css — Ramos de Atuação (carrossel mobile/tablet) */

.carouselContainer {
  width: 100%;
  position: relative;
  padding: 0 0 56px;
  overflow: visible;
}

.swiper.productCarousel {
  width: 100%;
  padding: 12px 8px 48px;       /* lateral 8px = quase encostado nas bordas */
  overflow: hidden;
}

.swiper-slide {
  display: flex;
  align-items: stretch;
  height: auto;
  box-sizing: border-box;
}

.cardWrapper {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: stretch;
}

/* ─────────────────────────────────────────────────────────
   CARD RICO (badge + título + descrição + CTA)
   ───────────────────────────────────────────────────────── */
.pc-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(187, 6, 6, 0.18);
}

/* Imagem */
.pc-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f7f7f7, #efefef);
  overflow: hidden;
  flex-shrink: 0;
}
.pc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pc-card:hover .pc-card-image img { transform: scale(1.05); }

/* Body */
.pc-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 22px;
  flex: 1;
}

.pc-card-badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(187, 6, 6, 0.08);
  color: #BB0606;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.pc-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-card-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.pc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 18px;
  background: #BB0606;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  align-self: flex-start;
  transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease, box-shadow 0.2s ease;
}
.pc-card-cta:hover {
  background: #9a0505;
  transform: translateY(-2px);
  gap: 12px;
  box-shadow: 0 8px 18px rgba(187, 6, 6, 0.32);
}
.pc-card-cta i { font-size: 0.75rem; }

/* ── Setas custom ── */
.customPrevButton,
.customNextButton {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  font-size: 17px;
  background-color: #fff;
  border-radius: 50%;
  color: #BB0606;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #ececec;
  user-select: none;
}
.customPrevButton { left: 4px; }
.customNextButton { right: 4px; }
.customPrevButton:hover,
.customNextButton:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 22px rgba(187, 6, 6, 0.28);
}
.swiper-button-disabled { opacity: 0.35; cursor: not-allowed; }
.swiper-button-disabled:hover {
  transform: translateY(-50%) scale(1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* ── Paginação ── */
.swiper-pagination {
  position: absolute;
  bottom: 8px !important;
  text-align: center;
  width: 100%;
  z-index: 10;
}
.swiper-pagination-bullet {
  width: 9px !important;
  height: 9px !important;
  background: #d0d0d0 !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  transition: width 0.28s ease, background 0.28s ease;
  border-radius: 999px !important;
}
.swiper-pagination-bullet-active {
  width: 28px !important;
  background: #BB0606 !important;
}

/* ── Tablet ≥600px ── */
@media (min-width: 600px) {
  .swiper.productCarousel { padding: 14px 12px 50px; }
  .pc-card-image { height: 240px; }
}

/* ── Desktop pequeno ≥900px ── */
@media (min-width: 900px) {
  .swiper.productCarousel { padding: 16px 16px 54px; }
}

/* ── Mobile pequeno ≤480px ── */
@media (max-width: 480px) {
  .swiper.productCarousel { padding: 10px 4px 44px; }
  .pc-card-image { height: 200px; }
  .pc-card-body { padding: 16px 16px 20px; gap: 6px; }
  .pc-card-title { font-size: 1.05rem; }
  .pc-card-desc { font-size: 0.85rem; -webkit-line-clamp: 2; }
  .pc-card-cta { padding: 9px 16px; font-size: 0.78rem; }
  .customPrevButton, .customNextButton { width: 38px; height: 38px; font-size: 15px; }
}


/* === css/components/ProductCard.css === */
/* ProductCard.css — Ramos de Atuação
   Layout: 3 colunas no desktop; primeiro card (destaque) ocupa 2 colunas. */

/* ── Grid Container ── */
.product-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* ── Card base ── */
.product-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ── Card Destaque (primeiro item — ocupa 2 colunas) ── */
.product-card--featured {
    grid-column: 1 / 3;
    flex-direction: row;
    min-height: 360px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ── Imagem ── */
.product-image {
    width: 100%;
    padding-top: 62%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.product-card--featured .product-image {
    width: 52%;
    padding-top: 0;
    flex-shrink: 0;
    min-height: 360px;
}

.product-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: translate(-50%, -50%) scale(1.05);
}

/* ── Detalhes ── */
.product-details {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.product-card--featured .product-details {
    padding: 2rem 2rem 2rem 1.75rem;
    justify-content: center;
    gap: 0.9rem;
}

/* ── Badge de subtítulo ── */
.product-category-badge {
    display: inline-block;
    background: rgba(187, 6, 6, 0.08);
    color: #BB0606;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    width: fit-content;
}

/* ── Título ── */
.product-title-card {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    margin: 0;
}

.product-card--featured .product-title-card {
    font-size: 1.6rem;
    line-height: 1.25;
    color: #111111;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-bottom: 0.25rem;
}

/* ── Descrição (em todos os cards) ── */
.product-description {
    font-size: 0.84rem;
    color: #777;
    line-height: 1.55;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin: 0;
}

.product-card--featured .product-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

/* ── Botão / CTA ── */
.product-button {
    background-color: #BB0606;
    color: #fff;
    border: none;
    padding: 0.55rem 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-top: auto;
    width: fit-content;
    font-family: inherit;
}

.product-button span { display: inline; }

.product-button:hover {
    background-color: #9a0505;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(187, 6, 6, 0.3);
}

.product-card--featured .product-button {
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.chevron-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ── Estado vazio ── */
.pc-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
}

/* ── Responsividade ── */
@media (max-width: 1024px) {
    .product-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-card--featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .product-card-container {
        grid-template-columns: 1fr;
        padding: 0 0.75rem 1.5rem;
        gap: 16px;
    }
    .product-card--featured {
        flex-direction: column;
        grid-column: 1;
        min-height: unset;
    }
    .product-card--featured .product-image {
        width: 100%;
        padding-top: 56%;
        min-height: unset;
    }
    .product-card--featured .product-details {
        padding: 1.25rem;
    }
    .product-card--featured .product-title-card {
        font-size: 1.3rem;
    }
    .product-card--featured .product-description {
        font-size: 0.9rem;
    }
}


/* === css/components/HighlightCard.css === */
/* HighlightCard.css */

/* ── Card base — visual moderno, sombra suave, hover elegante ── */
.highlightCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.highlightCard:hover {
  transform: translateY(-6px);
  border-color: rgba(187, 6, 6, 0.18);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 22px 44px -12px rgba(187, 6, 6, 0.18);
}

/* ── Imagem com proporção responsiva ── */
.highlightImage {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, #f7f7f7, #efefef);
  padding-top: 100%; /* quadrado — combina com imagens 1:1 sem cortar */
  flex-shrink: 0;
}

.highlightImage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* mostra a imagem inteira; sobra vai pro fundo */
  padding: 10px;          /* respiro leve dentro do quadrado */
  box-sizing: border-box;
  transition: transform 0.45s ease;
  border-radius: 0;
  display: block;
}

.highlightCard:hover .highlightImage img {
  transform: scale(1.05);
}

/* ── Tags de condição ── */
.highlightTags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  pointer-events: none;
}

.highlightTags > div:first-child {
  pointer-events: auto;
}

.tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.new     { background-color: #BB0606; }
.premium { background-color: #b8860b; }
.eco     { background-color: #555; }

/* ── Ícones de variação ── */
.iconContainer {
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: auto;
}

.tooltipContainer {
  position: relative;
  display: inline-block;
  cursor: default;
}

.variationIcon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 3px;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.tooltip {
  visibility: hidden;
  width: 150px;
  background-color: #111;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1.4;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  white-space: normal;
  z-index: 1000;
}

.tooltipContainer:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

/* ── Detalhes ── */
.highlightDetails {
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

/* ── Título ── */
.highlightTitle {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.35;
  min-height: 38px;
}

/* ── Descrição ── */
.highlightDescription {
  font-size: 12px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.5;
  margin: 0 0 8px;
  flex-grow: 1;
}

/* ── Variações ── */
.variationsContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 26px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.variationItem {
  display: inline-block;
  background-color: #fff;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.variationItem:hover {
  border-color: #BB0606;
  background-color: #fff5f5;
}

.variationItem.selected {
  border-color: #BB0606;
  background-color: #fff5f5;
  color: #BB0606;
}

.placeholder {
  height: 26px;
  flex-shrink: 0;
}

/* ── Botão Ver Produto ── */
.highlightButton {
  background: none;
  color: #BB0606;
  border: none;
  padding: 5px 0 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.2s ease, gap 0.2s ease;
  align-self: flex-start;
  flex-shrink: 0;
}

.highlightButton:hover {
  color: #9a0505;
  gap: 7px;
}

.buttonIcon {
  font-size: 14px;
  line-height: 1;
}

/* ── Responsividade ── */
@media (max-width: 768px) {
  .highlightCard {
    border-radius: 12px;
  }

  .highlightImage {
    padding-top: 100%;
    border-radius: 12px 12px 0 0;
  }

  .highlightDetails {
    padding: 12px 12px 8px;
  }

  .highlightTitle {
    font-size: 13px;
    min-height: 35px;
  }

  .highlightDescription {
    font-size: 12px;
  }

  .tag {
    font-size: 9px;
    padding: 2px 6px;
  }

  .variationIcon {
    width: 20px;
    height: 20px;
  }

  .highlightButton {
    font-size: 11px;
  }
}

