  /* HEADER */
  .top-header {
    background-color: #7B1E1E;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
  }

  .top-header i {
    background-color: #ffffff;
    color: #002855;
    border-radius: 50%;
    padding: 6px;
    margin: 0 5px;
  }

  .main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .main-header .logo img {
    max-height: 60px;
  }

  .nav-menu a {
    color: #000;
    font-weight: 500;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
  }

  .nav-menu a:hover {
    color: #007BFF;
  }

  .btn-orcamento {
    background: linear-gradient(to right, #7B1E1E, #6e2424); /* vermelho sombrio degradê */
    color: #fff !important;
    padding: 10px 24px 10px 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    text-decoration: none;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: background 0.3s ease;
    border: none;
  }

  .btn-orcamento:hover {
    background-color: #2a9aa2;
  }
  /* Offcanvas mobile */
  .offcanvas-menu ul {
    list-style: none;
    padding-left: 0;
  }

  .offcanvas-menu ul li {
    margin-bottom: 15px;
  }

  .offcanvas-menu ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #000;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .top-header .social-icons {
        display: none;
      }
      .top-contact-info {
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
      }
    .main-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
        
      .main-header nav.nav-menu {
        flex-grow: 1;
        justify-content: center;
      }
      .banner {
      flex-direction: column;
      padding: 40px 20px;
    }

    .banner .text-banner {
      max-width: 100%;
      text-align: center;
    }

    .main-header .d-md-flex {
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
    }
    .main-header .menu-desktop {
      display: none;
    }
    .btn-hamburguer {
        background-color: #7B1E1E;
        color: #fff;
        border: none;
        border-radius: 8px;
        padding: 8px;
        font-size: 20px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .btn-hamburguer:hover {
        background-color: #004080;
      }
      
      .btn-orcamento-mobile {
        background: linear-gradient(to right, #7B1E1E, #6e2424);
    color: #fff !important;
    padding: 10px 24px 10px 20px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    text-decoration: none;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
    transition: background 0.3s ease;
    border: none;
      }
  }
