/* === CSS VARIABLES - DESIGN SYSTEM === */
    :root {
      --tecnew-teal-dark: #015457;
      --tecnew-teal: #006C6F;
      --tecnew-teal-light: #017075;
      --tecnew-green: #00A67F;
      --tecnew-green-light: #00d4a0;
      --tecnew-gold: #E6D070;
      --tecnew-gold-light: #F0E4A0;
      --tecnew-dark: #0a1a1b;
      --tecnew-gray: #64748b;
      --tecnew-light: #f9fafb;
      --glass-bg: rgba(255, 255, 255, 0.95);
      --glass-border: rgba(255, 255, 255, 0.2);
      --shadow-soft: 0 4px 20px rgba(0, 166, 127, 0.1);
      --shadow-medium: 0 8px 30px rgba(0, 166, 127, 0.15);
      --shadow-strong: 0 15px 50px rgba(0, 166, 127, 0.2);
      --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      background: #ffffff;
      color: #1a1a1a;
      overflow-x: hidden;
      line-height: 1.6;
      width: 100%;
      max-width: 100%;
    }

    /* Container padrão para alinhamento global - 1168px = 1200px - 32px de padding */
    .container,
    #topbar > div,
    #header > div,
    .newsletter-container,
    .footer-contact-container,
    .footer-grid,
    .footer-bottom-container {
      max-width: 1168px !important;
      margin-left: auto !important;
      margin-right: auto !important;
      padding-left: 1rem !important;
      padding-right: 1rem !important;
      width: 100% !important;
      box-sizing: border-box !important;
    }

    /* Map section - full width override */
    .map-section,
    .map-section .map-container,
    .map-section .map-container iframe {
      max-width: 100% !important;
      width: 100% !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin: 0 !important;
    }

    /* === ULTRA WIDE DESKTOP (1600px+) === */
    @media (min-width: 1600px) {
      /* Containers expandidos para 1500px */
      .container,
      #topbar > div,
      #header > div,
      .newsletter-container,
      .footer-contact-container,
      .footer-grid,
      .footer-bottom-container,
      section:not(.map-section):not(.banner-section) > div,
      #services-section > div,
      .section-gray > div,
      .section-white > div {
        max-width: 1500px !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
      }

      /* Banner com mais destaque */
      .banner-section {
        margin-top: 100px;
      }

      /* Tipografia aprimorada */
      #services-title,
      .section-gray > div > h2,
      .section-white > div > h2 {
        font-size: 3rem !important;
        letter-spacing: -0.02em;
      }

      #services-section > div > p {
        font-size: 1.25rem !important;
        max-width: 700px;
      }

      /* Diferenciais em grid mais espaçoso */
      .section-white > div > div {
        gap: 1.5rem !important;
      }

      .section-white > div > div > div {
        padding: 1.25rem 1rem !important;
      }

      /* Services Grid - 3 colunas otimizadas */
      .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
      }

      .service-card .service-image {
        height: 220px;
      }

      .service-card > div:last-child {
        padding: 2rem;
      }

      .service-card h3 {
        font-size: 1.35rem;
      }

      .service-card p {
        font-size: 1rem;
        line-height: 1.7;
      }

      .btn-service {
        padding: 1rem 2rem;
        font-size: 1rem;
      }

      /* Produtos Grid - 4 colunas */
      .produtos-section > div > div {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem !important;
      }

      .produto-card > div:first-child {
        height: 240px !important;
      }

      .produto-card > div:first-child svg {
        width: 100px !important;
        height: 100px !important;
      }

      .produto-card > div:last-child {
        padding: 1.75rem !important;
      }

      .produto-card h3 {
        font-size: 1.2rem !important;
      }

      .produto-card p {
        font-size: 0.95rem !important;
      }

      /* Newsletter mais impactante */
      .newsletter-section h2 {
        font-size: 2.25rem !important;
      }

      .newsletter-section p {
        font-size: 1.15rem !important;
      }

      .newsletter-form {
        max-width: 600px !important;
      }

      .newsletter-form input {
        padding: 1.1rem 1.5rem !important;
        font-size: 1rem !important;
      }

      .newsletter-form button {
        padding: 1.1rem 2.5rem !important;
        font-size: 1rem !important;
      }

      /* Footer aprimorado */
      .footer-grid {
        gap: 3rem !important;
      }

      /* Círculos decorativos maiores */
      body::before {
        width: 650px;
        height: 650px;
        top: -250px;
        left: -250px;
      }

      body::after {
        width: 450px;
        height: 450px;
        bottom: 20%;
        right: -180px;
      }

      #services-section::before {
        width: 600px !important;
        height: 600px !important;
        right: -250px !important;
        top: -150px !important;
      }

      #services-section::after {
        width: 400px !important;
        height: 400px !important;
        left: -150px !important;
      }

      /* Hover effects mais pronunciados */
      .service-card:hover {
        transform: translateY(-16px) !important;
      }

      .produto-card:hover {
        transform: translateY(-14px) !important;
      }
    }

    /* Fix para seções full-width */
    #root {
      width: 100%;
      overflow-x: hidden;
    }

    #topbar,
    #header,
    .newsletter-section,
    #footer,
    .footer-contact-bar,
    .footer-main,
    .footer-bottom,
    section {
      width: 100% !important;
      max-width: 100vw !important;
      overflow-x: hidden !important;
    }

    /* === DECORATIVE CIRCLES === */
    body::before,
    body::after {
      content: '';
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    body::before {
      width: 500px;
      height: 500px;
      top: -200px;
      left: -200px;
      border: 2px solid var(--tecnew-gold);
      opacity: 0.12;
    }

    body::after {
      width: 350px;
      height: 350px;
      bottom: 15%;
      right: -150px;
      border: 2px solid var(--tecnew-green);
      opacity: 0.1;
    }

    /* === SECTION SEPARATORS & BACKGROUNDS === */

    /* Wave Separator */
    .section-wave {
      position: relative;
      width: 100%;
      height: 80px;
      overflow: hidden;
    }

    .section-wave svg {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .section-wave.wave-white svg {
      fill: #ffffff;
    }

    .section-wave.wave-gray svg {
      fill: #f8fafc;
    }

    .section-wave.wave-teal svg {
      fill: var(--tecnew-teal-dark);
    }

    /* Diagonal Separator */
    .section-diagonal {
      position: relative;
      width: 100%;
      height: 100px;
      overflow: hidden;
    }

    .section-diagonal::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right bottom, transparent 49.5%, #f8fafc 50%);
    }

    .section-diagonal.diagonal-reverse::before {
      background: linear-gradient(to left bottom, transparent 49.5%, #ffffff 50%);
    }

    /* Dot Pattern Separator */
    .section-dots {
      position: relative;
      width: 100%;
      padding: 2rem 0;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
    }

    .section-dots::before,
    .section-dots::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 166, 127, 0.3), transparent);
    }

    .section-dots .dots-center {
      display: flex;
      gap: 0.5rem;
    }

    .section-dots .dots-center span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--tecnew-green);
      opacity: 0.5;
    }

    .section-dots .dots-center span:nth-child(2) {
      background: var(--tecnew-teal);
      width: 12px;
      height: 12px;
      opacity: 0.7;
    }

    /* Section Backgrounds */
    .section-white {
      background: #ffffff !important;
    }

    .section-gray {
      background: #f8fafc !important;
    }

    .section-gradient-soft {
      background: linear-gradient(180deg, #ffffff 0%, #f0fdf9 50%, #ffffff 100%) !important;
    }

    .section-gradient-teal {
      background: linear-gradient(135deg, #f0fdfa 0%, #e0f7f4 50%, #f0fdfa 100%) !important;
    }

    .section-pattern {
      background-color: #ffffff;
      background-image:
        radial-gradient(rgba(0, 166, 127, 0.03) 1px, transparent 1px),
        radial-gradient(rgba(1, 84, 87, 0.03) 1px, transparent 1px);
      background-size: 20px 20px, 30px 30px;
      background-position: 0 0, 15px 15px;
    }

    /* Geometric Accent Lines */
    .section-accent-top {
      position: relative;
    }

    .section-accent-top::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, var(--tecnew-green), var(--tecnew-teal));
      border-radius: 2px;
    }

    /* Icon Separator */
    .section-icon-separator {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 0;
      gap: 1.5rem;
    }

    .section-icon-separator .line {
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--tecnew-green));
    }

    .section-icon-separator .line:last-child {
      background: linear-gradient(90deg, var(--tecnew-green), transparent);
    }

    .section-icon-separator .icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--tecnew-green), var(--tecnew-teal));
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 166, 127, 0.3);
    }

    .section-icon-separator .icon svg {
      width: 20px;
      height: 20px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    /* Elegant Divider - Premium Style */
    .section-elegant-divider {
      width: 100%;
      padding: 3rem 0;
      background: linear-gradient(180deg, #ffffff 0%, #f0fdf9 50%, #f8fafc 100%);
      position: relative;
      overflow: hidden;
    }

    .section-elegant-divider::before,
    .section-elegant-divider::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 1px solid rgba(0, 166, 127, 0.1);
      pointer-events: none;
    }

    .section-elegant-divider::before {
      top: -150px;
      left: -100px;
    }

    .section-elegant-divider::after {
      bottom: -150px;
      right: -100px;
    }

    .divider-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .divider-line {
      flex: 1;
      height: 3px;
      background: linear-gradient(90deg, transparent, #d1d5db, #d1d5db, transparent);
      border-radius: 2px;
    }

    .divider-icon-group {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .divider-diamond {
      width: 10px;
      height: 10px;
      background: linear-gradient(135deg, var(--tecnew-green), var(--tecnew-teal));
      transform: rotate(45deg);
      border-radius: 2px;
      box-shadow: 0 2px 8px rgba(0, 166, 127, 0.3);
    }

    .divider-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--tecnew-green) 0%, var(--tecnew-teal) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 4px 20px rgba(0, 166, 127, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
      position: relative;
    }

    .divider-circle::before {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .divider-circle svg {
      width: 24px;
      height: 24px;
      stroke: white;
      fill: none;
      stroke-width: 2;
    }

    /* === LOGO === */
    .logo-header,
    .custom-logo {
      width: 150px;
      height: auto;
      transition: var(--transition-smooth);
    }

    .logo-header:hover,
    .custom-logo:hover {
      transform: scale(1.02);
    }

    /* === TOPBAR PREMIUM === */
    #topbar {
      background: linear-gradient(135deg, var(--tecnew-dark) 0%, var(--tecnew-teal-dark) 100%) !important;
      position: fixed !important;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 9998;
      border-bottom: 1px solid rgba(230, 208, 112, 0.1);
    }

    #topbar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--tecnew-gold), transparent);
      opacity: 0.3;
    }

    /* === HEADER PREMIUM === */
    #header {
      background: linear-gradient(135deg, var(--tecnew-green) 0%, var(--tecnew-teal-light) 100%) !important;
      position: fixed !important;
      top: 44px;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 9999;
      transition: var(--transition-smooth);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    /* Espaço para compensar o topbar + header fixo */
    .carousel-container {
      margin-top: 124px !important;
    }

    #header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
      pointer-events: none;
    }

    /* Fix header layout */
    #header > div {
      flex-wrap: nowrap !important;
      gap: 1rem !important;
    }

    #header nav {
      flex-wrap: nowrap !important;
      gap: 1.5rem !important;
    }

    #header nav a,
    #header nav .menu-item > a {
      white-space: nowrap !important;
      font-size: 0.9rem !important;
    }

    #header > div > div:last-child {
      flex-wrap: nowrap !important;
      flex-shrink: 0;
    }

    #header > div > div:last-child button {
      padding: 0.75rem 1.5rem !important;
      font-size: 0.85rem !important;
      white-space: nowrap !important;
    }

    /* === NAVIGATION LINKS === */
    #header nav > a,
    #header .menu-item > a {
      position: relative;
      padding: 0.5rem 0;
    }

    #header nav > a::after,
    #header .menu-item > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--tecnew-gold);
      border-radius: 2px;
      transition: var(--transition-smooth);
      transform: translateX(-50%);
    }

    #header nav > a:hover::after,
    #header .menu-item:hover > a::after {
      width: 100%;
    }

    /* === SUBMENU PREMIUM === */
    .menu-item {
      position: relative;
    }

    .menu-item:hover .submenu {
      display: block;
      opacity: 1;
      visibility: visible;
    }

    .submenu {
      display: none;
      position: fixed;
      min-width: 220px;
      z-index: 99999;
      background: white !important;
      border-radius: 16px !important;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
      padding: 0.75rem !important;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      border: 1px solid rgba(0, 166, 127, 0.1);
    }

    /* Seta do submenu */
    .submenu::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid white;
    }

    .submenu a {
      display: block !important;
      padding: 0.75rem 1.25rem !important;
      border-radius: 10px !important;
      transition: var(--transition-smooth) !important;
      position: relative;
      overflow: hidden;
      color: #333 !important;
      text-decoration: none !important;
    }

    .submenu a:hover {
      background: linear-gradient(135deg, rgba(0, 166, 127, 0.08) 0%, rgba(230, 208, 112, 0.08) 100%) !important;
      color: var(--tecnew-green) !important;
      padding-left: 1.5rem !important;
    }

    .submenu a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: linear-gradient(180deg, var(--tecnew-green), var(--tecnew-gold));
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .submenu a:hover::before {
      transform: scaleY(1);
    }

    /* === BUTTONS PREMIUM === */
    #quote-btn {
      background: transparent !important;
      border: 2px solid var(--tecnew-gold) !important;
      color: var(--tecnew-gold) !important;
      border-radius: 50px !important;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      transition: var(--transition-smooth);
    }

    #quote-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: var(--tecnew-gold);
      transition: left 0.4s ease;
      z-index: -1;
    }

    #quote-btn:hover {
      color: var(--tecnew-dark) !important;
      border-color: var(--tecnew-gold) !important;
    }

    #quote-btn:hover::before {
      left: 0;
    }

    #buy-btn {
      background: linear-gradient(135deg, var(--tecnew-gold) 0%, var(--tecnew-gold-light) 100%) !important;
      color: var(--tecnew-dark) !important;
      border-radius: 50px !important;
      font-weight: 700;
      border: none !important;
      box-shadow: 0 4px 15px rgba(230, 208, 112, 0.4);
      transition: var(--transition-smooth);
    }

    #buy-btn:hover {
      box-shadow: 0 8px 25px rgba(230, 208, 112, 0.5);
      transform: translateY(-3px) !important;
    }

    /* === CAROUSEL PREMIUM === */
    .carousel-container {
      position: relative;
      overflow: hidden;
      z-index: 1 !important;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* === BANNER PREMIUM COM IMAGEM === */
    .banner-section {
      position: relative;
      width: 100%;
      margin-top: 135px;
    }

    .banner-picture {
      display: block;
      width: 100%;
    }

    .banner-img {
      width: 100%;
      height: auto;
      display: block;
    }

    @media(max-width: 1047px){
      .banner-section {
        margin-top: 200px;
      }
    }

    @media(max-width: 768px){
      .banner-section {
        margin-top: 200px;
      }
    }

    /* === CARDS DE PRODUTOS === */
    .produto-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .produto-card > div:last-child {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .produto-card > div:last-child p {
      flex: 1;
    }

    .produto-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 166, 127, 0.15) !important;
    }

    .produto-card:hover .btn-produto {
      background: linear-gradient(135deg, #00A67F 0%, #015457 100%);
      color: white;
      border-color: transparent;
    }

    .btn-produto {
      margin-top: auto;
    }

    .btn-produto:hover {
      background: linear-gradient(135deg, #00A67F 0%, #015457 100%) !important;
      color: white !important;
      border-color: transparent !important;
      transform: scale(1.02);
    }

    /* === PRODUCT CARDS COMERCIAL === */
    .produto-card-comercial {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      border: 1px solid #e5e7eb;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .produto-card-comercial:hover {
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
      transform: translateY(-4px);
    }

    .produto-img-container {
      position: relative;
      background: #fff;
      padding: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 200px;
    }

    .produto-img-container img {
      max-width: 100%;
      max-height: 170px;
      object-fit: contain;
    }

    .desconto-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #00A67F;
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      line-height: 1;
    }

    .desconto-badge span {
      display: block;
      font-size: 0.65rem;
      font-weight: 400;
    }

    .favorito-btn {
      position: absolute;
      top: 10px;
      left: 10px;
      background: none;
      border: none;
      cursor: pointer;
      color: #ccc;
      transition: color 0.2s;
    }

    .favorito-btn:hover {
      color: #ef4444;
    }

    .produto-info-comercial {
      padding: 1rem 1.25rem 1.25rem;
      display: flex;
      flex-direction: column;
      flex: 1;
      text-align: center;
    }

    .produto-nome {
      font-size: 0.9rem;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 0.75rem;
      line-height: 1.4;
      min-height: 2.5rem;
    }

    .preco-original {
      color: #999;
      text-decoration: line-through;
      font-size: 0.85rem;
      margin-bottom: 0.25rem;
    }

    .preco-atual {
      color: #1a1a1a;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .preco-pix {
      color: #666;
      font-size: 0.8rem;
      margin-bottom: 0.25rem;
    }

    .preco-pix strong {
      color: #1a1a1a;
    }

    .preco-parcelas {
      color: #888;
      font-size: 0.75rem;
      margin-bottom: 1rem;
    }

    .preco-parcelas strong {
      color: #1a1a1a;
    }

    .btn-adicionar-carrinho {
      width: 100%;
      padding: 0.875rem 1rem;
      background: #00A67F;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      display: block;
      text-align: center;
      margin-top: auto;
    }

    .btn-adicionar-carrinho:hover {
      background: #008f6b;
    }

    /* Responsivo para grid de produtos */
    @media (max-width: 1024px) {
      .produtos-section .produto-card-comercial {
        min-width: 0;
      }
      .produtos-section > div > div:nth-child(2) {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }

    @media (max-width: 768px) {
      /* === PRODUTOS SECTION MOBILE - LAYOUT SENIOR === */
      .produtos-section {
        padding: 2rem 1rem !important;
        background: #f8fafc !important;
      }

      .produtos-section > div {
        padding: 0 !important;
        max-width: 100% !important;
      }

      .produtos-section > div > h2 {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
        text-align: center !important;
      }

      /* Grid de produtos - coluna única centralizada */
      .produtos-section > div > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 0 !important;
      }

      /* Card do produto - layout horizontal compacto */
      .produtos-section .produto-card-comercial {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
        overflow: hidden !important;
        border: 1px solid #e5e7eb !important;
        background: white !important;
        min-height: 140px !important;
      }

      /* Container da imagem - lado esquerdo */
      .produtos-section .produto-img-container {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 140px !important;
        padding: 1rem !important;
        background: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        border-right: 1px solid #f0f0f0 !important;
      }

      /* Imagem do produto */
      .produtos-section .produto-img-container img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: 110px !important;
        max-width: 110px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        position: relative !important;
        z-index: 1 !important;
      }

      /* Badge de desconto */
      .produtos-section .desconto-badge {
        position: absolute !important;
        top: 8px !important;
        left: 8px !important;
        right: auto !important;
        padding: 4px 8px !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        border-radius: 4px !important;
        background: #00A67F !important;
        box-shadow: none !important;
        line-height: 1.2 !important;
        z-index: 2 !important;
      }

      .produtos-section .desconto-badge span {
        font-size: 0.6rem !important;
        margin-top: 1px !important;
        display: block !important;
      }

      /* Esconder botão favorito */
      .produtos-section .favorito-btn {
        display: none !important;
      }

      /* Info do produto - lado direito */
      .produtos-section .produto-info-comercial {
        flex: 1 !important;
        padding: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
        background: white !important;
      }

      /* Nome do produto */
      .produtos-section .produto-nome {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
        color: #1a1a1a !important;
        min-height: auto !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
      }

      /* Botão Ver produto */
      .produtos-section .btn-adicionar-carrinho {
        display: inline-block !important;
        width: auto !important;
        padding: 0.6rem 1.25rem !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        border-radius: 6px !important;
        background: #00A67F !important;
        box-shadow: none !important;
        color: white !important;
        text-decoration: none !important;
        text-align: center !important;
        margin-top: auto !important;
      }
    }

    @media (max-width: 380px) {
      .produtos-section .produto-img-container {
        width: 120px !important;
        min-width: 120px !important;
      }

      .produtos-section .produto-img-container img {
        max-height: 90px !important;
        max-width: 90px !important;
      }

      .produtos-section .produto-nome {
        font-size: 0.85rem !important;
        -webkit-line-clamp: 2 !important;
      }

      .produtos-section .btn-adicionar-carrinho {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
      }
    }

    /* === DIFERENCIAIS SECTION === */
    section:nth-of-type(1) {
      position: relative;
      overflow: hidden;
    }

    section:nth-of-type(1)::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border: 2px solid var(--tecnew-green);
      border-radius: 50%;
      left: -150px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.08;
    }

    section:nth-of-type(1) > div > div > div {
      transition: var(--transition-smooth);
      position: relative;
    }

    section:nth-of-type(1) > div > div > div:hover {
      transform: translateY(-8px);
    }

    section:nth-of-type(1) > div > div > div > div:first-child {
      transition: var(--transition-bounce);
    }

    section:nth-of-type(1) > div > div > div:hover > div:first-child {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 8px 30px rgba(0, 166, 127, 0.3) !important;
    }

    /* === SERVICES SECTION === */
    #services-section {
      background: linear-gradient(180deg, var(--tecnew-light) 0%, #f0f4f3 50%, var(--tecnew-light) 100%) !important;
      position: relative;
      overflow: hidden;
    }

    #services-section::before {
      content: '';
      position: absolute;
      width: 450px;
      height: 450px;
      border: 2px solid var(--tecnew-green);
      border-radius: 50%;
      right: -200px;
      top: -100px;
      opacity: 0.08;
    }

    #services-section::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border: 2px solid var(--tecnew-gold);
      border-radius: 50%;
      left: -100px;
      bottom: -50px;
      opacity: 0.1;
    }

    /* Service Cards Premium - New Design */
    .service-card {
      border: 1px solid rgba(0, 166, 127, 0.08) !important;
      position: relative;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--tecnew-green), var(--tecnew-gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
      z-index: 10;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-12px) !important;
      box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
      border-color: rgba(0, 166, 127, 0.15) !important;
    }

    .service-card .service-image {
      position: relative;
      overflow: hidden;
    }

    .service-card .service-image::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
      transform: rotate(45deg) translateX(-100%);
      transition: transform 0.6s ease;
    }

    .service-card:hover .service-image::after {
      transform: rotate(45deg) translateX(100%);
    }

    .service-card .service-image svg {
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card:hover .service-image svg {
      transform: scale(1.1) rotate(3deg);
    }

    .btn-service:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,166,127,0.4) !important;
      filter: brightness(1.1);
    }

    /* === PRODUTOS SECTION === */
    section:nth-of-type(3) {
      position: relative;
      overflow: hidden;
    }

    section:nth-of-type(3)::before {
      content: '';
      position: absolute;
      width: 350px;
      height: 350px;
      border: 2px solid var(--tecnew-teal);
      border-radius: 50%;
      right: -150px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.06;
    }

    section:nth-of-type(3) h2 {
      position: relative;
      display: inline-block;
    }

    section:nth-of-type(3) > div > div:nth-child(2) > div {
      border-radius: 20px !important;
      border: 1px solid rgba(0, 166, 127, 0.08) !important;
      transition: var(--transition-smooth) !important;
      overflow: hidden;
    }

    section:nth-of-type(3) > div > div:nth-child(2) > div:hover {
      transform: translateY(-10px) !important;
      box-shadow: var(--shadow-medium) !important;
      border-color: rgba(0, 166, 127, 0.2) !important;
    }

    section:nth-of-type(3) > div > div:nth-child(2) > div > div:first-child {
      background: linear-gradient(135deg, #e8f5f2 0%, #f5f5f5 100%) !important;
    }

    section:nth-of-type(3) > div > div:nth-child(2) > div button {
      background: linear-gradient(135deg, var(--tecnew-green) 0%, var(--tecnew-green-light) 100%) !important;
      border-radius: 50px !important;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(0, 166, 127, 0.3);
      transition: var(--transition-smooth) !important;
    }

    section:nth-of-type(3) > div > div:nth-child(2) > div button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 166, 127, 0.4);
    }

    /* === MARCAS GRID SIMPLES === */
    .marcas-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
      align-items: center;
    }

    .marca-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: white;
      border-radius: 12px;
      border: 2px solid #d1d5db;
      height: 90px;
    }

    .marca-item img {
      width: 130px;
      height: 52px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .marca-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    /* === BRANDS GRID (API EXTERNA) === */
    .brand-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        min-width: 120px;
        opacity: 0.7;
        filter: grayscale(100%);
        transition: all 0.3s;
        padding: 10px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-decoration: none;
    }

    .brand-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .brand-logo img {
        max-height: 40px;
        max-width: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    @media (max-width: 900px) {
      .marcas-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 768px) {
      .marcas-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
      }
      .marca-item {
        padding: 1.25rem !important;
        height: 120px !important;
        min-height: 120px !important;
        border-radius: 12px !important;
      }
      .marca-item img {
        width: 180px !important;
        height: 68px !important;
        max-width: 180px !important;
        max-height: 68px !important;
      }
      
      .brand-logo {
        height: 50px !important;
        min-width: 100px !important;
        padding: 8px !important;
      }
      
      .brand-logo img {
        max-height: 35px !important;
        max-width: 80px !important;
      }
      .marcas-section {
        padding: 2.5rem 0 !important;
      }
      .marcas-title {
        font-size: 3.15rem !important;
        font-weight: 800 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem;
        line-height: 1.2 !important;
      }
    }

    @media (max-width: 400px) {
      .marcas-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
      }
      .marca-item {
        height: 105px !important;
        padding: 1rem !important;
      }
      .marca-item img {
        width: 150px !important;
        height: 60px !important;
        max-width: 150px !important;
        max-height: 60px !important;
      }
    }

    /* === PARCEIROS SECTION === */
    section:nth-of-type(5) {
      background: linear-gradient(180deg, #ffffff 0%, var(--tecnew-light) 100%);
      position: relative;
      overflow: hidden;
    }

    section:nth-of-type(5)::before {
      content: '';
      position: absolute;
      width: 280px;
      height: 280px;
      border: 2px solid var(--tecnew-gold);
      border-radius: 50%;
      left: -100px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.1;
    }

    section:nth-of-type(5) > div > div:nth-child(2) > div {
      background: white !important;
      border-radius: 16px !important;
      border: 1px solid rgba(0, 166, 127, 0.1) !important;
      transition: var(--transition-smooth) !important;
      position: relative;
      overflow: hidden;
    }

    section:nth-of-type(5) > div > div:nth-child(2) > div:hover::before {
      transform: scaleX(1);
    }

    /* === PARCEIROS LOGOS COM EFEITO VERDE === */
    .parceiro-card {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      border: 1px solid #e0e0e0;
      border-radius: 0.75rem;
      background: white;
      transition: all 0.4s ease;
      min-height: 100px;
    }

    .parceiro-card:hover {
      box-shadow: 0 8px 24px rgba(0,166,127,0.15);
      transform: translateY(-4px);
      border-color: #00A67F;
    }

    .parceiro-logo {
      max-width: 120px;
      max-height: 60px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    /* === PARCEIROS CAROUSEL === */
    .parceiros-carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 0 50px;
    }

    .parceiros-carousel {
      /* Estilos controlados pelo Owl Carousel */
    }



    .parceiros-carousel .parceiro-card {
      flex: 0 0 180px;
      min-width: 180px;
    }



    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: white;
      border: 2px solid #00A67F;
      color: #00A67F;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .carousel-btn:hover {
      background: #00A67F;
      color: white;
    }

    .carousel-btn-prev {
      left: 0;
    }

    .carousel-btn-next {
      right: 0;
    }

    .carousel-btn svg {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 1200px) {
      .parceiros-carousel .parceiro-card {
        flex: 0 0 160px;
        min-width: 160px;
      }
    }

    @media (max-width: 900px) {
      .parceiros-carousel .parceiro-card {
        flex: 0 0 150px;
        min-width: 150px;
      }
      .carousel-btn-prev {
        left: 5px;
      }
      .carousel-btn-next {
        right: 5px;
      }
    }

    /* Mobile: Manter carousel funcionando */
    @media (max-width: 768px) {
      .parceiros-carousel-container {
        padding: 0 !important;
        overflow: hidden !important;
      }
      
      .parceiros-carousel .parceiro-card {
        padding: 1rem !important;
        min-height: 90px !important;
        height: 90px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #e0e0e0 !important;
      }
      
      .parceiros-carousel .parceiro-card .parceiro-logo {
        max-width: 100%;
        max-height: 40px;
        width: auto;
        height: auto;
        object-fit: contain;
      }
    }
    
    /* Dots do carousel de parceiros */
    .parceiros-dots {
      text-align: center;
      margin-top: 2rem;
    }
    
    .parceiros-dots .owl-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin: 0 4px;
      background: #ddd;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .parceiros-dots .owl-dot:hover {
      background: #bbb;
      transform: scale(1.2);
    }
    
    .parceiros-dots .owl-dot.active {
      background: var(--tecnew-teal, #00A67F);
      transform: scale(1.3);
    }
    
    /* Responsivo para dots */
    @media (max-width: 768px) {
      .parceiros-dots {
        margin-top: 1.5rem;
      }
      
      .parceiros-dots .owl-dot {
        width: 6px;
        height: 6px;
        margin: 0 3px;
      }
      
      .parceiros-section {
        padding: 2rem 0 !important;
      }
      
      .parceiros-title {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
        line-height: 1.4 !important;
      }
    }

    @media (max-width: 400px) {
      .parceiros-carousel .parceiro-card {
        min-height: 80px !important;
        height: 80px !important;
        padding: 0.75rem !important;
      }
      .parceiros-carousel .parceiro-card .parceiro-logo {
        max-height: 35px !important;
      }
    }

    /* === NEWSLETTER SECTION === */
    .newsletter-section {
      background: linear-gradient(135deg, var(--tecnew-green) 0%, var(--tecnew-teal) 100%);
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .newsletter-section::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      right: 5%;
      top: -100px;
      pointer-events: none;
    }

    .newsletter-section::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border: 2px solid rgba(230, 208, 112, 0.15);
      border-radius: 50%;
      left: 5%;
      bottom: -50px;
      pointer-events: none;
    }

    .newsletter-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .newsletter-text {
      color: white;
      font-size: 1.25rem;
      font-weight: 600;
      max-width: 400px;
      line-height: 1.5;
    }

    .newsletter-form {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      flex: 1;
      max-width: 650px;
      justify-content: flex-end;
      align-items: flex-start;
      position: relative;
    }

    .newsletter-form .input-wrapper {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-width: 180px;
      position: relative;
    }

    .newsletter-form input {
      width: 100%;
      padding: 1rem 1.5rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      font-size: 1rem;
      transition: all 0.3s ease;
      height: 54px;
      box-sizing: border-box;
    }

    .newsletter-form input::placeholder {
      color: #888;
    }

    .newsletter-form input:focus {
      outline: none;
      border-color: var(--tecnew-gold);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(230, 208, 112, 0.25);
    }

    .newsletter-form button {
      padding: 1rem 2rem;
      background: var(--tecnew-gold);
      color: var(--tecnew-dark);
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
      height: 54px;
      align-self: flex-start;
    }

    .newsletter-form button:hover {
      background: var(--tecnew-gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(230, 208, 112, 0.4);
    }

    /* Validação do formulário - Premium Desktop */
    .newsletter-form input.invalid {
      border: 2px solid #e74c3c !important;
      background: #fff !important;
      box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15) !important;
      color: #333 !important;
    }

    .newsletter-form input.valid {
      border: 2px solid #27ae60 !important;
      background: #fff !important;
      box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.15) !important;
      color: #333 !important;
    }

    .error-message {
      display: none;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      margin-top: 0.4rem;
      text-align: center;
      padding: 0.35rem 0.75rem;
      background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
      border-radius: 20px;
      box-shadow: 0 3px 12px rgba(231, 76, 60, 0.35);
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .error-message.show {
      display: inline-block;
    }

    .success-message {
      display: none;
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      text-align: center;
      padding: 0.75rem 1.75rem;
      background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
      animation: successPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      white-space: nowrap;
      align-self: center;
      height: 54px;
      line-height: 36px;
      letter-spacing: 0.3px;
    }

    @keyframes successPop {
      0% {
        opacity: 0;
        transform: scale(0.8);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    .success-message.show {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* === FOOTER PREMIUM === */
    #footer {
      background: linear-gradient(180deg, var(--tecnew-teal-dark) 0%, var(--tecnew-dark) 100%) !important;
      position: relative;
      overflow: hidden;
      border-top: none !important;
      padding: 0 !important;
    }

    #footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 166, 127, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 208, 112, 0.05) 0%, transparent 40%);
      pointer-events: none;
    }

    #footer::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border: 2px solid var(--tecnew-green);
      border-radius: 50%;
      right: 2%;
      top: 10%;
      opacity: 0.06;
      pointer-events: none;
    }

    /* Footer Contact Bar */
    .footer-contact-bar {
      background: rgba(0, 0, 0, 0.2);
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-contact-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: white;
      font-size: 0.95rem;
    }

    .footer-contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--tecnew-gold);
    }

    .footer-contact-item span {
      opacity: 0.9;
    }

    /* Footer Main Content */
    .footer-main {
      padding: 4rem 0;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.3fr auto;
      gap: 2rem;
      align-items: start;
    }

    /* Última coluna (Siga-nos) alinhada à direita */
    .footer-grid > .footer-column:last-child {
      justify-self: end;
      text-align: left;
    }

    .footer-column h4 {
      color: var(--tecnew-gold) !important;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.02em;
      position: relative;
      padding-bottom: 0.75rem;
    }

    .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, var(--tecnew-green), var(--tecnew-gold));
      border-radius: 2px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 0.75rem;
    }

    .footer-column ul li a {
      color: rgba(255, 255, 255, 0.7) !important;
      text-decoration: none;
      font-size: 0.95rem;
      transition: var(--transition-smooth);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-column ul li a::before {
      content: '';
      width: 0;
      height: 2px;
      background: var(--tecnew-gold);
      transition: width 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: var(--tecnew-gold) !important;
      padding-left: 0 !important;
    }

    .footer-column ul li a:hover::before {
      width: 12px;
    }

    /* Payment Methods */
    .payment-methods {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .payment-img {
      height: 28px !important;
      width: auto;
      max-width: 60px !important;
      object-fit: contain;
      background: white;
      border-radius: 6px;
      padding: 4px 8px;
      transition: var(--transition-smooth);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .payment-img:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* Security Badge */
    .security-badge {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255, 255, 255, 0.05);
      padding: 1rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: var(--transition-smooth);
    }

    .security-badge:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--tecnew-gold);
    }

    .security-badge-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--tecnew-gold), var(--tecnew-gold-light));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .security-badge-icon svg {
      width: 28px;
      height: 28px;
      color: var(--tecnew-dark);
    }

    .security-badge-text {
      color: white;
      font-weight: 700;
      font-size: 0.85rem;
      line-height: 1.3;
    }

    .security-badge-text span {
      display: block;
      font-size: 0.7rem;
      font-weight: 400;
      opacity: 0.7;
    }

    /* Social Links */
    .social-links {
      display: flex;
      gap: 0.75rem;
    }

    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition-smooth);
      text-decoration: none;
    }

    .social-link svg {
      width: 20px;
      height: 20px;
      fill: white;
      transition: var(--transition-smooth);
    }

    .social-link:hover {
      background: var(--tecnew-gold);
      border-color: var(--tecnew-gold);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(230, 208, 112, 0.3);
    }

    .social-link:hover svg {
      fill: var(--tecnew-dark);
    }

    /* Footer Bottom */
    .footer-bottom {
      background: rgba(0, 0, 0, 0.3);
      padding: 1.25rem 0;
      position: relative;
      z-index: 1;
    }

    .footer-bottom-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
      margin: 0;
    }

    .footer-bottom a {
      color: var(--tecnew-gold) !important;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition-smooth);
    }

    .footer-bottom a:hover {
      color: var(--tecnew-gold-light) !important;
      padding-left: 0 !important;
    }

    .developed-by {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
    }

    .developed-by a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white !important;
      padding-left: 0 !important;
    }

    .developed-by a:hover {
      opacity: 0.8;
    }

    .developed-by img,
    .developed-by svg {
      height: 15px;
      width: auto;
      filter: brightness(0) invert(1);
      transition: var(--transition-smooth);
    }

    .developed-by a:hover img,
    .developed-by a:hover svg {
      filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(230, 208, 112, 0.5));
    }

    /* === WHATSAPP FLOAT BUTTON === */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      z-index: 9999;
      transition: var(--transition-smooth);
      text-decoration: none;
      animation: pulse-whatsapp 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float svg {
      fill: white;
      width: 32px;
      height: 32px;
    }

    @keyframes pulse-whatsapp {
      0%, 100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
      50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.6); }
    }

    /* === SCROLLBAR CUSTOM === */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--tecnew-green), var(--tecnew-teal));
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, var(--tecnew-teal-dark), var(--tecnew-green));
    }

    /* === ANIMATIONS === */
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      animation: slideIn 0.8s ease-out;
    }

    /* === SELECTION STYLE === */
    ::selection {
      background: var(--tecnew-green);
      color: white;
    }

    /* === MOBILE MENU PREMIUM === */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      cursor: pointer;
      padding: 12px;
      z-index: 10002;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
      background: rgba(255, 255, 255, 0.25);
    }

    .mobile-menu-btn span {
      display: block;
      width: 22px;
      height: 2.5px;
      background: white;
      margin: 2.5px 0;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      border-radius: 3px;
      transform-origin: center;
    }

    .mobile-menu-btn.active {
      background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay com blur */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 20, 20, 0.7);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
    }

    .mobile-nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Menu Mobile Premium */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 380px;
      height: 100%;
      height: 100dvh;
      background: linear-gradient(165deg, var(--tecnew-teal-dark) 0%, #013d3f 50%, var(--tecnew-green) 100%);
      z-index: 10001;
      padding: 0;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
      overflow: hidden;
      box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
      visibility: hidden;
    }

    .mobile-nav.active {
      transform: translateX(0);
      visibility: visible;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
    }

    /* Header do Menu Mobile */
    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 1.5rem;
      background: rgba(0, 0, 0, 0.2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-logo {
      height: 36px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .mobile-nav-close {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .mobile-nav-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: rotate(90deg);
    }

    .mobile-nav-close svg {
      width: 20px;
      height: 20px;
      stroke: white;
      stroke-width: 2.5;
    }

    /* Conteúdo Scrollável */
    .mobile-nav-content {
      height: calc(100% - 80px);
      overflow-y: auto;
      padding: 1.5rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.3) transparent;
    }

    .mobile-nav-content::-webkit-scrollbar {
      width: 4px;
    }

    .mobile-nav-content::-webkit-scrollbar-track {
      background: transparent;
    }

    .mobile-nav-content::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.3);
      border-radius: 4px;
    }

    /* Links do Menu */
    .mobile-nav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.25rem;
      margin-bottom: 0.5rem;
      color: white;
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.3s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .mobile-nav-link .icon-wrapper {
      width: 24px;
      height: 24px;
      min-width: 24px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-nav-link .icon-wrapper svg {
      width: 14px;
      height: 14px;
      stroke: var(--tecnew-gold);
      stroke-width: 2;
    }

    /* Seção de Submenu */
    .mobile-nav-section {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      margin-bottom: 0.5rem;
      width: 100%;
    }

    .mobile-nav-section > a,
    .mobile-nav-section > div {
      width: 100% !important;
      display: flex !important;
    }

    .mobile-nav-section-title,
    .mobile-nav-section a.mobile-nav-section-title,
    .mobile-nav-section div.mobile-nav-section-title {
      all: unset !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      width: 100% !important;
      box-sizing: border-box !important;
      margin: 0 !important;
      padding: 1rem 1.25rem !important;
      color: white !important;
      font-size: 1.05rem !important;
      font-weight: 600 !important;
      font-family: inherit !important;
      background: rgba(255, 255, 255, 0.06) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 12px !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
      text-decoration: none !important;
    }

    .mobile-nav-section-title > span {
      all: unset !important;
      display: block !important;
      flex: 1 !important;
      text-align: left !important;
      color: white !important;
      font-size: 1.05rem !important;
      font-weight: 600 !important;
      font-family: inherit !important;
    }

    .mobile-nav-section-title:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-section-title .icon-toggle {
      width: 24px;
      height: 24px;
      min-width: 24px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .mobile-nav-section-title .icon-toggle svg {
      width: 14px;
      height: 14px;
      stroke: white;
      stroke-width: 2.5;
      transition: transform 0.3s ease;
    }

    .mobile-nav-section.active .icon-toggle {
      background: var(--tecnew-gold);
    }

    .mobile-nav-section.active .icon-toggle svg {
      stroke: var(--tecnew-dark);
      transform: rotate(180deg);
    }

    /* Submenu Items */
    .mobile-nav-submenu {
      display: flex !important;
      flex-direction: column !important;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease, margin 0.3s ease;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 12px;
      margin: 0;
      padding: 0;
      gap: 0.25rem;
    }

    .mobile-nav-section.active .mobile-nav-submenu {
      max-height: 400px;
      padding: 0.75rem;
      margin-top: 0.5rem;
    }

    .mobile-nav-submenu a {
      display: flex !important;
      flex-direction: row !important;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem 1rem 0.875rem calc(1.5rem + 8px);
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none !important;
      font-size: 0.95rem;
      font-weight: 500;
      border-radius: 10px;
      transition: all 0.2s ease;
      background: rgba(255, 255, 255, 0.05);
      width: 100% !important;
      box-sizing: border-box !important;
    }

    .mobile-nav-submenu a:hover,
    .mobile-nav-submenu a:active {
      background: rgba(255, 255, 255, 0.15);
      color: white;
    }

    .mobile-nav-submenu a::before {
      content: '';
      width: 8px;
      height: 8px;
      min-width: 8px;
      background: var(--tecnew-gold);
      border-radius: 50%;
      transition: all 0.2s ease;
    }

    .mobile-nav-submenu a:hover::before,
    .mobile-nav-submenu a:active::before {
      transform: scale(1.2);
      box-shadow: 0 0 8px var(--tecnew-gold);
    }

    /* Divisor */
    .mobile-nav-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      margin: 1.5rem 0;
    }

    /* Botões CTA */
    .mobile-nav-cta {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .mobile-nav-cta button,
    .mobile-nav-cta a {
      width: 100%;
      padding: 1rem 1.5rem;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .mobile-nav-cta .btn-primary {
      background: var(--tecnew-gold);
      border: none;
      color: var(--tecnew-dark);
      box-shadow: 0 4px 20px rgba(230, 208, 112, 0.4);
    }

    .mobile-nav-cta .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(230, 208, 112, 0.5);
    }

    .mobile-nav-cta .btn-primary svg {
      width: 20px;
      height: 20px;
      stroke: var(--tecnew-dark);
      stroke-width: 2;
    }

    .mobile-nav-cta .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
    }

    .mobile-nav-cta .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .mobile-nav-cta .btn-secondary svg {
      width: 20px;
      height: 20px;
      stroke: white;
      stroke-width: 2;
    }

    /* Contato Rápido */
    .mobile-nav-contact {
      margin-top: 1.5rem;
      padding: 1.25rem;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      pointer-events: auto;
    }

    .mobile-nav-contact-title {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--tecnew-gold);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }

    .mobile-nav-contact-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.625rem 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      position: relative;
      z-index: 10;
    }

    .mobile-nav-contact-item:hover,
    .mobile-nav-contact-item:active {
      color: white;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 8px;
    }

    .mobile-nav-contact-item svg {
      width: 18px;
      height: 18px;
      stroke: var(--tecnew-gold);
      stroke-width: 2;
      flex-shrink: 0;
    }

    /* Social Links */
    .mobile-nav-social {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-social a {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .mobile-nav-social a:hover {
      background: var(--tecnew-gold);
      border-color: var(--tecnew-gold);
      transform: translateY(-3px);
    }

    .mobile-nav-social a svg {
      width: 20px;
      height: 20px;
      fill: white;
      transition: fill 0.3s ease;
    }

    .mobile-nav-social a:hover svg {
      fill: var(--tecnew-dark);
    }

    /* === RESPONSIVE - TABLET (1024px) === */
    @media (max-width: 1024px) {
      body::before,
      body::after {
        display: none;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
      }

      .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }

      .newsletter-text {
        text-align: center;
        max-width: 100%;
      }

      .newsletter-form {
        justify-content: center;
        width: 100%;
        max-width: 500px;
      }

      .carousel-container {
        margin-top: 110px !important;
      }

      /* Esconder decorativos */
      .section-elegant-divider::before,
      .section-elegant-divider::after {
        display: none;
      }
    }

    /* === RESPONSIVE - MOBILE PREMIUM (768px) === */
    @media (max-width: 768px) {
      /* === MOBILE DESIGN SYSTEM === */
      :root {
        --mobile-spacing-xs: 0.5rem;
        --mobile-spacing-sm: 0.75rem;
        --mobile-spacing-md: 1rem;
        --mobile-spacing-lg: 1.5rem;
        --mobile-spacing-xl: 2rem;
        --mobile-radius: 16px;
        --mobile-radius-sm: 12px;
      }

      /* Topbar - Esconder no mobile */
      #topbar {
        display: none !important;
      }

      /* Header Mobile Premium - Apenas Logo + Menu Hamburger */
      #header {
        top: 0 !important;
        padding: 0.875rem 0 !important;
        background: linear-gradient(135deg, var(--tecnew-green) 0%, var(--tecnew-teal) 100%) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
      }

      #header > div {
        padding: 0 var(--mobile-spacing-md) !important;
        justify-content: space-between !important;
      }

      /* Esconder navegação desktop no mobile */
      #header nav {
        display: none !important;
      }

      /* Esconder botões Orçamento/Compre Aqui no mobile */
      #header #quote-btn,
      #header #buy-btn,
      #header > div > div:has(#quote-btn),
      #header > div > div:has(#buy-btn) {
        display: none !important;
      }

      /* Fallback para browsers sem :has() */
      #header button#quote-btn,
      #header button#buy-btn {
        display: none !important;
      }

      .mobile-menu-btn {
        display: flex !important;
        position: relative !important;
        z-index: 10002 !important;
      }

      .mobile-nav {
        display: block !important;
        visibility: hidden;
        transform: translateX(100%);
      }

      .mobile-nav.active {
        visibility: visible !important;
        transform: translateX(0) !important;
      }

      .mobile-nav-overlay {
        display: block !important;
        visibility: hidden;
        opacity: 0;
      }

      .mobile-nav-overlay.active {
        visibility: visible !important;
        opacity: 1 !important;
      }

      /* Logo maior */
      .logo-header,
      .custom-logo {
        width: 140px !important;
        height: auto !important;
      }

      /* Container do logo */
      #header > div > div:first-child {
        flex: 1 !important;
      }

      /* === BANNER MOBILE === */
      .banner-section {
        margin-top: 0 !important;
        padding-top: 76px !important;
      }

      /* === SEÇÃO DIFERENCIAIS - CARDS HORIZONTAIS MOBILE === */
      .section-white:not(.produtos-section):not(.marcas-section) > div > div {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--mobile-spacing-md) !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: var(--mobile-spacing-md) !important;
        padding: var(--mobile-spacing-md) !important;
        background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%) !important;
        border-radius: var(--mobile-radius-sm) !important;
        box-shadow: 0 4px 15px rgba(0, 166, 127, 0.08) !important;
        border: 1px solid rgba(0, 166, 127, 0.1) !important;
        text-align: left !important;
      }

      .section-white:not(.produtos-section) > div > div > div > div:first-child svg {
        width: 26px !important;
        height: 26px !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div h3 {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
        color: var(--tecnew-teal-dark) !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div p {
        font-size: 0.8rem !important;
        color: var(--tecnew-gray) !important;
        line-height: 1.4 !important;
        display: block !important;
      }

      /* === SEPARADORES MOBILE === */
      .section-dots,
      .section-icon-separator {
        padding: 1.25rem 0 !important;
      }

      .section-elegant-divider {
        padding: 1.5rem 0 !important;
        background: linear-gradient(180deg, #ffffff 0%, #f0fdf9 100%) !important;
      }

      .divider-circle {
        width: 40px !important;
        height: 40px !important;
      }

      .divider-circle svg {
        width: 18px !important;
        height: 18px !important;
      }

      .divider-line {
        max-width: 60px !important;
      }

      /* === SEÇÃO SERVIÇOS - PREMIUM MOBILE === */
      #services-section {
        padding: var(--mobile-spacing-xl) 0 !important;
        background: linear-gradient(180deg, #f8fafc 0%, #f0f9f7 100%) !important;
      }

      #services-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        padding: 0 var(--mobile-spacing-md) !important;
        text-align: center !important;
        line-height: 1.4 !important;
      }

      #services-section > div > p {
        font-size: 0.9rem !important;
        padding: 0 var(--mobile-spacing-md) !important;
        margin-bottom: 1.5rem !important;
      }

      .services-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 1rem !important;
        padding: 0 var(--mobile-spacing-md) 1rem !important;
      }

      .services-grid::-webkit-scrollbar {
        display: none !important;
      }

      .service-card {
        flex: 0 0 85% !important;
        max-width: 320px !important;
        scroll-snap-align: center !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
      }

      .service-card .service-image {
        height: 160px !important;
      }

      .service-card .service-image svg {
        width: 55px !important;
        height: 55px !important;
      }

      .service-card > div:last-child {
        padding: 1.25rem !important;
      }

      .service-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
      }

      .service-card p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
      }

      .btn-service {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
        margin-top: 1rem !important;
      }

      /* === SEÇÃO PRODUTOS - SCROLL HORIZONTAL === */
      .section-gray {
        padding: var(--mobile-spacing-xl) 0 !important;
      }

      .section-gray > div > h2 {
        font-size: 1.35rem !important;
        margin-bottom: var(--mobile-spacing-lg) !important;
        text-align: center !important;
        padding: 0 var(--mobile-spacing-md) !important;
      }

      .section-gray > div > div {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: var(--mobile-spacing-md) !important;
        padding: 0 var(--mobile-spacing-md) var(--mobile-spacing-md) !important;
      }

      .section-gray > div > div::-webkit-scrollbar {
        display: none !important;
      }

      .section-gray > div > div > div {
        flex: 0 0 75% !important;
        max-width: 280px !important;
        scroll-snap-align: center !important;
        border-radius: var(--mobile-radius) !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        background: white !important;
      }

      .section-gray > div > div > div > div:first-child {
        height: auto !important;
        background: linear-gradient(135deg, #f0f9f7 0%, #e0f7f4 100%) !important;
      }

      .section-gray > div > div > div > div:first-child svg {
        width: 60px !important;
        height: 60px !important;
      }

      .section-gray > div > div > div > div:last-child {
        padding: var(--mobile-spacing-md) !important;
      }

      .section-gray > div > div > div > div:last-child h3 {
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.25rem !important;
        color: var(--tecnew-teal-dark) !important;
      }

      .section-gray > div > div > div > div:last-child p {
        font-size: 0.8rem !important;
        color: var(--tecnew-gray) !important;
        margin-bottom: var(--mobile-spacing-sm) !important;
        line-height: 1.4 !important;
      }

      .section-gray > div > div > div > div:last-child button {
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
        width: 100% !important;
        font-weight: 600 !important;
      }

      /* === SEÇÃO MARCAS - SCROLL SUAVE === */
      .section-white.section-pattern {
        padding: var(--mobile-spacing-xl) 0 !important;
      }

      .section-white.section-pattern > div > h2 {
        font-size: 1.2rem !important;
        margin-bottom: var(--mobile-spacing-lg) !important;
        text-align: center !important;
        padding: 0 var(--mobile-spacing-md) !important;
      }

      /* === SEÇÃO PARCEIROS - SCROLL HORIZONTAL MOBILE === */
      .section-gray:last-of-type {
        padding: var(--mobile-spacing-xl) 0 !important;
      }

      .section-gray:last-of-type > div > h2 {
        font-size: 1.15rem !important;
        margin-bottom: var(--mobile-spacing-md) !important;
        text-align: center !important;
        line-height: 1.4 !important;
        padding: 0 var(--mobile-spacing-md) !important;
      }

      .section-gray:last-of-type > div > div {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        gap: 0 !important;
        padding: 0.5rem var(--mobile-spacing-md) !important;
        flex-direction: column !important;
      }

      .section-gray:last-of-type > div > div::-webkit-scrollbar {
        display: none !important;
      }

      .section-gray:last-of-type > div > div > div {
        flex: 0 0 auto !important;
        min-width: 130px !important;
        scroll-snap-align: start !important;
        padding: 0 !important;
        border-radius: 12px !important;
        background: white !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid rgba(0, 166, 127, 0.1) !important;
        max-width: 100% !important;
      }

      .section-gray:last-of-type > div > div > div span {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
      }

      /* === NEWSLETTER MOBILE PREMIUM === */
      .newsletter-section {
        padding: 1.5rem 1rem !important;
        margin: 1rem !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, var(--tecnew-teal-dark) 0%, var(--tecnew-green) 100%) !important;
        box-shadow: 0 10px 40px rgba(0, 166, 127, 0.3) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        max-width: calc(100% - 2rem) !important;
      }

      .newsletter-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 0 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .newsletter-text {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
      }

      .newsletter-form {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.75rem !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
      }

      .newsletter-form .input-wrapper {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
      }

      .newsletter-form input {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        min-width: 0 !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
        border: none !important;
        background: rgba(255,255,255,0.95) !important;
        color: #333 !important;
        box-sizing: border-box !important;
        margin: 0 !important;
      }

      .newsletter-form input::placeholder {
        color: #999 !important;
      }

      .newsletter-form button {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        background: var(--tecnew-gold) !important;
        color: var(--tecnew-dark) !important;
        box-shadow: 0 4px 15px rgba(230, 208, 112, 0.4) !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        border: none !important;
        cursor: pointer !important;
      }

      /* Validação Mobile Premium */
      .newsletter-form input.invalid {
        border: 2px solid #e74c3c !important;
        box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15), 0 4px 15px rgba(231, 76, 60, 0.2) !important;
      }

      .newsletter-form input.valid {
        border: 2px solid #27ae60 !important;
        box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15), 0 4px 15px rgba(39, 174, 96, 0.2) !important;
      }

      .error-message {
        font-size: 0.75rem !important;
        padding: 0.5rem 1rem !important;
        margin-top: 0.5rem !important;
        border-radius: 10px !important;
        text-align: center !important;
      }

      .success-message {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 0.5rem !important;
        width: 100% !important;
      }

      /* === FOOTER MOBILE PREMIUM === */

      /* Contact Bar - Centralizado e Clean */
      .footer-contact-bar {
        padding: 1.5rem 1rem !important;
        background: rgba(0, 0, 0, 0.15) !important;
      }

      .footer-contact-container {
        flex-direction: column !important;
        gap: 0.75rem !important;
        align-items: flex-start !important;
      }

      .footer-contact-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.75rem !important;
        font-size: 0.9rem !important;
        padding: 0.5rem 0 !important;
        width: 100% !important;
      }

      .footer-contact-item svg {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        stroke: var(--tecnew-gold) !important;
      }

      /* Footer Main - Coluna única com acordeão */
      .footer-main {
        padding: 0 !important;
      }

      .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
      }

      .footer-column {
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
      }

      .footer-column:last-child {
        border-bottom: none !important;
      }

      .footer-column h4 {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        margin: 0 !important;
        padding: 1rem !important;
        cursor: default !important;
        position: relative !important;
      }

      .footer-column h4::after {
        display: none !important;
      }

      .footer-column ul {
        padding: 0 1rem 1rem 1rem !important;
        margin: 0 !important;
      }

      .footer-column ul li {
        margin: 0 !important;
        padding: 0 !important;
      }

      .footer-column ul li a {
        display: block !important;
        padding: 0.6rem 0 !important;
        font-size: 0.9rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
      }

      .footer-column ul li a::before {
        display: none !important;
      }

      .footer-column ul li a:hover {
        color: var(--tecnew-gold) !important;
        padding-left: 0 !important;
      }

      /* Payment Methods - Grid Organizado */
      .payment-methods {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        padding: 0 1rem 1rem 1rem !important;
        justify-content: flex-start !important;
        align-items: center !important;
      }

      .payment-img {
        height: 24px !important;
        width: auto !important;
        max-width: 50px !important;
        padding: 4px 6px !important;
        border-radius: 4px !important;
      }

      /* Security Badge - Compacto */
      .security-badge {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        padding: 0.75rem 1rem 1rem 1rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
        margin: 0 1rem 1rem 1rem !important;
      }

      .security-badge-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        background: var(--tecnew-gold) !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .security-badge-icon svg {
        width: 22px !important;
        height: 22px !important;
        stroke: var(--tecnew-dark) !important;
      }

      .security-badge-text {
        font-size: 0.85rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
      }

      .security-badge-text span {
        display: block !important;
        font-size: 0.75rem !important;
        font-weight: 400 !important;
        opacity: 0.7 !important;
      }

      /* Social Links - Centralizado */
      .social-links {
        display: flex !important;
        gap: 1rem !important;
        padding: 0.5rem 1rem 1.5rem 1rem !important;
        justify-content: center !important;
      }

      .social-link {
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
      }

      .social-link svg {
        width: 20px !important;
        height: 20px !important;
        fill: white !important;
      }

      .social-link:hover {
        background: var(--tecnew-gold) !important;
        transform: translateY(-2px) !important;
      }

      .social-link:hover svg {
        fill: var(--tecnew-dark) !important;
      }

      /* Footer Bottom - Clean */
      .footer-bottom {
        background: rgba(0, 0, 0, 0.2) !important;
        padding: 1rem !important;
      }

      .footer-bottom-container {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        padding: 0 !important;
      }

      .footer-bottom p {
        font-size: 0.8rem !important;
        opacity: 0.8 !important;
        margin: 0 !important;
      }

      .developed-by {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.7rem !important;
        opacity: 0.7 !important;
      }

      .developed-by img {
        height: 14px !important;
        width: auto !important;
      }

      /* WhatsApp Button - Posição mais alta no mobile */
      .whatsapp-float {
        bottom: 100px !important;
        right: 20px !important;
        width: 52px !important;
        height: 52px !important;
      }

      .whatsapp-float svg {
        width: 28px !important;
        height: 28px !important;
      }

      /* === ESPAÇAMENTOS GERAIS MOBILE === */
      section {
        padding: var(--mobile-spacing-xl) 0 !important;
      }

      section > div {
        padding: 0 var(--mobile-spacing-md) !important;
      }

      /* === ANIMAÇÕES SUAVES MOBILE === */
      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div,
      .service-card,
      .section-gray > div > div > div {
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div:active,
      .service-card:active,
      .section-gray > div > div > div:active {
        transform: scale(0.98) !important;
      }

      /* === BOTTOM NAVIGATION BAR - MOBILE PREMIUM === */
      .bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #ffffff 100%) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1) !important;
        z-index: 9999 !important;
        padding: 0.5rem 0 !important;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom)) !important;
        border-top: 1px solid rgba(0, 166, 127, 0.1) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
      }

      .bottom-nav-container {
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        padding: 0 0.5rem !important;
      }

      .bottom-nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        padding: 0.5rem 0.75rem !important;
        border-radius: 12px !important;
        transition: all 0.2s ease !important;
        min-width: 60px !important;
        position: relative !important;
      }

      .bottom-nav-item svg {
        width: 24px !important;
        height: 24px !important;
        stroke: #666 !important;
        fill: none !important;
        stroke-width: 2 !important;
        transition: all 0.2s ease !important;
        margin-bottom: 0.25rem !important;
      }

      .bottom-nav-item.whatsapp-nav svg {
        fill: #666 !important;
        stroke: none !important;
      }

      .bottom-nav-item span {
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        color: #666 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        transition: all 0.2s ease !important;
      }

      .bottom-nav-item:active {
        transform: scale(0.92) !important;
        background: rgba(0, 166, 127, 0.08) !important;
      }

      .bottom-nav-item.active,
      .bottom-nav-item:hover {
        background: rgba(0, 166, 127, 0.1) !important;
      }

      .bottom-nav-item.active svg,
      .bottom-nav-item:hover svg {
        stroke: var(--tecnew-green) !important;
      }

      .bottom-nav-item.whatsapp-nav.active svg,
      .bottom-nav-item.whatsapp-nav:hover svg {
        fill: #25D366 !important;
        stroke: none !important;
      }

      .bottom-nav-item.active span,
      .bottom-nav-item:hover span {
        color: var(--tecnew-green) !important;
      }

      .bottom-nav-item.whatsapp-nav.active span,
      .bottom-nav-item.whatsapp-nav:hover span {
        color: #25D366 !important;
      }

      /* Indicador de página ativa */
      .bottom-nav-item.active::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 20px !important;
        height: 3px !important;
        background: var(--tecnew-green) !important;
        border-radius: 0 0 3px 3px !important;
      }

      .bottom-nav-item.whatsapp-nav.active::before {
        background: #25D366 !important;
      }

      /* Esconder WhatsApp float quando bottom nav está visível */
      .whatsapp-float {
        display: none !important;
      }

      /* Ajustar padding do footer para não ficar atrás da bottom nav */
      .footer-bottom {
        padding-bottom: calc(1rem + 70px + env(safe-area-inset-bottom)) !important;
      }

      /* Ajustar espaço no final do conteúdo */
      body {
        padding-bottom: 70px !important;
      }
    }

    /* === RESPONSIVE - MOBILE SMALL (480px) === */
    @media (max-width: 480px) {
      /* Diferenciais mais compactos */
      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div {
        padding: var(--mobile-spacing-sm) !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div > div:first-child {
        width: 48px !important;
        min-width: 48px !important;
        height: 48px !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div > div:first-child svg {
        width: 20px !important;
        height: 20px !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div h3 {
        font-size: 0.85rem !important;
      }

      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div p {
        font-size: 0.75rem !important;
      }

      /* Produtos - cards menores */
      .section-gray > div > div > div {
        flex: 0 0 85% !important;
        max-width: none !important;
      }

      /* Serviços mais compactos - 480px */
      .service-card {
        flex: 0 0 90% !important;
      }

      .service-card .service-image {
        height: 140px !important;
      }

      .service-card .service-image svg {
        width: 48px !important;
        height: 48px !important;
      }

      .service-card h3 {
        font-size: 0.95rem !important;
      }

      .service-card p {
        font-size: 0.8rem !important;
      }

      .btn-service {
        padding: 0.7rem 1rem !important;
        font-size: 0.8rem !important;
      }

      /* Footer já está em coluna única no mobile */

      /* Parceiros 2 colunas */
      .section-gray:last-of-type > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
      }

      .section-gray:last-of-type > div > div > div {
        padding: 0.75rem 0.5rem !important;
      }

      .section-gray:last-of-type > div > div > div span {
        font-size: 0.8rem !important;
      }

      /* Títulos */
      #services-title,
      .section-gray > div > h2,
      .section-white.section-pattern > div > h2,
      .section-gray:last-of-type > div > h2 {
        font-size: 1.15rem !important;
      }
    }

    /* === TOUCH IMPROVEMENTS === */
    @media (hover: none) and (pointer: coarse) {
      /* Feedback tátil aprimorado */
      .section-white:not(.produtos-section):not(.marcas-section) > div > div > div:active,
      .service-card:active,
      .section-gray > div > div > div:active,
      .section-gray:last-of-type > div > div > div:active {
        transform: scale(0.97) !important;
        opacity: 0.9 !important;
      }

      /* Touch targets maiores */
      .mobile-nav a {
        padding: 1rem 0 !important;
        min-height: 52px !important;
      }

      .newsletter-form input,
      .newsletter-form button {
        min-height: 52px !important;
      }

      /* Scroll suave horizontal */
      .section-gray > div > div {
        scroll-behavior: smooth !important;
      }
    }

    /* === LANDSCAPE MOBILE === */
    @media (max-height: 500px) and (orientation: landscape) {
      .mobile-nav {
        padding-top: 50px !important;
      }

      section {
        padding: 1.5rem 0 !important;
      }
    }

    /* === SAFE AREA (iPhone X+) === */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
      @media (max-width: 768px) {
        .footer-bottom {
          padding-bottom: calc(1rem + env(safe-area-inset-bottom)) !important;
        }

        .mobile-nav {
          padding-bottom: calc(2rem + env(safe-area-inset-bottom)) !important;
        }
      }
    }

    /* === DARK MODE PREFERENCE (BONUS) === */
    @media (prefers-color-scheme: dark) and (max-width: 768px) {
      /* Futura implementação de dark mode mobile */
    }

    /* === REDUCED MOTION === */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* === HIGH CONTRAST === */
    @media (prefers-contrast: high) {
      @media (max-width: 768px) {
        .section-white:not(.produtos-section):not(.marcas-section) > div > div > div,
        .service-card,
        .section-gray > div > div > div {
          border: 2px solid var(--tecnew-teal-dark) !important;
        }
      }
    }

    /* === BREADCRUMB STYLES === */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }

    .breadcrumb a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .breadcrumb a:hover {
      color: white;
    }

    .breadcrumb span {
      color: var(--tecnew-gold);
    }

    .breadcrumb .current {
      color: var(--tecnew-gold);
    }
    /* === DIFERENCIAIS RESPONSIVOS === */
    @media (max-width: 992px) {
      .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
      }
    }

    @media (max-width: 600px) {
      .diferenciais-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
      }
      
      .diferencial-item {
        padding: 1rem 0.5rem !important;
      }
    }

