  body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: #333;
    }
    header {
      background: #fff;
      box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      transition: box-shadow 0.3s ease;
    }
    header.scrolled {
      box-shadow: 0 2px 15px rgb(0 0 0 / 0.15);
    }
    .navbar-brand img {
      height: 40px;
    }
    main {
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .page-title {
      font-weight: 700;
      font-size: 2.5rem;
      color: #c2953b; /* tom dourado */
      margin-bottom: 1rem;
      text-align: center;
    }
    .section-divider {
      width: 60px;
      height: 4px;
      background-color: #c2953b;
      margin: 0 auto 2rem;
      border-radius: 2px;
    }
    .content-container {
      max-width: 900px;
      margin: 0 auto;
    }
    .service-image {
      max-width: 400px; /* limita largura máxima */
      width: 100%; /* ocupa até o máximo permitido */
      border-radius: 12px;
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
      margin-bottom: 2rem;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .service-description p {
      font-size: 1.125rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      color: #444;
    }
    .btn-gold {
      background-color: #c2953b;
      border: none;
      color: #fff;
      font-weight: 600;
      padding: 0.75rem 1.75rem;
      border-radius: 50px;
      transition: background-color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      text-decoration: none;
    }
    .btn-gold:hover {
      background-color: #a67c1f;
      color: #fff;
      text-decoration: none;
    }
    footer {
      background-color: #222;
      color: #aaa;
      padding: 20px 0;
      text-align: center;
      font-size: 0.9rem;
    }