body {
    background-color: #121212;      /* secundária */
    color: #ffffff;
  }
  .navbar, .footer {
    background-color: #121212;
  }
  .btn-primary {
    background-color: #f61414;      /* primária */
    border-color: #f61414;
  }
  .btn-primary:hover {
    background-color: #e00d0d;
    border-color: #e00d0d;
  }
  a.nav-link {
    color: #ffffff;
  }
  a.nav-link:hover {
    color: #f61414;
  }
  h1, h2, h5, .display-4, .mb-4, .card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
  }
  body, .lead, .card-text, .form-control, .btn, .footer, label, input, textarea {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
  }
  .logo-box {
    background: #fff;
    border-radius: 18px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 160px;
    margin: 0 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  .logo-box img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  @media (max-width: 600px) {
    .logo-box {
      height: 60px;
      width: 90px;
      padding: 6px 10px;
    }
    .logo-box img {
      max-height: 36px;
      max-width: 70px;
    }
  }
  .marquee-marcas {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: #121212;
    padding: 8px 0;
  }
  .marquee-track {
    display: flex;
    align-items: center;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-marcas .logo-box {
    margin: 0 24px;
  }
  @media (max-width: 600px) {
    .marquee-marcas .logo-box {
      margin: 0 12px;
    }
    .marquee-track {
      animation-duration: 18s;
    }
  }
  .hero-novo {
    position: relative;
    z-index: 1;
  }
  .tecnico-img {
    max-height: 420px;
    width: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  }
  .card-servico {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 4px;
    width: 90px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .card-servico img {
    border-radius: 12px;
    width: 80px;
    height: 60px;
    object-fit: cover;
  }
  @media (max-width: 767px) {
    .card-servico {
      width: 60px;
      height: 44px;
      padding: 2px;
    }
    .card-servico img {
      width: 50px;
      height: 36px;
    }
  }
  .servico-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    position: relative;
    background: #222;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .servico-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  }
  .servico-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0.7);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
  }
  .servico-icone {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-size: 2.2rem;
    color: #fff;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  .servico-titulo {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 18px 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  @media (max-width: 767px) {
    .servico-card {
      min-height: 160px;
    }
    .servico-img {
      height: 160px;
    }
    .servico-icone {
      font-size: 1.5rem;
      top: 10px;
      left: 10px;
    }
    .servico-titulo {
      font-size: 1rem;
      margin: 0 0 10px 10px;
    }
  }
  .bi-hand-index-thumb {
    animation: pulse-hand 1.1s infinite;
  }
  @keyframes pulse-hand {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.18); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
  }
  .floating-contact-wrapper {
    position: fixed;
    top: 70px;
    right: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
  }
  .phone-text-box {
    background-color: #f61414;
    color: #fff;
    padding: 8px 18px 8px 12px;
    border-radius: 20px 0 0 20px;
    margin-right: -15px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgb(255, 255, 255);
    white-space: nowrap;
    text-decoration: none;
    transition: background-color 0.2s;
    line-height: 1.2;
    animation: pulse-float 2.5s infinite;
  }
  .phone-text-box:hover {
    color: #fff;
    background-color: #e00d0d;
  }
  .floating-phone-btn {
    position: relative;
    width: 55px;
    height: 55px;
    background-color: #e00d0d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgb(255, 255, 255);
    border: 2px solid #fff;
    z-index: 2;
    animation: pulse-float 2.5s infinite;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  @keyframes pulse-float {
    0% { transform: scale(1); box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2); }
    50% { transform: scale(1.08); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25); }
    100% { transform: scale(1); box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2); }
  }
  .floating-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgb(255, 255, 255);
    color: #fff;
  }

  /* Banner de Cookies */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #f61414;
    z-index: 9999;
    padding: 15px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  }

  .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .cookie-text {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
  }

  .cookie-link {
    color: #f61414;
    text-decoration: underline;
    font-weight: 500;
  }

  .cookie-link:hover {
    color: #e00d0d;
  }

  .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
  }

  /* Responsividade para mobile */
  @media (max-width: 768px) {
    .cookie-content {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
    
    .cookie-text {
      font-size: 0.85rem;
    }
    
    .cookie-buttons {
      width: 100%;
      justify-content: center;
    }
  }
  