.wpcf7-form p br {
  display: none !important
}

.wpcf7-form .form-group textarea {
  max-height: 150px !important;
}

/* CONTACT FORM 7*/
form .wpcf7-form-control-wrap{display: block; width: 100%; position: relative;}
form .wpcf7-validation-errors{width: 100%; color: #fff; font-size: 0.7rem; border: solid 1px #ff0000; background: #ff0000; font-weight: 600;}
form .wpcf7-not-valid-tip{position: absolute !important; top: 0 !important; left: inherit !important; right: 0; width: auto !important; font-size: 0.7rem; font-weight: 600; background: #ff0000 !important; color: #fff;}
form.sent .wpcf7-response-output{width: 100%; color: #fff; font-size: 0.7rem; font-weight: 600; background: #398f14;}
form .wpcf7-mail-sent-ng{width: 100%; color: #fff; font-size: 0.7rem; font-weight: 600; background: #ff0000;}
form .wpcf7-response-output{width: 100%; color: #000; font-size: 0.7rem; font-weight: 600; background: #ffb900;}
form .use-floating-validation-tip .wpcf7-not-valid-tip {position: absolute; top: 0; left: inherit; width: auto; right: 0;}
/* END CONTACT FORM 7 */

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 120px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
    padding: 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brand-logo img {
    max-height: 40px;
    max-width: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile Carousel Styles */
.mobile-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.mobile-carousel .carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.mobile-carousel .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.mobile-carousel .carousel-item {
    flex-shrink: 0;
    width: 100%;
}

.mobile-carousel .carousel-nav {
    position: absolute;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--tecnew-teal-dark, #015457);
}

.mobile-carousel .carousel-nav:hover:not(:disabled) {
    background: var(--tecnew-teal, #00A67F);
    color: white;
    box-shadow: 0 4px 12px rgba(0,166,127,0.3);
}

.mobile-carousel .carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.mobile-carousel .carousel-nav-prev {
    left: 5px;
}

.mobile-carousel .carousel-nav-next {
    right: 5px;
}

.mobile-carousel .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.mobile-carousel .carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.mobile-carousel .carousel-indicator.active {
    background: var(--tecnew-teal, #00A67F);
    width: 24px;
    border-radius: 4px;
}

/* Ajustes específicos para produtos no mobile */
@media (max-width: 768px) {
    .external-products-grid.mobile-carousel .carousel-track {
        gap: 20px;
    }
    
    .external-products-grid.mobile-carousel .carousel-item {
        width: 100%;
        margin: 0;
    }
    
    .brands-grid.mobile-carousel {
        padding: 0 40px;
    }
    
    .brands-grid.mobile-carousel .carousel-track {
        gap: 16px;
    }
    
    .brands-grid.mobile-carousel .carousel-item {
        width: calc(50% - 8px);
    }
    
    /* Garantir que a seção de parceiros não seja afetada pelo mobile-carousel */
    .parceiros-section .mobile-carousel,
    .parceiros-section .carousel-wrapper,
    .parceiros-section .carousel-track {
        all: unset;
        display: block;
    }
    
    .parceiros-section .carousel-nav,
    .parceiros-section .carousel-indicators {
        display: none !important;
    }
    
    /* Carousel para categorias de produtos (single-nossos-produtos) */
    .products-section .products-grid.mobile-carousel {
        padding: 0 50px;
    }
    
    .products-section .products-grid.mobile-carousel .carousel-item {
        width: 100%;
    }
    
    /* Carousel para marcas (single-nossos-produtos) */
    .brands-section .brands-grid.mobile-carousel {
        padding: 0 40px;
    }
    
    .brands-section .brands-grid.mobile-carousel .carousel-track {
        gap: 16px;
    }
    
    .brands-section .brands-grid.mobile-carousel .carousel-item {
        width: calc(50% - 8px);
    }
}