:root {
    --color-primary: #0077c8;
    --color-primary-dark: #005c99;
    --color-accent: #00b894;
    --color-gradient-start: #00c6ff;
    --color-gradient-end: #0072ff;
    --color-text: #1f2a37;
    --color-muted: #5f6b7a;
    --color-border: rgba(15, 23, 42, 0.08);
    --color-shadow: rgba(15, 23, 42, 0.08);
}

/* -----------------------------------------------------------
   Resets e tipografia base
----------------------------------------------------------- */
body,
.site-body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f3f6fb;
    color: var(--color-text);
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    color: #111827;
    font-weight: 600;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
    font-size: 2rem;
    line-height: 1.2;
}

p {
    color: #1f2933;
    line-height: 1.7;
    margin-bottom: 1rem;
}

li {
    line-height: 1.6;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-primary-dark);
}

/* -----------------------------------------------------------
   Layout geral
----------------------------------------------------------- */
.site-body {
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 12px var(--color-shadow);
    background: #fff;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.site-header .navbar {
    box-shadow: none;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.site-header .navbar-brand {
    flex-shrink: 0;
}

.site-main {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.site-main-wide {
    max-width: 1280px;
}

.site-main .card {
    border-radius: 1rem;
    border: 1px solid var(--color-border);
}

.content-narrow {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* -----------------------------------------------------------
   Navbar e footer
----------------------------------------------------------- */
.navbar-brand img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 1.15rem;
    color: #093d9d;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navbar-glass {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar-glass .navbar-nav .nav-link {
    color: #093d9d;
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-glass .navbar-nav .nav-link:hover {
    color: #0f4fd8;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    font-weight: 600;
    color: #0f4fd8;
}

.navbar-nav {
    gap: 20px;
}

.cart-badge {
    background: #ef4444;
    color: #fff;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 6px;
    line-height: 1.2;
}

.header-search {
    position: relative;
    flex: 1 1 320px;
    max-width: 420px;
    min-width: 260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-search input {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 0.5rem 1rem 0.5rem 2.75rem;
    font-size: 0.95rem;
    height: 42px;
    color: #0f172a;
}

.header-search input::placeholder {
    color: rgba(15, 23, 42, 0.55);
}

.header-search input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 71, 217, 0.18), 0 12px 34px rgba(15, 23, 42, 0.08);
}

.header-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #0f4fd8;
    font-size: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.header-search-btn {
    border: none;
    background: linear-gradient(135deg, #0f4fd8, #0095ff);
    color: #fff;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    margin-left: -58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(15, 79, 216, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header-search-btn:hover,
.header-search-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(15, 79, 216, 0.45);
    color: #fff;
}

.header-search-clear {
    border: none;
    background: transparent;
    color: #6b7280;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -48px;
    transition: background 0.15s ease, color 0.15s ease;
}

.header-search-clear:hover,
.header-search-clear:focus {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

@media (max-width: 992px) {
    .header-search {
        order: 3;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        margin: 0 0 0.5rem;
    }

    .navbar .navbar-brand {
        order: 1;
    }

    .navbar .navbar-toggler {
        order: 2;
    }

    .navbar #mainNav {
        order: 4;
        width: 100%;
    }
}

@media (max-width: 960px) {
    .site-header .header-inner {
        flex-wrap: wrap;
        row-gap: 12px;
    }

    .site-header .header-search {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .site-header .navbar-brand {
        order: 1;
    }

    .site-header .main-nav {
        order: 2;
    }
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0f4fd8;
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.85rem;
}

.site-footer p {
    color: inherit;
}

/* -----------------------------------------------------------
   Cards de produto
----------------------------------------------------------- */
.products-page {
    margin-top: 0.5rem;
}

.products-header .products-count {
    text-align: right;
}

.products-sidebar {
    border-radius: 1.25rem;
    border: 1px solid var(--color-border);
}

.products-category-list li + li {
    margin-top: 0.35rem;
}

.products-category-link {
    display: block;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #374151;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.products-category-link:hover,
.products-category-link:focus {
    background: rgba(37, 99, 235, 0.08);
    padding-left: 0.75rem;
    color: #1d4ed8;
    text-decoration: none;
}

.products-category-link.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-weight: 600;
    padding-left: 0.75rem;
}

.products-filters-form .products-toolbar {
    background: #ffffff;
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.products-filter-toggle {
    border-radius: 999px;
}

/* NOVO layout de filtros */
.filters-shell {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.filters-inline {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.8fr) auto;
    gap: 12px;
    align-items: end;
}

.filters-inline .form-label {
    color: #6b7280;
    font-weight: 500;
}

.filters-inline .form-control,
.filters-inline .form-select {
    height: 44px;
    border-radius: 12px;
}

.filters-search .input-icon {
    position: relative;
}

.filters-search .input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

.filters-search input {
    padding-left: 40px;
}

.filters-actions {
    white-space: nowrap;
}

.filters-actions .btn {
    min-width: 96px;
    height: 44px;
    border-radius: 12px;
    font-weight: 600;
}

.filters-actions .btn.btn-light {
    background: #f8fafc;
    border-color: rgba(148, 163, 184, 0.5);
}

.filters-actions .btn.btn-light:hover,
.filters-actions .btn.btn-light:focus {
    background: #eef2f7;
}

@media (max-width: 992px) {
    .filters-inline {
        grid-template-columns: 1fr;
    }
    .filters-actions {
        justify-content: flex-start !important;
    }
    .filters-actions .btn {
        flex: 1;
    }
}

.product-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    padding: 18px 16px 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 360px; /* mais alto para acomodar imagens verticais */
    border: 1px solid rgba(148, 163, 184, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.product-card-image {
    height: 340px; /* mais altura para cabos e produtos verticais */
    padding: 14px 10px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

.product-card-image img {
    max-width: 80%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 8.4rem;
}

.product-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: #111827;
    line-height: 1.35;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* limita a 3 linhas para manter botoes alinhados */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.8em; /* reserva espaco para ate 3 linhas */
}

.product-card-description {
    font-size: 0.85rem;
    color: #5b6479;
    margin: 0 0 6px;
    min-height: 2.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-card-options {
    min-height: 1.2em;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.product-card-price {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 1rem; /* respiro entre preco e botao */
    min-height: 3.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-card-price .text-decoration-line-through {
    display: inline-block;
}

.product-card-actions {
    display: block;
}

.product-card-actions .btn {
    width: 100%;
}

.product-card-cta {
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

/* Botão principal "Adicionar" nos cards */
.product-card-add-btn {
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Links de imagem e título levando para detalhes */
.product-card-title a,
.product-card-image-link {
    color: inherit;
    text-decoration: none;
}

.product-card-title a:hover,
.product-card-title a:focus,
.product-card-image-link:hover,
.product-card-image-link:focus {
    text-decoration: underline;
}

/* Botão fantasma "Ver detalhes" na vitrine */
.product-card-actions .btn-outline-primary {
    background: transparent;
    border-color: #dbeafe;
    color: #2563eb;
}

.product-card-actions .btn-outline-primary:hover,
.product-card-actions .btn-outline-primary:focus {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0f4fd8;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(15, 79, 216, 0.25);
}
.product-badge-sale {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25);
}

/* Container da seção na home */
.home-section-products {
  margin-top: 60px;
  margin-bottom: 80px;
}

.home-products-header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.home-products-header p {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #5b6479;
  max-width: 720px;
}

/* Grid genérico da página "Todos os produtos" */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Carrossel da home */
.home-products-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-products-track {
  overflow: hidden;
  width: 100%;
}

.home-products-track-inner {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
  align-items: stretch;
}

.home-products-track-inner > .product-card {
  flex: 0 0 calc(100% / 4 - 12px);
}

@media (max-width: 992px) {
  .home-products-track-inner > .product-card {
    flex-basis: calc(100% / 2 - 10px);
  }
}

@media (max-width: 576px) {
  .home-products-track-inner > .product-card {
    flex-basis: 100%;
  }
}

/* As setas já existem, apenas garanta estilo mínimo */
.carousel-arrow {
  border: none;
  background: #0f4fd8;
  color: #ffffff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(15, 79, 216, 0.35);
  cursor: pointer;
  margin: 0 8px;
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

/* -----------------------------------------------------------
   Pagina de detalhes do produto
----------------------------------------------------------- */
.product-detail {
    align-items: flex-start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-gallery-main img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    object-fit: contain;
    background: #ffffff;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
}

.product-gallery-thumb {
    border: 2px solid transparent;
    padding: 0;
    border-radius: 0.75rem;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.product-gallery-thumb img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.6rem;
}

.product-gallery-thumb.active {
    border-color: #2563eb;
}

.product-detail-price {
    font-size: 2rem;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.product-detail-features {
    padding-left: 1.1rem;
    margin-bottom: 1rem;
}

.product-detail-features li {
    margin-bottom: 0.25rem;
}

.product-detail-stars i {
    font-size: 0.9rem;
    color: #fbbf24;
}

.product-detail-trust i {
    font-size: 1.1rem;
}
/* -----------------------------------------------------------
   Tabelas e carrinho
----------------------------------------------------------- */
.cart-page {
    margin-top: 0.5rem;
}

#cart-update-form .cart-table-wrapper {
    margin-bottom: -0.25rem;
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: #f9fafb;
    overflow: hidden;
}

.cart-qty-input {
    width: 48px;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.cart-qty-input:focus {
    outline: none;
    box-shadow: none;
}

/* Remove setas nativas do input number nas quantidades do carrinho */
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input {
    -moz-appearance: textfield;
}

.cart-clear-btn {
    font-size: 0.85rem;
    border-color: #e5e7eb;
    color: #6b7280;
    background-color: #ffffff;
}

.cart-clear-btn:hover,
.cart-clear-btn:focus {
    border-color: #e5e7eb;
    background-color: #f9fafb;
    color: #ef4444;
}

.cart-clear-link {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

.cart-clear-link:hover,
.cart-clear-link:focus {
    color: #ef4444;
    text-decoration: underline;
}

/* Remove setas nativas do input number nas quantidades do carrinho */
.cart-qty-input::-webkit-inner-spin-button,
.cart-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input {
    -moz-appearance: textfield;
}
    padding: 0.25rem 0.5rem;
}

#cart-update-form .cart-qty-input:focus {
    outline: none;
    box-shadow: none;
}

.cart-qty-btn {
    border: none;
    background: transparent;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    color: #4b5563;
}

.cart-qty-plus {
    color: #0f4fd8;
}

.cart-page .table thead th:last-child,
.cart-page .table tbody td:last-child {
    width: 40px;
}

#cart-update-form .table {
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

#cart-update-form thead th {
    border-bottom: 2px solid var(--color-border);
    color: #1f2937;
    font-weight: 600;
}

#cart-update-form tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.015);
}

#cart-update-form tbody td {
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    vertical-align: middle;
}

#cart-update-form input[type="number"] {
    width: 80px;
    margin: 0 auto;
    text-align: center;
}

.cart-total-box {
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
    background: #fff;
}

.cart-total-box .card-body {
    gap: 1rem;
}

.cart-summary-trust i {
    font-size: 1rem;
}

/* -----------------------------------------------------------
   Botoes especiais (CTA, WhatsApp, FAB)
----------------------------------------------------------- */
.btn-cta {
    background: linear-gradient(135deg, #2563eb, #0077c8);
    color: #fff;
    border: none;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 118, 200, 0.35);
    padding: 0.65rem 1.9rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover,
.btn-cta:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(0, 118, 200, 0.45);
}

/* CTA no resumo do carrinho: menos largo (apenas botões azuis padrão) */
.cart-summary-box .btn-cta {
    max-width: 260px;
    width: 100%;
    align-self: center;
    font-size: 0.95rem;
}

/* Versão especial do botão WhatsApp no carrinho */
.btn-cart-whatsapp {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: none;
    font-weight: 600;
    border-radius: 14px;
    padding: 0.55rem 1.5rem;
}

.btn-cart-whatsapp:hover,
.btn-cart-whatsapp:focus {
    background: linear-gradient(135deg, #15803d, #16a34a);
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}

.btn-whatsapp {
    background: #25d366;
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 0.65rem 1.8rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    color: #fff;
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #25d366;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    z-index: 1050;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    color: #25d366;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp__icon {
    display: block;
}

.cart-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 5.5rem;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #0f4fd8;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(15, 79, 216, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    z-index: 1090;
}

.cart-fab:hover,
.cart-fab:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(15, 79, 216, 0.4);
    filter: brightness(1.05);
}

.cart-fab-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    margin-left: 0;
    padding: 2px 6px;
    font-size: 0.7rem;
    line-height: 1;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 56px;
    height: 56px;
    padding: 0;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.4);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, width 0.2s ease, padding 0.2s ease, gap 0.2s ease;
    z-index: 1100;
}

.whatsapp-fab span {
    min-width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.2s ease, opacity 0.2s ease;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(37, 211, 102, 0.45);
    filter: brightness(1.05);
    width: auto;
    padding: 0 1.35rem 0 1.1rem;
    gap: 0.5rem;
}

.whatsapp-fab:hover span,
.whatsapp-fab:focus span {
    max-width: 9rem;
    opacity: 1;
}

@media (max-width: 576px) {
    .cart-fab {
        right: 1rem;
        bottom: 5.1rem;
        width: 50px;
        height: 50px;
    }
}

/* -----------------------------------------------------------
   Hero
----------------------------------------------------------- */
.hero-piscina {
    background: linear-gradient(135deg, #009dff, #00d2ff);
    color: #f7faff;
    border-radius: 1rem;
    padding: 2.25rem 2.25rem 2.1rem;
    box-shadow: 0 20px 40px rgba(0, 114, 255, 0.25);
}

.hero-piscina h1,
.hero-piscina p {
    color: inherit;
}

.hero-piscina h1 {
    line-height: 1.1;
    font-size: 1.9rem;
}

@media (min-width: 992px) {
    .hero-piscina h1 {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .hero-piscina h1 {
        font-size: 1.75rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-content {
    max-width: 580px;
}

.hero-lead {
    margin-bottom: 1.35rem;
}

.hero-text-narrow {
    max-width: 520px;
}

.hero-title-line {
    display: block;
}

@media (min-width: 992px) {
    .hero-content {
        margin-left: 0.75rem;
    }
}

.hero-cta-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    opacity: 0.9;
    color: #e5f2ff;
}

.hero-inner {
    text-align: left;
    max-width: 620px;
}

/* -----------------------------------------------------------
   Secoes de texto
----------------------------------------------------------- */
.section {
    margin-bottom: 2.5rem;
}

.section:last-of-type {
    margin-bottom: 0;
}

/* Maior respiro entre os cards e o CTA na pagina Sobre */
.about-panel > section.section:last-of-type {
    margin-bottom: 2.25rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: #111827;
}

.section-content {
    font-size: 1rem;
    line-height: 1.75;
    color: #1f2933;
}

.list-clean {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.list-clean li {
    margin-bottom: 0.65rem;
    padding-left: 1.25rem;
    position: relative;
}

.list-clean li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1;
}

.about-block {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.04);
    margin-bottom: 1.5rem;
}

/* -----------------------------------------------------------
   Pagina de contato
----------------------------------------------------------- */
.contact-page {
    align-items: stretch;
}

.contact-page .contact-header {
    max-width: 720px;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .contact-column-left,
.contact-page .contact-column-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page .contact-card {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 30px var(--color-shadow);
}

.contact-page .contact-intro {
    font-size: 0.98rem;
    color: var(--color-muted);
    max-width: 32rem;
}

.contact-page .contact-info-card .card-body {
    padding: 1.4rem 1.6rem;
}

.contact-page .contact-hours {
    background: #f9fafb;
    border-radius: 0.9rem;
    padding: 0.75rem 1rem;
}

.contact-page .contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.contact-page .contact-main .form-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-page .contact-main .form-control {
    border-radius: 0.75rem;
}

.contact-page .contact-map-block {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 0.85rem 0.95rem 0.9rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.contact-page .contact-map {
    background: #e5f0ff;
}

@media (max-width: 992px) {
    .contact-page {
        padding-top: 0.5rem;
    }

    .contact-page .contact-card {
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

    .contact-page .contact-header {
        margin-bottom: 1.5rem;
    }

    .contact-page .contact-hours {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-page .contact-whatsapp-btn {
        width: 100%;
    }
}

.how-it-works-section {
  margin-top: 5rem;
  padding: 2.75rem 2rem 3.25rem;
  background: #f7f9fb;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.how-it-works-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #2E3A59;
}

.how-it-works-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-it-works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.how-it-works-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.how-it-works-step-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #1e4ec6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}

.how-it-works-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0f4fd8;
  background: rgba(37, 99, 235, 0.12);
  border-radius: 12px;
}

.how-it-works-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.how-it-works-card p {
  font-size: 0.85rem;
  margin: 0;
  color: #4b5563;
}

.how-it-works-cta .btn {
  border-radius: 999px;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.reviews-section {
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.reviews-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: #2e3a59;
}

.reviews-header p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.reviews-link {
  font-weight: 600;
  text-decoration: none;
  color: #0f4fd8;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.review-card {
  background: #f7f9fb;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.review-card-name {
  font-weight: 600;
  color: #1f2937;
}

.review-card-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  white-space: nowrap;
}

.review-card p {
  margin: 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}

.review-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: auto;
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 2rem 1.2rem;
  }

  .reviews-header {
    align-items: flex-start;
  }

  .review-card {
    padding: 0.9rem 1rem;
  }
}

/* -----------------------------------------------------------
   Pagina Sobre
----------------------------------------------------------- */
.about-wrapper {
    background: radial-gradient(circle at top, rgba(14, 165, 233, 0.18), #f3f6fb 55%, #f3f6fb 100%);
    padding: 2rem 1rem 3rem;
}

.about-panel {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    padding: 3rem 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.page-about-hero {
    margin-bottom: 2.5rem;
}

.page-about-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    color: #0f4c75;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-about-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.about-intro {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #46515f;
    text-align: center;
}

.section-header {
    margin-bottom: 1.75rem;
}

.section-subtitle {
    color: #4b5563;
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    gap: 1.25rem;
}

.about-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    color: #0f172a;
}

.about-card p {
    margin-bottom: 0;
    color: #4b5563;
}

.about-card.compact {
    padding: 1.35rem 1.5rem;
}

.about-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2ff, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}


.flow-section {
  background: #F6F9FC;
  padding: 60px 0;
  margin-top: 40px;
  border-radius: 12px;
}

.flow-section h2 {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  color: #2E3A59;
}

.flow-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.flow-cards .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  border: none;
}

.flow-cards .card img,
.flow-cards .card i {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0f4fd8;
}

.flow-cards .card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.flow-cards .card p {
  color: #4A5568;
  font-size: 15px;
  margin-bottom: 0;
}

.about-icon i {
    font-size: 1.3rem;
    color: #0f4fd8;
}

.about-btn-whatsapp {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    padding: 0.65rem 2rem;
}

/* -----------------------------------------------------------
   Produtos mais procurados - Home
----------------------------------------------------------- */
.home-featured-section {
    margin-top: 2.5rem;
}

.home-featured-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.home-featured-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.home-featured-sub {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 0;
    margin-bottom: 1.25rem;
}

.home-featured-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-featured-card-top {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
}

.home-featured-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-featured-thumb-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e0f2ff, #bfdbfe);
}

.home-featured-content {
    flex: 1;
}

.home-featured-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.home-featured-card-price {
    font-weight: 600;
    color: #0f4fd8;
    margin-bottom: 0.1rem;
}

.home-featured-card-bottom {
    margin-top: 0.75rem;
}

.home-featured-grid {
    margin-top: 0.75rem;
}

/* -----------------------------------------------------------
   Passos do pedido
----------------------------------------------------------- */
.step-card {
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e0f2ff, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.step-icon i {
    font-size: 1.3rem;
    color: #0f4fd8;
}

.step-card h6 {
    font-weight: 600;
}

/* -----------------------------------------------------------
   Hover animado no menu
----------------------------------------------------------- */
.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0f4fd8;
    transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* -----------------------------------------------------------
   Hero CTA refinado
----------------------------------------------------------- */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.btn-hero-secondary {
  background: #ffffff;
  color: #0d47d9;
  border-radius: 100px;
  font-weight: 600;
  padding: 0.55rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.hero-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-cta-primary {
  box-shadow: 0 16px 28px rgba(13, 71, 217, 0.35);
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
  background: #f8f9ff;
  box-shadow: 0 12px 30px rgba(13, 71, 217, 0.20);
  transform: translateY(-2px);
  color: #0d47d9;
  text-decoration: none;
}

/* -----------------------------------------------------------
   Ajustes finais de botoes
----------------------------------------------------------- */
.btn-cta,
.btn-primary {
  background: linear-gradient(135deg, #0f4fd8, #0095ff);
  border: none;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(15, 79, 216, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease,
    background 0.15s ease;
}

.btn-cta:hover,
.btn-primary:hover,
.btn-cta:focus,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 79, 216, 0.35);
  filter: brightness(1.06);
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-primary {
  border-radius: 999px;
  font-weight: 500;
  border-width: 2px;
  color: #0f4fd8;
  border-color: #0f4fd8;
  background: transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: linear-gradient(135deg, #0f4fd8, #0095ff);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 79, 216, 0.25);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  border-color: #1ebe57;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 500;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1ebe57;
  border-color: #18a84a;
  color: #ffffff;
  text-decoration: none;
}

/* -----------------------------------------------------------
   Hover suave compartilhado
----------------------------------------------------------- */
.home-featured-card:hover,
.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

/* -----------------------------------------------------------
   Responsividade
----------------------------------------------------------- */
@media (max-width: 768px) {
    .site-main {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .about-panel {
        padding: 2.25rem 1.75rem;
    }

    .site-header {
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    .navbar-brand img {
        height: 44px;
    }

    .navbar-brand .brand-text {
        font-size: 1rem;
    }

    .navbar-nav {
        gap: 12px;
    }

    .navbar-glass .navbar-nav .nav-link {
        padding: 0.4rem 0.75rem;
    }

    .header-search {
        min-width: 0;
    }

    .header-search input {
        height: 40px;
        font-size: 0.9rem;
        padding-left: 2.5rem;
    }

    .header-search-icon {
        left: 12px;
    }

    .header-search-btn {
        width: 40px;
        height: 40px;
        margin-left: -50px;
    }

    .header-search-clear {
        margin-left: -42px;
    }
}

@media (max-width: 576px) {
    .site-main {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        margin-bottom: 2.25rem;
    }

    .page-about-hero h1 {
        font-size: 2rem;
    }

    .about-grid,
    .about-grid--3 {
        grid-template-columns: 1fr;
    }

    .btn-cta,
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }

    .whatsapp-fab {
        bottom: 1.1rem;
        right: 1.1rem;
        width: 52px;
        height: 52px;
    }

    #cart-update-form input[type="number"] {
        width: 70px;
    }

    .home-section-products {
        margin-top: 36px;
        margin-bottom: 48px;
    }

    .home-products-header h2 {
        font-size: 1.2rem;
    }

    .home-products-header p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .home-products-carousel {
        gap: 8px;
    }

    .home-products-track-inner {
        gap: 12px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        margin: 0 4px;
    }

    .product-card {
        padding: 14px 12px;
        min-height: 300px;
        border-radius: 16px;
    }

    .product-card-image {
        height: 260px;
        padding: 10px;
        margin-bottom: 8px;
    }

    .product-card-image img {
        max-width: 90%;
    }

    .product-card-title {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
        min-height: 2.6em;
    }

    .product-card-body {
        min-height: 7rem;
    }

    .product-card-price {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        min-height: 2.6rem;
    }

    .product-card-add-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
        min-height: 40px;
    }

    .product-card:hover .product-card-image img {
        transform: none;
    }

    .products-header h1 {
        font-size: 1.6rem;
    }

    .products-header .products-count {
        text-align: left;
    }

    .filters-shell {
        padding: 10px 12px;
    }

    .filters-actions {
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
    }

    .filters-actions .btn {
        width: 100%;
    }

    .products-category-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }

    .how-it-works-section {
        margin-top: 3rem;
        padding: 2rem 1.25rem;
    }

    .how-it-works-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .how-it-works-card {
        padding: 1rem 1.1rem;
    }

    .hero-piscina {
        padding: 1.6rem;
        border-radius: 0.9rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-row .btn {
        width: 100%;
    }
}

.home-featured-section {
    margin-top: 1.75rem;
}

.home-featured-header {
    margin-bottom: 1.1rem;
}

.home-featured-header h2 {
    font-size: 1.05rem;
    font-weight: 600;
}

.home-featured-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #6b7280;
    max-width: 720px;
    margin: 0;
}

.featured-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.featured-carousel-viewport {
    overflow: hidden;
    flex: 1;
}

/* -----------------------------------------------------------
   Ajustes especificos da grade de produtos
----------------------------------------------------------- */
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
