    /* Estilos principais baseados no home.css */
    :root {
      --primary: #fcce3a;
      --primary-hover: #FCA63A;
      --dark: #111111;
      --light: #F8F9FA;
      --gray: #6c757d;
      --section-spacing: 6rem;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--light);
      color: var(--dark);
      scroll-behavior: smooth;
    }

    /* Typography */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: 700;
    }

    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      position: relative;
    }

    h2::after {
      content: "";
      position: absolute;
      bottom: -0.75rem;
      left: 0;
      width: 80px;
      height: 4px;
      background-color: var(--primary);
    }

    .text-center h2::after {
      left: 50%;
      transform: translateX(-50%);
    }

    p {
      font-weight: 400;
      line-height: 1.7;
      color: #444;
    }

    /* Header/Navbar */
    header {
      background-color: rgba(17, 17, 17, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link {
      color: #ffffff;
      font-weight: 600;
      padding: 1rem 1rem;
      position: relative;
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background-color: var(--primary);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 70%;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary);
    }

    /* Banner da página */
    /* Banner da página */
    .produtos-banner {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/automatizador.JPG');
      background-size: cover;
      background-position: center;
      height: 40vh;
      min-height: 300px;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
      margin-top: 0 !important;
      padding-top: 76px;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      animation: fadeInUp 1s ease;
    }

    .produtos-banner h1 {
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: var(--light);
      animation: fadeInUp 1s ease;
      text-align: left;
    }

    .produtos-banner p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      opacity: 0.9;
      color: white;
      animation: fadeInUp 1.2s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Breadcrumb */
    .breadcrumb-section {
      background-color: var(--light);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .breadcrumb {
      margin-bottom: 0;
    }

    .breadcrumb-item a {
      color: var(--dark);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .breadcrumb-item a:hover {
      color: var(--primary);
    }

    .breadcrumb-item.active {
      color: var(--primary);
    }

    /* Seções e Categorias */
    section {
      padding: var(--section-spacing) 0;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 4rem;
    }

    .category-title {
      margin-bottom: 2.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--primary);
    }

    /* Produtos Cards */
    .product-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
      transition: all 0.4s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
    }

    .product-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .product-image {
      height: 240px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .product-image img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: auto;
      height: 240px;
      object-fit: contain;
      padding: 10px;
      transition: transform 0.8s ease;
    }

    .product-card:hover .product-image img {
      transform: scale(1.05);
    }

    .product-body {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-title {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .product-text {
      color: #666;
      margin-bottom: 20px;
      flex: 1;
    }

    /* Botões */
    .btn-primary {
      background-color: var(--primary);
      border: none;
      color: var(--dark);
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background-color: var(--primary-hover);
      transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
      z-index: -1;
    }

    .btn-primary:hover::before {
      width: 100%;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(252, 206, 58, 0.4);
      color: var(--dark);
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #222 0%, #444 100%);
      color: white;
      border-radius: 20px;
      padding: 4rem;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background-color: rgba(252, 206, 58, 0.1);
      border-radius: 50%;
      top: -100px;
      right: -100px;
      z-index: -1;
    }

    .cta-section::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background-color: rgba(252, 206, 58, 0.1);
      border-radius: 50%;
      bottom: -50px;
      left: -50px;
      z-index: -1;
    }

    .cta-content h3 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .cta-content p {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 2rem;
      color: white;
    }

    .btn-cta {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      padding: 5rem 0 2rem;
      color: #f8f9fa;
    }

    .footer-logo {
      margin-bottom: 1.5rem;
    }

    .footer-heading {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.75rem;
    }

    .footer-heading::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary);
    }

    .footer-contact li {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
    }

    .footer-contact li i {
      color: var(--primary);
      margin-right: 15px;
      font-size: 18px;
      margin-top: 3px;
    }

    .footer-contact a {
      color: var(--primary);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-contact a:hover {
      color: var(--primary-hover);
    }

    .footer-bottom {
      padding-top: 2rem;
      margin-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background-color: #111;
      padding: 20px 0;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      z-index: 999;
      transition: all 0.3s ease;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

    /* Categoria Tabs */
    .categoria-tabs {
      margin-bottom: 3rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .categoria-tabs .nav-link {
      color: var(--dark);
      font-weight: 600;
      padding: 1rem 2rem;
      border: none;
      position: relative;
      transition: all 0.3s ease;
    }

    .categoria-tabs .nav-link.active {
      color: var(--primary);
      background-color: transparent;
      border: none;
    }

    .categoria-tabs .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary);
    }

    /* Tabela de especificações */
    .specs-table {
      width: 100%;
      margin-top: 20px;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .specs-table thead {
      background-color: var(--primary);
    }

    .specs-table th {
      padding: 15px;
      text-align: center;
      font-weight: 600;
    }

    .specs-table td {
      padding: 12px 15px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    .specs-table tbody tr {
      background-color: white;
      transition: all 0.3s ease;
    }

    .specs-table tbody tr:hover {
      background-color: #f9f9f9;
    }

    .specs-table tbody tr:last-child td {
      border-bottom: none;
    }

    /* Modelo selecionado */
    .modelo-row.selected {
      background-color: rgba(252, 206, 58, 0.15) !important;
    }

    /* Detalhes do produto */
    .product-details {
      background-color: white;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
      margin-top: 30px;
      display: none;
    }

    .detail-item {
      margin-bottom: 20px;
    }

    .detail-item h4 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .detail-item p {
      margin-bottom: 0;
      color: #666;
    }

    /* Seletor de modelos */
    .model-selector {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .model-btn {
      background-color: white;
      border: 2px solid #eee;
      border-radius: 8px;
      padding: 8px 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .model-btn:hover {
      border-color: var(--primary);
    }

    .model-btn.active {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--dark);
    }

    /* CSS adicional para o funcionamento dos seletores */
    .model-selector {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
    }

    .model-btn {
      padding: 5px 10px;
      border: 1px solid #ddd;
      background-color: #f8f9fa;
      cursor: pointer;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .model-btn.active {
      background-color: #FCA63A;
      color: white;
      border-color: #FCA63A;
    }

    .modelo-row {
      display: none;
    }

    .modelo-row.visible {
      display: table-row;
    }

    .product-card {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 30px;
      background-color: #fff;
      transition: transform 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-image {
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .product-body {
      padding: 20px;
    }

    .table-responsive {
      margin-bottom: 20px;
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }

    .specs-table th,
    .specs-table td {
      padding: 8px;
      border: 1px solid #ddd;
      text-align: center;
    }

    .specs-table th {
      background-color: #f8f9fa;
    }


    /* Responsividade */
    @media (max-width: 992px) {
      h1 {
        font-size: 3rem;
      }

      .navbar-brand img {
        height: 35px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --section-spacing: 4rem;
      }

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }

      .produtos-banner {
        height: 200px;
      }

      .categoria-tabs .nav-link {
        padding: 0.75rem 1rem;
      }

      .specs-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
      }

      .model-selector {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
      }
    }

    @media (max-width: 576px) {
      h1 {
        font-size: 2rem;
      }

      .categoria-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .categoria-tabs .nav-item {
        flex: 0 0 auto;
      }

      .category-title {
        text-align: center;
      }
    }