  .portfolio-info {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 15px !important;
    color: white !important;
  }

  .portfolio-info h4 {
    color: white !important;
    margin-bottom: 5px !important;
    font-size: 16px !important;
  }

  .portfolio-info p {
    color: #ccc !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
  }

  .portfolio-item {
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .portfolio-item:hover .portfolio-info {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Banner Carousel Styles */
  .banner-carousel {
    margin-top: 30px;
    position: relative;
  }

  .banner-swiper {
    width: 100%;
    height: 500px;
  }

  .banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 64, 128, 0.6) 100%);
  }

  .banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
  }

  .banner-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .btn-banner {
    display: inline-block;
    padding: 12px 35px;
    background: var(--accent-color, #0d6efd);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .btn-banner:hover {
    background: var(--accent-color-hover, #0a58ca);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
  }

  /* Swiper Navigation Buttons */
  .banner-swiper .swiper-button-next,
  .banner-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .banner-swiper .swiper-button-next:hover,
  .banner-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
  }

  .banner-swiper .swiper-button-next::after,
  .banner-swiper .swiper-button-prev::after {
    font-size: 20px;
  }

  /* Swiper Pagination */
  .banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
  }

  .banner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color, #0d6efd);
  }

  /* Product Modal Styles */
  .modal-xl {
    max-width: 1200px;
  }

  .product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .product-image-container img {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
  }

  .product-image-container:hover img {
    transform: scale(1.05);
  }

  .product-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 28px;
  }

  .product-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .product-features h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
  }

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

  .feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
  }

  .feature-list li:last-child {
    border-bottom: none;
  }

  .feature-list li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 16px;
  }

  .product-actions .btn {
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
  }

  .btn-outline-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent;
    color: white;
  }

  .btn-outline-primary:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent;
    color: white;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .banner-swiper {
      height: 400px;
    }

    .banner-content h2 {
      font-size: 32px;
    }

    .banner-content p {
      font-size: 16px;
    }

    .banner-carousel {
      margin-top: 30px;
    }

    .modal-xl {
      max-width: 95%;
    }

    .product-image-container img {
      /* height: 300px; */
    }

    .product-title {
      font-size: 24px;
    }

    .product-actions .btn {
      width: 100%;
      margin-bottom: 10px;
    }
  }

  @media (max-width: 480px) {
    .banner-swiper {
      height: 350px;
    }

    .banner-content h2 {
      font-size: 24px;
    }

    .banner-content p {
      font-size: 14px;
    }
  }

  /* Estilos para o novo layout de produtos estilo Mercado Livre */

  /* Sidebar de Filtros */
  .filters-sidebar {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
  }

  .filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #e1e8ed;
    padding-bottom: 20px;
  }

  .filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .filter-options {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .filter-option {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-bottom: 5px;
  }

  .filter-option:hover {
    background: #f8f9fa;
  }

  .filter-option input[type="checkbox"] {
    display: none;
  }

  .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
  }

  .filter-option input[type="checkbox"]:checked+.checkmark {
    background: #007bff;
    border-color: #007bff;
  }

  .filter-option input[type="checkbox"]:checked+.checkmark::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 14px;
    font-weight: bold;
  }

  /* Estado ativo do filtro de categoria (AngularJS) */
  .checkmark-active {
    background: #007bff !important;
    border-color: #007bff !important;
  }

  .checkmark-active::after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 14px;
    font-weight: bold;
  }

  .filter-option {
    cursor: pointer;
    user-select: none;
  }

  .option-text {
    flex: 1;
    font-size: 14px;
    color: #555;
    margin-right: 8px;
  }

  .product-count {
    font-size: 12px;
    color: #999;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 10px;
  }

  .filter-actions {
    margin-top: 20px;
  }

  /* Barra de Controles */
  .products-header {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .search-box {
    position: relative;
  }

  .search-box input {
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 25px;
    height: 40px;
  }

  .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
  }

  .sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .sort-label {
    font-size: 14px;
    color: #555;
    margin: 0;
  }

  .sort-select {
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 40px;
  }

  .results-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e8ed;
  }

  .results-info span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
  }

  /* Grid de Produtos */
  .products-grid {
    margin-bottom: 30px;
  }

  .product-card {
    margin-bottom: 30px;
  }

  .product-item {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
  }

  .product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
  }

  .product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
  }

  .product-image img {
    width: 100%;
    /* height: 100%; */
    padding: 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .product-item:hover .product-image img {
    transform: scale(1.05);
  }

  .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .product-item:hover .product-overlay {
    opacity: 1;
  }

  .product-info {
    padding: 20px;
  }

  .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .product-price {
    margin-bottom: 15px;
  }

  .price {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
    margin-right: 10px;
  }

  .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
  }

  .product-actions .btn {
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
  }

  /* Responsividade */
  @media (max-width: 992px) {
    .sidebar-filters {
      margin-bottom: 30px;
    }

    .filters-sidebar {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .products-header .row {
      flex-direction: column;
      gap: 15px;
    }

    .sort-controls {
      flex-direction: column;
      align-items: flex-start;
    }

    .sort-select {
      width: 100%;
    }

    .product-image {
      height: 180px;
    }

    .product-info {
      padding: 15px;
    }
  }

  @media (max-width: 576px) {
    .filters-sidebar {
      padding: 15px;
    }

    .products-header {
      padding: 15px;
    }

    .product-image {
      height: 160px;
    }

    .price {
      font-size: 16px;
    }
  }


  /* Estilos para o modal do WhatsApp */
  #instagramModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  #instagramModal .modal-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 15px 15px 0 0;
  }

  #instagramModal .modal-header .btn-close {
    filter: invert(1);
  }

  #instagramModal .form-control:focus,
  #instagramModal .form-select:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
  }

  #instagramModal .alert-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0fff0 100%);
    border: 1px solid #25D366;
    border-radius: 10px;
  }

  #instagramModal .btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  #instagramModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20ba5a 0%, #0f7a6b 100%);
  }

  #instagramModal .btn-secondary {
    border-radius: 25px;
    padding: 10px 25px;
  }

  /* Melhoria no botão dos cards */
  .btn-outline-primary:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent;
    color: white;
  }

  /* Estilos para a seção de fabricantes */
  #clients .section-title h2 {
    color: #2c3e50;
    margin-bottom: 15px;
  }

  #clients .section-title p {
    color: #6c757d;
    margin-bottom: 40px;
  }

  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }

  .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .client-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(0%);
    transition: all 0.3s ease;
  }

  .client-logo:hover img {
    filter: grayscale(0%);
  }

  .client-logo:hover img {
    filter: grayscale(0%);
  }

  /* Responsividade para os logotipos */
  @media (max-width: 768px) {
    .client-logo {
      padding: 15px;
    }

    .client-logo img {
      max-height: 50px;
    }
  }

  /* WhatsApp Floating Button */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
    background: #20BA5A;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float i {
    font-size: 28px;
  }

  /* Animação de pulso para o botão WhatsApp */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  /* Responsividade para o botão WhatsApp */
  @media (max-width: 768px) {
    .whatsapp-float {
      width: 55px;
      height: 55px;
      bottom: 15px;
      right: 15px;
      font-size: 24px;
    }

    .whatsapp-float i {
      font-size: 24px;
    }
  }

  /* Ajuste para não sobrepor o scroll top */
  .scroll-top {
    bottom: 90px;
  }

  @media (max-width: 768px) {
    .scroll-top {
      bottom: 80px;
    }
  }