/* Estilos complementares específicos para a página de contato */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      margin-top: 40px;
    }

    .contact-card {
      background: #ffffff;
      padding: 35px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
      border: 1px solid #f0f0f0;
    }

    .contact-info-list {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 22px;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(200, 157, 86, 0.12);
      color: #c89d56;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .contact-details h4 {
      font-size: 1rem;
      color: #222;
      margin-bottom: 4px;
      font-weight: 600;
    }

    .contact-details p, .contact-details a {
      font-size: 0.95rem;
      color: #666;
      text-decoration: none;
      line-height: 1.4;
    }

    .contact-details a:hover {
      color: #c89d56;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-field label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #444;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 0.95rem;
      font-family: inherit;
      outline: none;
      transition: border-color 0.3s ease;
      background: #fafafa;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: #c89d56;
      background: #fff;
    }

    .form-field textarea {
      resize: vertical;
      min-height: 120px;
    }

    @media (max-width: 900px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
    }
